Exemplo n.º 1
0
 /**
  * List all Channel Processing Jobs in the Data Store
  *
  * @param string $json
  * @return string $json
  */
 public function RunWorkflow($key)
 {
     //Setup the logger
     $logger = \Swiftriver\Core\Setup::GetLogger();
     $logger->log("Core::Workflows::SourceServices::GetAllSources::RunWorkflow [Method invoked]", \PEAR_LOG_INFO);
     $logger->log("Core::Workflows::SourceServices::GetAllSources::RunWorkflow [START: Constructing Repository]", \PEAR_LOG_DEBUG);
     try {
         //Construct a new repository
         $repository = new \Swiftriver\Core\DAL\Repositories\SourceRepository();
     } catch (\Exception $e) {
         //get the exception message
         $message = $e->getMessage();
         $logger->log("Core::Workflows::SourceServices::GetAllSources::RunWorkflow [An exception was thrown]", \PEAR_LOG_DEBUG);
         $logger->log("Core::Workflows::SourceServices::GetAllSources::RunWorkflow [{$message}]", \PEAR_LOG_ERR);
         $logger->log("Core::Workflows::SourceServices::GetAllSources::RunWorkflow [Method finished]", \PEAR_LOG_INFO);
         return parent::FormatErrorMessage("An exception was thrown: {$message}");
     }
     $logger->log("Core::Workflows::SourceServices::GetAllSources::RunWorkflow [END: Constructing Repository]", \PEAR_LOG_DEBUG);
     $logger->log("Core::Workflows::SourceServices::GetAllSources::RunWorkflow [START: Listing all sources]", \PEAR_LOG_DEBUG);
     try {
         //Get all the sources
         $sources = $repository->ListAllSources();
     } catch (\Exception $e) {
         //get the exception message
         $message = $e->getMessage();
         $logger->log("Core::Workflows::SourceServices::GetAllSources::RunWorkflow [An exception was thrown]", \PEAR_LOG_DEBUG);
         $logger->log("Core::Workflows::SourceServices::GetAllSources::RunWorkflow [{$message}]", \PEAR_LOG_ERR);
         $logger->log("Core::Workflows::SourceServices::GetAllSources::RunWorkflow [Method finished]", \PEAR_LOG_INFO);
         return parent::FormatErrorMessage("An exception was thrown: {$message}");
     }
     $logger->log("Core::Workflows::SourceServices::GetAllSources::RunWorkflow [END: Listing all sources]", \PEAR_LOG_DEBUG);
     $logger->log("Core::Workflows::SourceServices::GetAllSources::RunWorkflow [START: Parsing channel processing jobs to JSON]", \PEAR_LOG_DEBUG);
     try {
         //Parse the JSON input
         $json = parent::ParseSourcesToJSON($sources);
     } catch (\Exception $e) {
         //get the exception message
         $message = $e->getMessage();
         $logger->log("Core::Workflows::SourceServices::GetAllSources::RunWorkflow [An exception was thrown]", \PEAR_LOG_DEBUG);
         $logger->log("Core::Workflows::SourceServices::GetAllSources::RunWorkflow [{$message}]", \PEAR_LOG_ERR);
         $logger->log("Core::Workflows::SourceServices::GetAllSources::RunWorkflow [Method finished]", \PEAR_LOG_INFO);
         return parent::FormatErrorMessage("An exception was thrown: {$message}");
     }
     $logger->log("Core::Workflows::SourceServices::GetAllSources::RunWorkflow [END: Parsing channel processing jobs to JSON]", \PEAR_LOG_DEBUG);
     $logger->log("Core::Workflows::SourceServices::GetAllSources::RunWorkflow [Method finished]", \PEAR_LOG_INFO);
     //return the channels as JSON
     return parent::FormatReturn($json);
 }
Exemplo n.º 2
0
 /**
  * Creats a new Source object from a unique id
  *
  * @param string $identifier
  * @return \Swiftriver\Core\ObjectModel\Source
  */
 public static function CreateSourceFromIdentifier($identifier, $trusted = false)
 {
     $source = new \Swiftriver\Core\ObjectModel\Source();
     $source->id = md5($identifier);
     $repository = new \Swiftriver\Core\DAL\Repositories\SourceRepository();
     $sources = $repository->GetSourcesById(array($source->id));
     if (\count($sources) < 1) {
         if ($trusted) {
             $source->score = 100;
         }
         $source->date = \time();
     } else {
         $source = \reset($sources);
     }
     return $source;
 }
Exemplo n.º 3
0
 /**
  * Gets a source in the Data Store whos
  * id is supplied in $json parameter
  *
  * @param string $json
  * @return string $json
  */
 public function RunWorkflow($json, $key)
 {
     //Setup the logger
     $logger = \Swiftriver\Core\Setup::GetLogger();
     $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [Method invoked]", \PEAR_LOG_INFO);
     $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [START: Parsing the JSON input]", \PEAR_LOG_DEBUG);
     //try to parse the id from the JSON
     try {
         //get the ID from the JSON
         $id = parent::ParseJSONToId($json);
     } catch (\Exception $e) {
         //get the exception message
         $message = $e->getMessage();
         $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [An exception was thrown]", \PEAR_LOG_DEBUG);
         $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [{$message}]", \PEAR_LOG_ERR);
         $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [Method finished]", \PEAR_LOG_INFO);
         return parent::FormatErrorMessage("An exception was thrown: {$message}");
     }
     $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [END: Parsing the JSON input]", \PEAR_LOG_DEBUG);
     $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [START: Constructing Repository]", \PEAR_LOG_DEBUG);
     try {
         //Construct a new repository
         $repository = new \Swiftriver\Core\DAL\Repositories\SourceRepository();
     } catch (\Exception $e) {
         //get the exception message
         $message = $e->getMessage();
         $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [An exception was thrown]", \PEAR_LOG_DEBUG);
         $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [{$message}]", \PEAR_LOG_ERR);
         $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [Method finished]", \PEAR_LOG_INFO);
         return parent::FormatErrorMessage("An exception was thrown: {$message}");
     }
     $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [END: Constructing Repository]", \PEAR_LOG_DEBUG);
     $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [START: Getting the source]", \PEAR_LOG_DEBUG);
     try {
         //Get all the channel processing jobs
         $source = reset($repository->GetSourcesById(array($id)));
     } catch (\Exception $e) {
         //get the exception message
         $message = $e->getMessage();
         $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [An exception was thrown]", \PEAR_LOG_DEBUG);
         $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [{$message}]", \PEAR_LOG_ERR);
         $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [Method finished]", \PEAR_LOG_INFO);
         return parent::FormatErrorMessage("An exception was thrown: {$message}");
     }
     $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [END: Getting the processing job]", \PEAR_LOG_DEBUG);
     $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [START: Parsing source to JSON]", \PEAR_LOG_DEBUG);
     try {
         //Parse the JSON input
         $json = json_encode($source);
     } catch (\Exception $e) {
         //get the exception message
         $message = $e->getMessage();
         $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [An exception was thrown]", \PEAR_LOG_DEBUG);
         $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [{$message}]", \PEAR_LOG_ERR);
         $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [Method finished]", \PEAR_LOG_INFO);
         return parent::FormatErrorMessage("An exception was thrown: {$message}");
     }
     $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [END: Parsing source to JSON]", \PEAR_LOG_DEBUG);
     $logger->log("Core::Workflows::SourceServices::GetSource::RunWorkflow [Method finished]", \PEAR_LOG_INFO);
     //return the channels as JSON
     return parent::FormatReturn($json);
 }