summaryrefslogblamecommitdiffstats
path: root/src/main/java/org/openslx/satellitedaemon/App.java
blob: a0de29ac219fb6b144a62416ad61df731ca5181c (plain) (tree)
1
2
3
4
5
6
7
8
9



                                     
                                         

                                              

                                               
                                               
                      
 
                                                           
                                                      
                                                                          
                                                        
                                                        
                                             

   
                                                                              

   

                
                                                                                                                                                                                                                                                                
         
 

                                                                                              



                                                                                                                      
                                                           
                                                                      
                                                             

                                    

         
package org.openslx.satellitedaemon;

import java.io.FileNotFoundException;
import java.io.IOException;
import java.security.InvalidKeyException;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.security.SignatureException;
import java.security.UnrecoverableKeyException;
import java.security.cert.CertificateException;
import java.util.UUID;

import org.openslx.imagemaster.thrift.iface.FtpCredentials;
import org.openslx.imagemaster.thrift.iface.ImageData;
import org.openslx.imagemaster.thrift.iface.ServerAuthenticationException;
import org.openslx.satellitedaemon.ftp.FtpImageUploader;
import org.openslx.satellitedaemon.ftp.ThriftConnection;
import org.openslx.satellitedaemon.util.Util;

/**
 * Main class for uploading images from the HS-Server to the Satellite Server.
 * 
 */
public class App
{
	public static void main( String[] args ) throws NoSuchAlgorithmException, KeyStoreException, CertificateException, FileNotFoundException, IOException, ServerAuthenticationException, UnrecoverableKeyException, InvalidKeyException, SignatureException
	{

		//	TODO: A Thread that starts the call for new credentials and the upload
		//	whenever a new image was sceduled in the db.
		ImageData imDat = new ImageData( UUID.randomUUID().toString(), 113,
				"TestImage", System.currentTimeMillis(), System.currentTimeMillis(), "me", "anyThing",
				true, false, "best", "theVeryBest", 1024 );
		FtpCredentials ftpc = ThriftConnection.getFtpCredentials(imDat);
		Util.notNullFatal( ftpc, "ftpc was null" );
		FtpImageUploader ftpIU = new FtpImageUploader( ftpc );
		Util.notNullFatal( ftpIU, "ftpIU was null" );
		ftpIU.connectTest();

	}
}