]> source.dussan.org Git - archiva.git/commitdiff
[MRM-1560] Add the possibility to schedule retrieve remote indexes when application...
authorOlivier Lamy <olamy@apache.org>
Thu, 17 Nov 2011 22:50:21 +0000 (22:50 +0000)
committerOlivier Lamy <olamy@apache.org>
Thu, 17 Nov 2011 22:50:21 +0000 (22:50 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1203406 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-base/archiva-configuration/src/main/mdo/configuration.mdo
archiva-modules/archiva-base/archiva-repository-admin/archiva-repository-admin-api/src/main/java/org/apache/archiva/admin/model/beans/RemoteRepository.java
archiva-modules/archiva-base/archiva-repository-admin/archiva-repository-admin-default/src/main/java/org/apache/archiva/admin/repository/remote/DefaultRemoteRepositoryAdmin.java
archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/main/java/org/apache/archiva/scheduler/indexing/DefaultDownloadRemoteIndexScheduler.java
archiva-modules/archiva-web/archiva-webapp/pom.xml
archiva-modules/archiva-web/archiva-webapp/src/main/webapp/WEB-INF/jsp/admin/include/remoteRepositoryForm.jspf

index 9473f9b6ebcbb5fef2b1d7606fc77eae8cf8c0e0..4da4d839029578fe6b2b73a1e205d4c9ccfe1097 100644 (file)
           </description>
           <defaultValue>300</defaultValue>
         </field>
+        <field>
+          <name>downloadRemoteIndexOnStartup</name>
+          <version>1.4.0+</version>
+          <type>boolean</type>
+          <description>
+            Schedule download of remote index when archiva start
+          </description>
+          <defaultValue>false</defaultValue>
+        </field>
       </fields>
       <codeSegments>
         <codeSegment>
index 5e95758116773a37ef93ec37080111e4db153e18..8c0febeaf33efe316952215d4fb3b67c5b067696 100644 (file)
@@ -59,6 +59,11 @@ public class RemoteRepository
 
     private int remoteDownloadTimeout = 300;
 
+    /**
+     * @since 1.4-M2
+     */
+    private boolean downloadRemoteIndexOnStartup = false;
+
 
     public RemoteRepository()
     {
@@ -171,11 +176,20 @@ public class RemoteRepository
         this.remoteDownloadTimeout = remoteDownloadTimeout;
     }
 
+    public boolean isDownloadRemoteIndexOnStartup()
+    {
+        return downloadRemoteIndexOnStartup;
+    }
+
+    public void setDownloadRemoteIndexOnStartup( boolean downloadRemoteIndexOnStartup )
+    {
+        this.downloadRemoteIndexOnStartup = downloadRemoteIndexOnStartup;
+    }
+
     @Override
     public String toString()
     {
         final StringBuilder sb = new StringBuilder();
-        sb.append( super.toString() );
         sb.append( "RemoteRepository" );
         sb.append( "{url='" ).append( url ).append( '\'' );
         sb.append( ", userName='" ).append( userName ).append( '\'' );
@@ -186,6 +200,7 @@ public class RemoteRepository
         sb.append( ", remoteDownloadNetworkProxyId='" ).append( remoteDownloadNetworkProxyId ).append( '\'' );
         sb.append( ", cronExpression='" ).append( cronExpression ).append( '\'' );
         sb.append( ", remoteDownloadTimeout=" ).append( remoteDownloadTimeout );
+        sb.append( ", downloadRemoteIndexOnStartup=" ).append( downloadRemoteIndexOnStartup );
         sb.append( '}' );
         return sb.toString();
     }
index 17871f098425b8b5ab8f48d5b0d652ca75e1c833..e1bf5d46f53ff84b5d309dc938a1162f81777019 100644 (file)
@@ -129,6 +129,8 @@ public class DefaultRemoteRepositoryAdmin
             remoteRepository.setRemoteDownloadNetworkProxyId(
                 repositoryConfiguration.getRemoteDownloadNetworkProxyId() );
             remoteRepository.setRemoteDownloadTimeout( repositoryConfiguration.getRemoteDownloadTimeout() );
+            remoteRepository.setDownloadRemoteIndexOnStartup(
+                repositoryConfiguration.isDownloadRemoteIndexOnStartup() );
             remoteRepositories.add( remoteRepository );
         }
         return remoteRepositories;
@@ -327,6 +329,8 @@ public class DefaultRemoteRepositoryAdmin
         remoteRepositoryConfiguration.setRemoteDownloadNetworkProxyId(
             remoteRepository.getRemoteDownloadNetworkProxyId() );
         remoteRepositoryConfiguration.setRemoteDownloadTimeout( remoteRepository.getRemoteDownloadTimeout() );
+        remoteRepositoryConfiguration.setDownloadRemoteIndexOnStartup(
+            remoteRepository.isDownloadRemoteIndexOnStartup() );
         return remoteRepositoryConfiguration;
     }
 
index b003321713434549bb831dc8a1d9e8b4749c6542..9714dcfbe53c23200182099f0052d581ee46f033 100644 (file)
@@ -193,6 +193,15 @@ public class DefaultDownloadRemoteIndexScheduler
                 taskScheduler.schedule(
                     new DownloadRemoteIndexTask( downloadRemoteIndexTaskRequest, this.runningRemoteDownloadIds ),
                     new CronTrigger( remoteRepository.getCronExpression() ) );
+
+                if ( remoteRepository.isDownloadRemoteIndexOnStartup() )
+                {
+                    log.info(
+                        "remote repository {} configured with downloadRemoteIndexOnStartup schedule now a download" );
+                    taskScheduler.schedule(
+                        new DownloadRemoteIndexTask( downloadRemoteIndexTaskRequest, this.runningRemoteDownloadIds ),
+                        new Date() );
+                }
             }
 
         }
index 8acd10b12abc1b8caf6e9cb88ba96433c62eae08..1bcac269802d28db9f32b756adda4805b8a5a52e 100644 (file)
                       <type>war</type>
                       <overWrite>false</overWrite>
                       <outputDirectory>${basedir}/src/main/webapp</outputDirectory>
-                      <excludes>**/web.xml,**/struts*.jar,**/sitemesh*.jar,**/struts-security.xml</excludes>
+                      <excludes>**/web.xml,**/**.jar,**/struts-security.xml</excludes>
                     </artifactItem>
                   </artifactItems>
                 </configuration>
index f5943f2c9fc9fc9993c73be668cc6561f6cc59d2..0005786500ef4dedec908768a7644bbcb6bf968a 100644 (file)
@@ -35,5 +35,6 @@
 <s:textfield name="repository.remoteDownloadTimeout" label="Download Remote Index Timeout in seconds" size="10" required="false"/>
 <s:select list="networkProxies" name="repository.remoteDownloadNetworkProxyId" emptyOption="true"
 required="false" listKey="id" listValue="id" label="Network Proxy to Use for download Remote Index"/>
+<s:checkbox name="repository.downloadRemoteIndexOnStartup" label="Download remote index on Archiva startup" />