| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- <?php
- /*
- * FecShop file.
- *
- * @link http://www.fecshop.com/
- * @copyright Copyright (c) 2016 FecShop Software LLC
- * @license http://www.fecshop.com/license/
- */
- namespace fecshop\services\cms\staticblock;
- //use fecshop\models\mysqldb\cms\StaticBlock;
- use Yii;
- use fecshop\services\Service;
- /**
- * @author Terry Zhao <2358269014@qq.com>
- * @since 1.0
- */
- class StaticBlockMysqldb extends Service implements StaticBlockInterface
- {
- public $numPerPage = 20;
- protected $_staticBlockModelName = '\fecshop\models\mysqldb\cms\StaticBlock';
- protected $_staticBlockModel;
- /**
- * language attribute.
- */
- protected $_lang_attr = [
- 'title',
- 'content',
- ];
-
- public function init()
- {
- parent::init();
- list($this->_staticBlockModelName, $this->_staticBlockModel) = Yii::mapGet($this->_staticBlockModelName);
- }
-
- public function getPrimaryKey()
- {
- return 'id';
- }
- public function getByPrimaryKey($primaryKey)
- {
- if ($primaryKey) {
- $one = $this->_staticBlockModel->findOne($primaryKey);
- foreach ($this->_lang_attr as $attrName) {
- if (isset($one[$attrName])) {
- $one[$attrName] = unserialize($one[$attrName]);
- }
- }
- return $one;
- } else {
- return new $this->_staticBlockModelName();
- }
- }
- public function getByIdentify($identify)
- {
- $one = $this->_staticBlockModel->find()->asArray()->where([
- 'identify' => $identify,
- ])->one();
- foreach ($this->_lang_attr as $attrName) {
- if (isset($one[$attrName])) {
- $one[$attrName] = unserialize($one[$attrName]);
- }
- }
- return $one;
- }
- /*
- * example filter:
- * [
- * 'numPerPage' => 20,
- * 'pageNum' => 1,
- * 'orderBy' => ['_id' => SORT_DESC, 'sku' => SORT_ASC ],
- 'where' => [
- ['>','price',1],
- ['<=','price',10]
- * ['sku' => 'uk10001'],
- * ],
- * 'asArray' => true,
- * ]
- */
- public function coll($filter = '')
- {
- $query = $this->_staticBlockModel->find();
- $query = Yii::$service->helper->ar->getCollByFilter($query, $filter);
- $coll = $query->all();
- if (!empty($coll)) {
- foreach ($coll as $k => $one) {
- foreach ($this->_lang_attr as $attr) {
- $one[$attr] = $one[$attr] ? unserialize($one[$attr]) : '';
- }
- $coll[$k] = $one;
- }
- }
- //var_dump($one);
- return [
- 'coll' => $coll,
- 'count'=> $query->limit(null)->offset(null)->count(),
- ];
- }
- /**
- * @param $one|array
- * save $data to cms model,then,add url rewrite info to system service urlrewrite.
- */
- public function save($one)
- {
- $currentDateTime = \fec\helpers\CDate::getCurrentDateTime();
- $primaryVal = isset($one[$this->getPrimaryKey()]) ? $one[$this->getPrimaryKey()] : '';
- if (!($this->validateIdentify($one))) {
- Yii::$service->helper->errors->add('Static block: identify exit, You must define a unique identify');
- return;
- }
- if ($primaryVal) {
- $model = $this->_staticBlockModel->findOne($primaryVal);
- if (!$model) {
- Yii::$service->helper->errors->add('Static block {primaryKey} is not exist', ['primaryKey' => $this->getPrimaryKey()]);
- return;
- }
- } else {
- $model = new $this->_staticBlockModelName();
- $model->created_at = time();
- $model->created_user_id = \fec\helpers\CUser::getCurrentUserId();
- }
- $model->updated_at = time();
- foreach ($this->_lang_attr as $attrName) {
- if (is_array($one[$attrName]) && !empty($one[$attrName])) {
- $one[$attrName] = serialize($one[$attrName]);
- }
- }
- $primaryKey = $this->getPrimaryKey();
- $model = Yii::$service->helper->ar->save($model, $one);
- $primaryVal = $model[$primaryKey];
- return true;
- }
- protected function validateIdentify($one)
- {
- $identify = $one['identify'];
- $id = $this->getPrimaryKey();
- $primaryVal = isset($one[$id]) ? $one[$id] : '';
- $where = ['identify' => $identify];
- $query = $this->_staticBlockModel->find()->asArray();
- $query->where(['identify' => $identify]);
- if ($primaryVal) {
- $query->andWhere(['<>', $id, $primaryVal]);
- }
- $one = $query->one();
- if (!empty($one)) {
- return false;
- }
- return true;
- }
- public function remove($ids)
- {
- if (!$ids) {
- Yii::$service->helper->errors->add('remove id is empty');
- return false;
- }
- if (is_array($ids) && !empty($ids)) {
- foreach ($ids as $id) {
- $model = $this->_staticBlockModel->findOne($id);
- $model->delete();
- }
- } else {
- $id = $ids;
- $model = $this->_staticBlockModel->findOne($id);
- $model->delete();
- }
- return true;
- }
- }
|