/**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(UploadTokenPeer::DATABASE_NAME);
         $criteria->add(UploadTokenPeer::ID, $pks, Criteria::IN);
         $objs = UploadTokenPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Beispiel #2
0
 /**
  * Gets an array of UploadToken objects which contain a foreign key that references this object.
  *
  * If this collection has already been initialized with an identical Criteria, it returns the collection.
  * Otherwise if this kuser has previously been saved, it will retrieve
  * related UploadTokens from storage. If this kuser is new, it will return
  * an empty collection or the current collection, the criteria is ignored on a new object.
  *
  * @param      PropelPDO $con
  * @param      Criteria $criteria
  * @return     array UploadToken[]
  * @throws     PropelException
  */
 public function getUploadTokens($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(kuserPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collUploadTokens === null) {
         if ($this->isNew()) {
             $this->collUploadTokens = array();
         } else {
             $criteria->add(UploadTokenPeer::KUSER_ID, $this->id);
             UploadTokenPeer::addSelectColumns($criteria);
             $this->collUploadTokens = UploadTokenPeer::doSelect($criteria, $con);
         }
     } else {
         // criteria has no effect for a new object
         if (!$this->isNew()) {
             // the following code is to determine if a new query is
             // called for.  If the criteria is the same as the last
             // one, just return the collection.
             $criteria->add(UploadTokenPeer::KUSER_ID, $this->id);
             UploadTokenPeer::addSelectColumns($criteria);
             if (!isset($this->lastUploadTokenCriteria) || !$this->lastUploadTokenCriteria->equals($criteria)) {
                 $this->collUploadTokens = UploadTokenPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastUploadTokenCriteria = $criteria;
     return $this->collUploadTokens;
 }
 /**
  * List upload token by filter with pager support. 
  * When using a user session the service will be restricted to users objects only.
  * 
  * @action list
  * @param KalturaUploadTokenFilter $filter
  * @param KalturaFilterPager $pager
  * @return KalturaUploadTokenListResponse
  */
 function listAction(KalturaUploadTokenFilter $filter = null, KalturaFilterPager $pager = null)
 {
     if (!$filter) {
         $filter = new KalturaUploadTokenFilter();
     }
     if (!$pager) {
         $pager = new KalturaFilterPager();
     }
     $this->restrictPeerToCurrentUser();
     // translate the user id (puser id) to kuser id
     if ($filter->userIdEqual !== null) {
         $kuser = kuserPeer::getKuserByPartnerAndUid($this->getPartnerId(), $filter->userIdEqual);
         if ($kuser) {
             $filter->userIdEqual = $kuser->getId();
         } else {
             $filter->userIdEqual = -1;
         }
         // no result will be returned when the user is missing
     }
     // create the filter
     $uploadTokenFilter = new UploadTokenFilter();
     $filter->toObject($uploadTokenFilter);
     $c = new Criteria();
     $uploadTokenFilter->attachToCriteria($c);
     $totalCount = UploadTokenPeer::doCount($c);
     $pager->attachToCriteria($c);
     $list = UploadTokenPeer::doSelect($c);
     // create the response object
     $newList = KalturaUploadTokenArray::fromUploadTokenArray($list);
     $response = new KalturaUploadTokenListResponse();
     $response->objects = $newList;
     $response->totalCount = $totalCount;
     return $response;
 }