Exemplo n.º 1
0
 /**
  * Performs the work of inserting or updating the row in the database.
  *
  * If the object is new, it inserts it; otherwise an update is performed.
  * All related objects are also updated in this method.
  *
  * @param PropelPDO $con
  * @return int             The number of rows affected by this insert/update and any referring fk objects' save() operations.
  * @throws PropelException
  * @see        save()
  */
 protected function doSave(PropelPDO $con)
 {
     $affectedRows = 0;
     // initialize var to track total num of affected rows
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         // We call the save method on the following object(s) if they
         // were passed to this object by their corresponding set
         // method.  This object relates to these object(s) by a
         // foreign key reference.
         if ($this->aSite !== null) {
             if ($this->aSite->isModified() || $this->aSite->isNew()) {
                 $affectedRows += $this->aSite->save($con);
             }
             $this->setSite($this->aSite);
         }
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
             } else {
                 $this->doUpdate($con);
             }
             $affectedRows += 1;
             $this->resetModified();
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }
Exemplo n.º 2
0
 /**
  * Populate available Sites from a Provider.
  */
 public function apiGetSites()
 {
     $user_uuid = drush_cache_get('user_uuid', $this->drushCacheBinAuthName());
     $result = switchboard_request($this, array('method' => 'GET', 'realm' => 'sites', 'resource' => 'user', 'uuid' => $user_uuid->data));
     $site_metadata = json_decode($result->body);
     $sites = array();
     foreach ($site_metadata as $uuid => $data) {
         $site = SiteQuery::create()->filterByProvider($this->name)->filterByName($data->information->name)->findOne();
         if (!$site) {
             $site = new Site();
             $site->setProvider($this->name);
             $site->setName($data->information->name);
         }
         $site->setUuid($uuid);
         $site->setRealm($data->information->preferred_zone);
         $site->save();
     }
 }
Exemplo n.º 3
0
 /**
  * Populate available Sites from a Provider.
  */
 public function apiGetSites()
 {
     $result = switchboard_request($this, array('method' => 'GET', 'resource' => '/sites'));
     $site_names = json_decode($result->body);
     $sites = array();
     foreach ($site_names as $site_data) {
         list($realm, $site_name) = explode(':', $site_data);
         $site = SiteQuery::create()->filterByProvider($this->name)->filterByName($site_name)->findOne();
         if (!$site) {
             $site = new Site();
             $site->setProvider($this->name);
             $site->setName($site_name);
         }
         $site->setRealm($realm);
         $site->save();
     }
 }