Line data Source code
1 : // Copyright (C) 2012 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.server.plugins; 16 : 17 : import com.google.common.collect.ImmutableSet; 18 : import com.google.gerrit.common.data.GlobalCapability; 19 : import com.google.gerrit.extensions.annotations.RequiresCapability; 20 : import com.google.gerrit.extensions.common.Input; 21 : import com.google.gerrit.extensions.common.PluginInfo; 22 : import com.google.gerrit.extensions.restapi.ResourceConflictException; 23 : import com.google.gerrit.extensions.restapi.Response; 24 : import com.google.gerrit.extensions.restapi.RestApiException; 25 : import com.google.gerrit.extensions.restapi.RestModifyView; 26 : import com.google.inject.Inject; 27 : import com.google.inject.Singleton; 28 : import java.io.PrintWriter; 29 : import java.io.StringWriter; 30 : 31 : @RequiresCapability(GlobalCapability.ADMINISTRATE_SERVER) 32 : @Singleton 33 : public class EnablePlugin implements RestModifyView<PluginResource, Input> { 34 : 35 : private final PluginLoader loader; 36 : 37 : @Inject 38 138 : EnablePlugin(PluginLoader loader) { 39 138 : this.loader = loader; 40 138 : } 41 : 42 : @Override 43 : public Response<PluginInfo> apply(PluginResource resource, Input input) throws RestApiException { 44 2 : loader.checkRemoteAdminEnabled(); 45 2 : String name = resource.getName(); 46 : try { 47 2 : loader.enablePlugins(ImmutableSet.of(name)); 48 0 : } catch (PluginInstallException e) { 49 0 : StringWriter buf = new StringWriter(); 50 0 : buf.write(String.format("cannot enable %s\n", name)); 51 0 : PrintWriter pw = new PrintWriter(buf); 52 0 : e.printStackTrace(pw); 53 0 : pw.flush(); 54 0 : throw new ResourceConflictException(buf.toString()); 55 2 : } 56 2 : return Response.ok(ListPlugins.toPluginInfo(loader.get(name))); 57 : } 58 : }