예제 #1
0
 public function write()
 {
     $resource = $this->context->channel;
     if (!empty($this->context->more)) {
         $resource .= '.' . $this->context->more;
     }
     $history = array('_id' => (string) new MongoID(), 'origin' => $this->context->origin, 'origin_description' => $this->context->origin_description, 'origin_domain' => $this->context->origin_domain, 'endpoint' => $this->endpoint, 'method' => $this->method, 'resource' => $resource, 'timestamp' => GalaxyAPI::datetime());
     $application_id = GalaxyAPI::applicationIdForChannelId($this->context->channel);
     $options = array('default' => GalaxyAPI::databaseForId($application_id));
     $db = GalaxyAPI::database(GalaxyAPIConstants::kDatabaseMongoDB, null, $options);
     $logs = $db->selectCollection(GalaxyAPIConstants::kDatabaseLog);
     // this might be a bottle neck
     // how much value is in the individual channel quests count?
     if (empty($this->context->more)) {
         $inc_key = array('_id' => $this->context->channel);
         $inc_value = array('$inc' => array('requests' => 1));
         $master = $db->selectCollection(GalaxyAPIConstants::kDatabaseChannels);
         $master->update($inc_key, $inc_value);
         // update the request counter for the subscriber copy as well
         if (GalaxyAPI::applicationIdForChannelId($this->context->channel) != $this->context->origin) {
             $options_local = array('default' => GalaxyAPI::databaseForId($this->context->origin));
             $subscriber = GalaxyAPI::database(GalaxyAPIConstants::kDatabaseMongoDB, GalaxyAPIConstants::kDatabaseChannels, $options_local);
             $subscriber->update($inc_key, $inc_value);
         }
     } else {
         $requests = $db->selectCollection(GalaxyAPI::databaseforId($this->context->channel));
         $requests->update(array('_id' => $this->context->more), array('$inc' => array('requests' => 1)));
     }
     // this definitely is important
     $logs->insert($history);
 }
예제 #2
0
 public function message_details_get($context)
 {
     if ($context->more && $context->channel) {
         $application = GalaxyAPI::applicationIdForChannelId($context->channel);
         $options = array('default' => GalaxyAPI::databaseForId($application));
         $channel = GalaxyAPI::database(GalaxyAPIConstants::kDatabaseMongoDB, GalaxyAPI::databaseForId($context->channel), $options);
         $data = $channel->findOne(array('_id' => $context->more));
         return GalaxyResponse::responseWithData($data);
     } else {
         return GalaxyResponse::responseWithError(GalaxyError::errorWithString('invalid message'));
     }
 }