]> source.dussan.org Git - archiva.git/blob
21cfb2743a75235f8824774a3c159295a90134d8
[archiva.git] /
1 package org.apache.archiva.web.action.admin.repositories;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import com.opensymphony.xwork2.Preparable;
23 import org.apache.archiva.admin.model.RepositoryAdminException;
24 import org.apache.archiva.admin.model.beans.RemoteRepository;
25 import org.apache.archiva.scheduler.indexing.DownloadRemoteIndexException;
26 import org.apache.archiva.scheduler.indexing.DownloadRemoteIndexScheduler;
27 import org.apache.commons.lang.StringUtils;
28 import org.springframework.context.annotation.Scope;
29 import org.springframework.stereotype.Controller;
30
31 import javax.inject.Inject;
32
33 /**
34  * EditRemoteRepositoryAction
35  *
36  *
37  */
38 @Controller( "editRemoteRepositoryAction" )
39 @Scope( "prototype" )
40 public class EditRemoteRepositoryAction
41     extends AbstractRemoteRepositoriesAction
42     implements Preparable
43 {
44     /**
45      * The model for this action.
46      */
47     private RemoteRepository repository;
48
49     /**
50      * The repository id to edit.
51      */
52     private String repoid;
53
54     private boolean now, fullDownload;
55
56     @Inject
57     private DownloadRemoteIndexScheduler downloadRemoteIndexScheduler;
58
59     public void prepare()
60         throws RepositoryAdminException
61     {
62         if ( StringUtils.isNotBlank( repoid ) )
63         {
64             this.repository = getRemoteRepositoryAdmin().getRemoteRepository( repoid );
65         }
66         setNetworkProxies( getNetworkProxyAdmin().getNetworkProxies() );
67     }
68
69     public String input()
70     {
71         if ( StringUtils.isBlank( repoid ) )
72         {
73             addActionError( "Edit failure, unable to edit a repository with a blank repository id." );
74             return ERROR;
75         }
76
77         return INPUT;
78     }
79
80     public String commit()
81     {
82         String result = SUCCESS;
83         try
84         {
85             getRemoteRepositoryAdmin().updateRemoteRepository( getRepository(), getAuditInformation() );
86         }
87         catch ( RepositoryAdminException e )
88         {
89             addActionError( "RepositoryAdminException: " + e.getMessage() );
90             result = INPUT;
91         }
92
93         return result;
94     }
95
96     public String downloadRemoteIndex()
97     {
98         try
99         {
100             downloadRemoteIndexScheduler.scheduleDownloadRemote( repoid, now, fullDownload );
101         }
102         catch ( DownloadRemoteIndexException e )
103         {
104             addActionError( "DownloadRemoteIndexException: " + e.getMessage() );
105             return INPUT;
106         }
107         return SUCCESS;
108     }
109
110     public RemoteRepository getRepository()
111     {
112         return repository;
113     }
114
115     public void setRepository( RemoteRepository repository )
116     {
117         this.repository = repository;
118     }
119
120     public String getRepoid()
121     {
122         return repoid;
123     }
124
125     public void setRepoid( String repoid )
126     {
127         this.repoid = repoid;
128     }
129
130     public boolean isNow()
131     {
132         return now;
133     }
134
135     public void setNow( boolean now )
136     {
137         this.now = now;
138     }
139
140     public boolean isFullDownload()
141     {
142         return fullDownload;
143     }
144
145     public void setFullDownload( boolean fullDownload )
146     {
147         this.fullDownload = fullDownload;
148     }
149 }