123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?php
- /**
- *
- * PHP Pro Bid $Id$ T13jccjbcdXPyWH204s2cSxBfAYcT+9Dxi/+R3nE8l8=
- *
- * @link http://www.phpprobid.com
- * @copyright Copyright (c) 2016 Online Ventures Software & CodeCube SRL
- * @license http://www.phpprobid.com/license Commercial License
- *
- * @version 7.7
- */
- /**
- * blocked users table service class
- */
- namespace Ppb\Service;
- use Cube\Db\Expr,
- Ppb\Db\Table\BlockedUsers as BlockedUsersTable,
- Ppb\Db\Table\Row\BlockedUser as BlockedUserModel;
- class BlockedUsers extends AbstractService
- {
- /**
- *
- * class constructor
- */
- public function __construct()
- {
- parent::__construct();
- $this->setTable(
- new BlockedUsersTable());
- }
- /**
- *
- * create or update an blocked user
- *
- * @param array $data
- *
- * @return $this
- */
- public function save($data)
- {
- $row = null;
- $data = $this->_prepareSaveData($data);
- if (array_key_exists('id', $data)) {
- $select = $this->_table->select()
- ->where("id = ?", $data['id']);
- unset($data['id']);
- $row = $this->_table->fetchRow($select);
- }
- if (count($row) > 0) {
- $data['updated_at'] = new Expr('now()');
- $this->_table->update($data, "id='{$row['id']}'");
- }
- else {
- $data['created_at'] = new Expr('now()');
- $this->_table->insert($data);
- }
- return $this;
- }
- /**
- *
- * check if a user is blocked on a certain action
- * if true, then return the first matching blocked user object for display purposes
- *
- * @param string $blockedAction (register, messaging, purchase)
- * @param array $dataToBlock
- * @param int|null $blockerId
- *
- * @return \Ppb\Db\Table\Row\BlockedUser|null
- */
- public function check($blockedAction, $dataToBlock = array(), $blockerId = null)
- {
- $select = $this->_table->select();
- $adapter = $this->_table->getAdapter();
- if ($blockerId !== null) {
- $select->where('user_id = ? or user_id is null', $blockerId);
- }
- else {
- $select->where('user_id is null');
- }
- $where = array();
- foreach ($dataToBlock as $key => $value) {
- if (array_key_exists($key, BlockedUserModel::$blockTypes)) {
- $where[] = '(' . implode(' AND ', array(
- $adapter->quoteInto('type = ?', $key),
- $adapter->quoteInto("value = ?", $value)
- )) . ')';
- }
- }
- if (count($where) > 0) {
- $select->where(implode(' OR ', $where));
- }
- $select->where("blocked_actions REGEXP '\"" . $blockedAction . "\"'");
- return $this->fetchAll($select)->getRow(0);
- }
- /**
- *
- * delete a blocked user row from the table
- *
- * @param int $id the id of the row to be deleted
- * @param int $userId the id of owner of the row
- *
- * @return int returns the number of affected rows
- */
- public function delete($id, $userId = null)
- {
- $adapter = $this->_table->getAdapter();
- $where[] = $adapter->quoteInto('id = ?', $id);
- if ($userId !== null) {
- $where[] = $adapter->quoteInto('user_id = ?', $userId);
- }
- return $this->_table->delete($where);
- }
- }
|