blob: 3cbc264039023778a8ba66caf15a0da06c8af6f0 [file] [log] [blame]
// Copyright (C) 2015 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.labelui;
import com.google.gerrit.extensions.annotations.PluginName;
import com.google.gerrit.extensions.restapi.AuthException;
import com.google.gerrit.extensions.restapi.RestModifyView;
import com.google.gerrit.server.CurrentUser;
import com.google.gerrit.server.account.AccountResource;
import com.google.gerrit.server.account.VersionedAccountPreferences;
import com.google.gerrit.server.config.AllUsersName;
import com.google.gerrit.server.git.MetaDataUpdate;
import com.google.inject.Inject;
import com.google.inject.Provider;
import com.googlesource.gerrit.plugins.labelui.GetPreferences.PreferencesInfo;
import com.googlesource.gerrit.plugins.labelui.SetPreferences.Input;
import org.eclipse.jgit.errors.ConfigInvalidException;
import org.eclipse.jgit.errors.RepositoryNotFoundException;
import java.io.IOException;
public class SetPreferences implements RestModifyView<AccountResource, Input> {
public static class Input {
LabelUi ui;
}
private final String pluginName;
private final Provider<CurrentUser> self;
private final AllUsersName allUsersName;
private final Provider<MetaDataUpdate.User> metaDataUpdateFactory;
@Inject
public SetPreferences(@PluginName String pluginName,
Provider<CurrentUser> self,
AllUsersName allUsersName,
Provider<MetaDataUpdate.User> metaDataUpdateFactory) {
this.pluginName = pluginName;
this.self = self;
this.allUsersName = allUsersName;
this.metaDataUpdateFactory = metaDataUpdateFactory;
}
@Override
public GetPreferences.PreferencesInfo apply(AccountResource rsrc, Input input)
throws AuthException, RepositoryNotFoundException, IOException,
ConfigInvalidException {
if (self.get() != rsrc.getUser()
&& !self.get().getCapabilities().canModifyAccount()) {
throw new AuthException("not allowed to set preferences");
}
if (input == null) {
input = new Input();
}
if (input.ui == null) {
input.ui = LabelUi.DEFAULT;
}
VersionedAccountPreferences p =
VersionedAccountPreferences.forUser(rsrc.getUser().getAccountId());
MetaDataUpdate md = metaDataUpdateFactory.get().create(allUsersName);
try {
p.load(md);
if (input.ui != LabelUi.DEFAULT) {
p.getConfig().setEnum("plugin", pluginName, "ui", input.ui);
} else {
p.getConfig().unset("plugin", pluginName, "ui");
}
p.commit(md);
} finally {
md.close();
}
PreferencesInfo info = new PreferencesInfo();
info.ui = input.ui;
return info;
}
}