blob: 599b84115e4293bc5ed8d42710764902eb2e86fe [file] [log] [blame]
// Copyright (C) 2013 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.googlesource.gerrit.plugins.serviceuser;
import static com.googlesource.gerrit.plugins.serviceuser.CreateServiceUser.KEY_CREATOR_ID;
import static com.googlesource.gerrit.plugins.serviceuser.CreateServiceUser.KEY_OWNER;
import static com.googlesource.gerrit.plugins.serviceuser.CreateServiceUser.USER;
import com.google.gerrit.common.data.GroupDescription;
import com.google.gerrit.extensions.annotations.PluginName;
import com.google.gerrit.extensions.registration.DynamicMap;
import com.google.gerrit.extensions.restapi.AcceptsCreate;
import com.google.gerrit.extensions.restapi.AuthException;
import com.google.gerrit.extensions.restapi.ChildCollection;
import com.google.gerrit.extensions.restapi.IdString;
import com.google.gerrit.extensions.restapi.ResourceNotFoundException;
import com.google.gerrit.extensions.restapi.RestView;
import com.google.gerrit.extensions.restapi.UnprocessableEntityException;
import com.google.gerrit.reviewdb.client.Account;
import com.google.gerrit.server.CurrentUser;
import com.google.gerrit.server.IdentifiedUser;
import com.google.gerrit.server.account.AccountsCollection;
import com.google.gerrit.server.config.ConfigResource;
import com.google.gerrit.server.git.ProjectLevelConfig;
import com.google.gerrit.server.group.GroupsCollection;
import com.google.gerrit.server.project.ProjectCache;
import com.google.gwtorm.server.OrmException;
import com.google.inject.Inject;
import com.google.inject.Provider;
import com.google.inject.Singleton;
@Singleton
class ServiceUserCollection
implements ChildCollection<ConfigResource, ServiceUserResource>, AcceptsCreate<ConfigResource> {
private final DynamicMap<RestView<ServiceUserResource>> views;
private final CreateServiceUser.Factory createServiceUserFactory;
private final Provider<ListServiceUsers> list;
private final Provider<AccountsCollection> accounts;
private final String pluginName;
private final ProjectCache projectCache;
private final Provider<CurrentUser> userProvider;
private final GroupsCollection groups;
@Inject
ServiceUserCollection(
DynamicMap<RestView<ServiceUserResource>> views,
CreateServiceUser.Factory createServiceUserFactory,
Provider<ListServiceUsers> list,
Provider<AccountsCollection> accounts,
@PluginName String pluginName,
ProjectCache projectCache,
Provider<CurrentUser> userProvider,
GroupsCollection groups) {
this.views = views;
this.createServiceUserFactory = createServiceUserFactory;
this.list = list;
this.accounts = accounts;
this.pluginName = pluginName;
this.projectCache = projectCache;
this.userProvider = userProvider;
this.groups = groups;
}
@Override
public ServiceUserResource parse(ConfigResource parent, IdString id)
throws ResourceNotFoundException, AuthException, OrmException {
ProjectLevelConfig storage = projectCache.getAllProjects().getConfig(pluginName + ".db");
IdentifiedUser serviceUser = accounts.get().parseId(id.get());
if (serviceUser == null
|| !storage.get().getSubsections(USER).contains(serviceUser.getUserName())) {
throw new ResourceNotFoundException(id);
}
CurrentUser user = userProvider.get();
if (user == null || !user.isIdentifiedUser()) {
throw new AuthException("Authentication required");
}
if (!user.getCapabilities().canAdministrateServer()) {
String owner = storage.get().getString(USER, id.get(), KEY_OWNER);
if (owner != null) {
try {
GroupDescription.Basic group = groups.parse(owner);
if (!user.getEffectiveGroups().contains(group.getGroupUUID())) {
throw new ResourceNotFoundException(id);
}
} catch (UnprocessableEntityException e) {
throw new ResourceNotFoundException(id);
}
} else if (!((IdentifiedUser) user)
.getAccountId()
.equals(new Account.Id(storage.get().getInt(USER, id.get(), KEY_CREATOR_ID, -1)))) {
throw new ResourceNotFoundException(id);
}
}
return new ServiceUserResource(serviceUser);
}
@Override
public RestView<ConfigResource> list() {
return list.get();
}
@Override
public DynamicMap<RestView<ServiceUserResource>> views() {
return views;
}
@Override
@SuppressWarnings("unchecked")
public CreateServiceUser create(ConfigResource parent, IdString username) {
return createServiceUserFactory.create(username.get());
}
}