Beispiel #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      ConnectionInterface $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(ConnectionInterface $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->aRole !== null) {
             if ($this->aRole->isModified() || $this->aRole->isNew()) {
                 $affectedRows += $this->aRole->save($con);
             }
             $this->setRole($this->aRole);
         }
         if ($this->aPermission !== null) {
             if ($this->aPermission->isModified() || $this->aPermission->isNew()) {
                 $affectedRows += $this->aPermission->save($con);
             }
             $this->setPermission($this->aPermission);
         }
         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;
 }
Beispiel #2
0
     echo "Role created: " . $role->getName() . "<br/>";
 }
 $role = $cerberus->getRole("SYS-ADMIN");
 $user->addRole($role);
 $user->save();
 // setting permissions
 if (!$cerberus->permissionExists("users-view")) {
     $permission = new Cerberus\Model\Permission();
     $permission->setName("users-view");
     $permission->save();
     echo "Permission created: " . $permission->getName() . "<br/>";
 }
 if (!$cerberus->permissionExists("users-edit")) {
     $permission = new Cerberus\Model\Permission();
     $permission->setName("users-edit");
     $permission->save();
     echo "Permission created: " . $permission->getName() . "<br/>";
 }
 $permission1 = $cerberus->getPermission("users-view");
 $permission2 = $cerberus->getPermission("users-edit");
 $role->addPermission($permission1);
 $role->addPermission($permission2);
 $role->save();
 echo "User updated: " . $user->getUpdateDate()->format('Y-m-d H:i:s') . "<br/>";
 echo "Role Updated: " . $user->getUpdateDate()->format('Y-m-d H:i:s') . "<br/>";
 // authenticate a user by its password
 $me = $cerberus->getUser("admin");
 $password = "******";
 $result = $me->authenticate($password) ? "Yes" : "No";
 echo "User Authenticated: " . $result . "<br/>";
 // authenticate a user with Cerberus
Beispiel #3
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      ConnectionInterface $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(ConnectionInterface $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->aPermissionRelatedByParentId !== null) {
             if ($this->aPermissionRelatedByParentId->isModified() || $this->aPermissionRelatedByParentId->isNew()) {
                 $affectedRows += $this->aPermissionRelatedByParentId->save($con);
             }
             $this->setPermissionRelatedByParentId($this->aPermissionRelatedByParentId);
         }
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
             } else {
                 $this->doUpdate($con);
             }
             $affectedRows += 1;
             $this->resetModified();
         }
         if ($this->rolesScheduledForDeletion !== null) {
             if (!$this->rolesScheduledForDeletion->isEmpty()) {
                 $pks = array();
                 foreach ($this->rolesScheduledForDeletion as $entry) {
                     $entryPk = [];
                     $entryPk[1] = $this->getId();
                     $entryPk[0] = $entry->getId();
                     $pks[] = $entryPk;
                 }
                 \Alchemy\Component\Cerberus\Model\RolePermissionQuery::create()->filterByPrimaryKeys($pks)->delete($con);
                 $this->rolesScheduledForDeletion = null;
             }
         }
         if ($this->collRoles) {
             foreach ($this->collRoles as $role) {
                 if (!$role->isDeleted() && ($role->isNew() || $role->isModified())) {
                     $role->save($con);
                 }
             }
         }
         if ($this->permissionsRelatedByIdScheduledForDeletion !== null) {
             if (!$this->permissionsRelatedByIdScheduledForDeletion->isEmpty()) {
                 \Alchemy\Component\Cerberus\Model\PermissionQuery::create()->filterByPrimaryKeys($this->permissionsRelatedByIdScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->permissionsRelatedByIdScheduledForDeletion = null;
             }
         }
         if ($this->collPermissionsRelatedById !== null) {
             foreach ($this->collPermissionsRelatedById as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->rolePermissionsScheduledForDeletion !== null) {
             if (!$this->rolePermissionsScheduledForDeletion->isEmpty()) {
                 \Alchemy\Component\Cerberus\Model\RolePermissionQuery::create()->filterByPrimaryKeys($this->rolePermissionsScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->rolePermissionsScheduledForDeletion = null;
             }
         }
         if ($this->collRolePermissions !== null) {
             foreach ($this->collRolePermissions as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }