Пример #1
0
 /**
  * Filter the query by a related UserProduct object
  *
  * @param   UserProduct|PropelObjectCollection $userProduct  the related object to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return                 ProductQuery The current query, for fluid interface
  * @throws PropelException - if the provided filter is invalid.
  */
 public function filterByUserProduct($userProduct, $comparison = null)
 {
     if ($userProduct instanceof UserProduct) {
         return $this->addUsingAlias(ProductPeer::ID, $userProduct->getProductId(), $comparison);
     } elseif ($userProduct instanceof PropelObjectCollection) {
         return $this->useUserProductQuery()->filterByPrimaryKeys($userProduct->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByUserProduct() only accepts arguments of type UserProduct or PropelCollection');
     }
 }
Пример #2
0
            $product->save();
            ok();
        } catch (Exception $e) {
            error('io-error', $e->getMessage());
        }
    });
});
$app->post('/products/:id/users', function ($id) use($app) {
    if_is_admin(function () use($app, $id) {
        $product = ProductQuery::create()->findPk($id);
        if ($product) {
            $data = json_decode($app->request()->getBody(), true);
            foreach ($data as $newRelation) {
                $user = UserQuery::create()->findPk($newRelation['id']);
                if ($user) {
                    $up = new UserProduct();
                    $up->setUser($user);
                    if ($newRelation['expires']) {
                        $up->setExpires($newRelation['expires']);
                    }
                    $product->addUserProduct($up);
                }
            }
            try {
                $product->save();
                ok($up);
            } catch (Exception $e) {
                error('io-error', $e->getMessage());
            }
        } else {
            return error('unknown-product', 'Product not found');
Пример #3
0
            } else {
                error('empty-password', __('The password must not be empty.'));
            }
        } else {
            error('invalid-token', __('The supplied token for password resetting is invalid.'));
        }
    }
});
$app->post('/user/:id/products', function ($id) use($app) {
    if_is_admin(function () use($app, $id) {
        $user = UserQuery::create()->findPk($id);
        if ($user) {
            $data = json_decode($app->request()->getBody(), true);
            foreach ($data as $p_id => $expires) {
                $product = ProductQuery::create()->findPk($p_id);
                if ($product) {
                    $up = new UserProduct();
                    $up->setProduct($product);
                    if ($expires) {
                        $up->setExpires($expires);
                    }
                    $user->addUserProduct($up);
                }
            }
            $user->save();
            ok();
        } else {
            error('user-not-found', 'no user found with that id');
        }
    });
});
Пример #4
0
 /**
  * Adds an object to the instance pool.
  *
  * Propel keeps cached copies of objects in an instance pool when they are retrieved
  * from the database.  In some cases -- especially when you override doSelect*()
  * methods in your stub classes -- you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by doSelect*()
  * and retrieveByPK*() calls.
  *
  * @param      UserProduct $obj A UserProduct object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool($obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = serialize(array((string) $obj->getUserId(), (string) $obj->getProductId()));
         }
         // if key === null
         UserProductPeer::$instances[$key] = $obj;
     }
 }
Пример #5
0
 /**
  * @param	Product $product The product object to add.
  */
 protected function doAddProduct($product)
 {
     $userProduct = new UserProduct();
     $userProduct->setProduct($product);
     $this->addUserProduct($userProduct);
 }
 /**
  * Exclude object from result
  *
  * @param   UserProduct $userProduct Object to remove from the list of results
  *
  * @return UserProductQuery The current query, for fluid interface
  */
 public function prune($userProduct = null)
 {
     if ($userProduct) {
         $this->addCond('pruneCond0', $this->getAliasedColName(UserProductPeer::USER_ID), $userProduct->getUserId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(UserProductPeer::PRODUCT_ID), $userProduct->getProductId(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     return $this;
 }