/**
  * Automatically generated run method
  *
  * @param Request $request
  * @return Response
  */
 public function run(Request $request)
 {
     $object = ObjectQuery::create()->findOneById($this->getParam('objectId'));
     $data = ['sport' => $object->getSport(), 'object' => $object];
     $payload = null;
     if ($request->isMethod('POST')) {
         if ($request->request->get('name') == $object->getTitle()) {
             $object->delete();
             $payload = new Success(['sport' => $object->getSport()]);
         } else {
             $data['error'] = 'Name is wrong';
         }
     }
     if ($payload === null) {
         $payload = new Blank($data);
     }
     return $this->responder->run($request, $payload);
 }
Ejemplo n.º 2
0
 /**
  * Automatically generated run method
  *
  * @param Request $request
  * @return Response
  */
 public function run(Request $request)
 {
     $object = ObjectQuery::create()->findOneById($this->getParam('objectId'));
     $data = ['sport' => $object->getSport(), 'object' => $object];
     $payload = new Blank($data);
     if ($request->isMethod('POST')) {
         $post = $request->request;
         $domain = new ObjectDomain($this->getServiceContainer());
         $serializer = Object::getSerializer();
         $fields = $serializer->getFields();
         $attribs = [];
         foreach ($fields as $field) {
             if ($post->has($field)) {
                 $attribs[$field] = $post->get($field);
             }
         }
         $attribs['fixed'] = $post->has('fixed');
         $payload = $domain->update($object->getId(), ['attributes' => $attribs]);
         if ($payload instanceof NotValid) {
             $payload = new NotValid(array_merge($data, $payload->get()));
         }
     }
     return $this->responder->run($request, $payload);
 }
Ejemplo n.º 3
0
 /**
  * Finds the related Object objects and keep them for later
  *
  * @param ConnectionInterface $con A connection object
  */
 protected function findRelatedObjectSkillCounts($con)
 {
     $criteria = clone $this;
     if ($this->useAliasInSQL) {
         $alias = $this->getModelAlias();
         $criteria->removeAlias($alias);
     } else {
         $alias = '';
     }
     $this->objectSkillCounts = \gossi\trixionary\model\ObjectQuery::create()->joinSkill($alias)->mergeWith($criteria)->find($con);
 }
Ejemplo n.º 4
0
 /**
  * Internal update mechanism of Objects on Sport
  * 
  * @param Sport $model
  * @param mixed $data
  */
 protected function doUpdateObjects(Sport $model, $data)
 {
     // remove all relationships before
     ObjectQuery::create()->filterBySport($model)->delete();
     // add them
     $errors = [];
     foreach ($data as $entry) {
         if (!isset($entry['id'])) {
             $errors[] = 'Missing id for Object';
         } else {
             $related = ObjectQuery::create()->findOneById($entry['id']);
             $model->addObject($related);
         }
     }
     if (count($errors) > 0) {
         throw new ErrorsException($errors);
     }
 }
Ejemplo n.º 5
0
 /**
  * Builds a Criteria object containing the primary key for this object.
  *
  * Unlike buildCriteria() this method includes the primary key values regardless
  * of whether or not they have been modified.
  *
  * @throws LogicException if no primary key is defined
  *
  * @return Criteria The Criteria object containing value(s) for primary key(s).
  */
 public function buildPkeyCriteria()
 {
     $criteria = ChildObjectQuery::create();
     $criteria->add(ObjectTableMap::COL_ID, $this->id);
     return $criteria;
 }
Ejemplo n.º 6
0
 /**
  * Returns a new ChildObjectQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return ChildObjectQuery
  */
 public static function create($modelAlias = null, Criteria $criteria = null)
 {
     if ($criteria instanceof ChildObjectQuery) {
         return $criteria;
     }
     $query = new ChildObjectQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
Ejemplo n.º 7
0
 /**
  * Returns the number of related Object objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      ConnectionInterface $con
  * @return int             Count of related Object objects.
  * @throws PropelException
  */
 public function countObjects(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
 {
     $partial = $this->collObjectsPartial && !$this->isNew();
     if (null === $this->collObjects || null !== $criteria || $partial) {
         if ($this->isNew() && null === $this->collObjects) {
             return 0;
         }
         if ($partial && !$criteria) {
             return count($this->getObjects());
         }
         $query = ChildObjectQuery::create(null, $criteria);
         if ($distinct) {
             $query->distinct();
         }
         return $query->filterBySport($this)->count($con);
     }
     return count($this->collObjects);
 }
Ejemplo n.º 8
0
 /**
  * Performs an INSERT on the database, given a Object or Criteria object.
  *
  * @param mixed               $criteria Criteria or Object object containing data that is used to create the INSERT statement.
  * @param ConnectionInterface $con the ConnectionInterface connection to use
  * @return mixed           The new primary key.
  * @throws PropelException Any exceptions caught during processing will be
  *                         rethrown wrapped into a PropelException.
  */
 public static function doInsert($criteria, ConnectionInterface $con = null)
 {
     if (null === $con) {
         $con = Propel::getServiceContainer()->getWriteConnection(ObjectTableMap::DATABASE_NAME);
     }
     if ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
         // rename for clarity
     } else {
         $criteria = $criteria->buildCriteria();
         // build Criteria from Object object
     }
     if ($criteria->containsKey(ObjectTableMap::COL_ID) && $criteria->keyContainsValue(ObjectTableMap::COL_ID)) {
         throw new PropelException('Cannot insert a value for auto-increment primary key (' . ObjectTableMap::COL_ID . ')');
     }
     // Set the correct dbName
     $query = ObjectQuery::create()->mergeWith($criteria);
     // use transaction because $criteria could contain info
     // for more than one table (I guess, conceivably)
     return $con->transaction(function () use($con, $query) {
         return $query->doInsert($con);
     });
 }
Ejemplo n.º 9
0
 /**
  * Returns one Object with the given id from cache
  * 
  * @param mixed $id
  * @return Object|null
  */
 protected function get($id)
 {
     if ($this->pool === null) {
         $this->pool = new Map();
     } else {
         if ($this->pool->has($id)) {
             return $this->pool->get($id);
         }
     }
     $model = ObjectQuery::create()->findOneById($id);
     $this->pool->set($id, $model);
     return $model;
 }