|
- <?php
-
- namespace backend\modules\zzcs\models;
-
- use yii\db\ActiveRecord;
- use yii\base\Exception;
- use Yii;
-
- /**
- * This is the model class for table "opera_message_template".
- *
- * @property integer $id
- * @property integer $supplier_id
- * @property integer $ticket_group_id
- * @property integer $ticket_id
- * @property string $content1
- * @property string $content2
- * @property string $content3
- * @property string $content4
- * @property string $content5
- * @property integer $create_user_id
- * @property string $create_time
- * @property integer $update_user_id
- * @property string $update_time
- * @property integer $template_type
- * @property integer $cancel_flag
- */
- class OperaMessageTemplate extends ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'opera_message_template';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['supplier_id', 'ticket_group_id', 'ticket_id', 'create_user_id', 'update_user_id', 'template_type', 'cancel_flag'], 'integer'],
- [['ticket_group_id', 'ticket_id', 'template_type'], 'required'],
- [['content1', 'content2', 'content3', 'content4', 'content5', 'content6'], 'string'],
- [['create_time', 'update_time'], 'string', 'max' => 20],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'supplier_id' => 'Supplier ID',
- 'ticket_group_id' => 'Ticket Group ID',
- 'ticket_id' => 'Ticket ID',
- 'content1' => 'Content1',
- 'content2' => 'Content2',
- 'content3' => 'Content3',
- 'content4' => 'Content4',
- 'content5' => 'Content5',
- 'content6' => 'Content6',
- 'create_user_id' => 'Create User ID',
- 'create_time' => 'Create Time',
- 'update_user_id' => 'Update User ID',
- 'update_time' => 'Update Time',
- 'template_type' => 'Template Type',
- 'cancel_flag' => 'Cancel Flag',
- ];
- }
-
- /**
- * Function Description:判断用户是否是管理员
- * Function Name: judgeAdmin
- *
- * @return bool|int
- *
- * @author 温依莅
- */
- public function judgeAdmin()
- {
- $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
- $user = BaseUser::find()->select(['id', 'main_corp_id', 'user_role'])->where(['id' => $user_id])->asArray()->one();
- if (!$user) {
- return false;
- }
- if ($user['main_corp_id'] == 0 && $user['user_role'] == 0) {
- return 1;
- }
- return 0;
- }
-
- /**
- * Function Description:判断是否有重复的同渠道模板数据插入
- * Function Name: judgeRepeat
- * @param int $ticket_group_id
- * @param int $channel_id
- *
- * @return array|null|ActiveRecord
- *
- * @author 温依莅
- */
- public function judgeRepeat($ticket_group_id, $channel_id)
- {
- $arr = self::find()->where(['ticket_group_id' => $ticket_group_id, 'supplier_id' => $channel_id, 'cancel_flag' => 0, 'template_type' => 2])->asArray()->one();
- return $arr;
- }
-
- /**
- * Function Description:判断短信模板格式
- * Function Name: templatePreg
- * @param $str
- *
- * @return int
- *
- * @author 温依莅
- */
- public function templatePreg($str)
- {
- preg_match_all('/\{/', $str, $lc);
- preg_match_all('/\}/', $str, $rc);
- $lcount = count($lc[0]);
- $rcount = count($rc[0]);
- if ($lcount == $rcount) {
- return 1;
- } else {
- return 0;
- }
- }
-
- /**
- * Function Description:根据用户名得到可选择的渠道
- * Function Name: getEnableChannels
- *
- * @author 温依莅
- */
- public function getEnableChannels()
- {
- $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
- //$user_id=621;
- //根据用户名得到可选择的渠道
- #对于非蜘蛛运营主体,可以看到本身所属渠道和 蜘蛛国旅渠道
- #对于蜘蛛运营主体,可以看到本身渠道和所有非蜘蛛运营主体的的对应渠道
- $user = BaseUser::find()->select(['id', 'main_corp_id', 'user_role'])->where(['id' => $user_id, 'cancel_flag' => 0])->asArray()->one();
- if (!$user) {
- return array();
- }
- $main_corp_id = $user['main_corp_id'] == 0 ? 1 : $user['main_corp_id'];//运营主体为0【蜘蛛科技】的视为1【蜘蛛国旅】处理
- if ($main_corp_id == 1) {
- $where = 'a.main_corp_id=1 or a.reflect_main_corp>1';//
- } else {
- $where = "a.main_corp_id=$main_corp_id or a.reflect_main_corp=1";//
- }
- $arr = BaseSupplier::find()->select([
- 'a.id as supplier_id',
- 'a.main_corp_id',
- 'a.supplier_name',
- 'a.reflect_main_corp'
- ])->from(BaseSupplier::tableName() . ' as a')
- ->where('a.cancel_flag=0 and b.cancel_flag=0 and a.is_disabled=0 and a.supplier_type=301 and b.corp_type=1')
- ->leftJoin('base_main_corporation b', 'a.main_corp_id=b.id')
- ->andWhere($where)
- ->distinct()
- ->asArray()
- ->all();
- return $arr;
- }
-
- /**
- * Function Description:获得默认短信模板
- * Function Name: getDefault
- *
- * @return array
- *
- * @author 温依莅
- */
- public function getDefault()
- {
- //获取默认的短信模板
- $def = self::find()->where(['template_type' => 0, 'cancel_flag' => 0])->asArray()->one();
- return $def;
- }
-
- /**
- * Function Description:短信模板列表
- * Function Name: templateList
- * @param string $ticket_group_id
- * @param string $ticket_id
- *
- * @return mixed
- *
- * @author 温依莅
- */
- public function templateList($ticket_group_id, $ticket_id)
- {
- $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
- //$user_id=206;
- //1,根据用户名得到可见的渠道--如果是管理员(main_corp_id是0且user_role是0)则可见所有渠道
- $user = BaseUser::find()->select(['id', 'main_corp_id', 'user_role'])->where(['id' => $user_id])->asArray()->one();
- if (!$user) {
- $where = array('a.cancel_flag' => 666);
- }
- if ($user['main_corp_id'] == 0 && $user['user_role'] == 0) {
- $where = array('a.cancel_flag' => 0, 'a.template_type' => 2, 'b.cancel_flag' => 0, 'a.ticket_group_id' => $ticket_group_id, 'b.supplier_type' => 301);
- } else {
- $where = array('a.cancel_flag' => 0, 'a.template_type' => 2, 'b.cancel_flag' => 0, 'c.cancel_flag' => 0, 'a.ticket_group_id' => $ticket_group_id, 'b.supplier_type' => 301, 'c.id' => $user_id);
- }
-
- $default = self::getDefault();//默认模板
- $channels = self::getEnableChannels();//可添加渠道
- //$isAdmin = self::judgeAdmin();//是否是管理组
- $isAdmin = ($user_id == 1) ? 1 : 0;//暂时改为只有admin用户才可以修改
- $obj = OperaTicketsGroup::find()->where(['id' => $ticket_group_id])->one();
- $ticket_name = $obj ? $obj->STATION_NAME : '';
- //2,根据user_id得到指定票种的可见短信模板
-
- $arr = self::find()->select([
- 'a.id',
- 'a.supplier_id',
- 'a.ticket_group_id',
- 'a.content1',
- 'a.content2',
- 'a.content3',
- 'b.supplier_name'
- ])->from(self::tableName() . ' as a')
- ->leftJoin(BaseSupplier::tableName() . ' as b', 'a.supplier_id=b.id')
- ->leftJoin(BaseUser::tableName() . ' as c', 'b.main_corp_id=c.main_corp_id')
- ->where($where)
- ->groupBy('a.supplier_id')
- ->orderBy('a.id')
- ->asArray()
- ->all();
-
- $template = array();
- $template['default'] = $default;
- $template['list'] = $arr;
- $template['channels'] = $channels;
- $template['isAdmin'] = $isAdmin;
- $template['ticket_name'] = $ticket_name;
-
- return $template;
-
- }
-
- /**
- * Function Description:渠道短信模板增加(批量插入)
- * Function Name: templateAdd
- * @param int $ticket_group_id
- * @param string $ticket_id
- * @param int $channel_id
- * @param string $template1
- * @param string $template2
- * @param string $template3
- *
- * @return mixed
- *
- * @author 温依莅
- */
- public function templateAdd($ticket_group_id, $ticket_id, $channel_id, $template1, $template2, $template3)
- {
- $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
- //0,判断在数据库是否已有该渠道的模板
- $arr = self::judgeRepeat($ticket_group_id, $channel_id);
- if (!empty($arr)) {
- $json['code'] = '1';
- $json["info"] = '该渠道已有模板,请勿重复添加';
- return $json;
- }
- //0,判断短信模板格式
- /*$re1=self::templatePreg($template1);
- $re2=self::templatePreg($template2);
- $re3=self::templatePreg($template3);
-
- if(($re1+$re2+$re3)!=3){
- $json['code'] = '1';
- $json['info'] = '左右大括号不匹配,请检查是否有缺少';
- return $json;
- }*/
- //1,处理ticket_id集合,得到需要批量插入的数组数据date('Y-m-d H:i:s', time()),
- $ticket_arr = explode(',', $ticket_id);
- $matrix = array();
- foreach ($ticket_arr as $k => $v) {
- $matrix[] = [
- 'supplier_id' => $channel_id,
- 'ticket_group_id' => $ticket_group_id,
- 'ticket_id' => $v,
- 'content1' => $template1,
- 'content2' => $template2,
- 'content3' => $template3,
- 'create_user_id' => $user_id,
- 'create_time' => date('Y-m-d H:i:s', time()),
- 'update_user_id' => $user_id,
- 'update_time' => date('Y-m-d H:i:s', time()),
- 'template_type' => 2,
- 'cancel_flag' => 0,
- ];
- }
-
- //将渠道模板批量插入opera_message_template表
- try {
- $transaction = Yii::$app->db->beginTransaction();
- $res = Yii::$app->db->createCommand()->batchInsert('opera_message_template',
- ['supplier_id', 'ticket_group_id', 'ticket_id', 'content1', 'content2', 'content3', 'create_user_id', 'create_time', 'update_user_id', 'update_time', 'template_type', 'cancel_flag'],
- $matrix)->execute();
- if (!$res) {
- throw new Exception('opera_message_template插入出错');
- }
- $transaction->commit();
- $json['code'] = '0';
- $json['info'] = '渠道模板添加成功';
- return $json;
-
- } catch (Exception $e) {
- # 回滚事务
- $transaction->rollBack();
- $json['code'] = '1';
- $json["info"] = '渠道模板添加失败';
- $json['error_info'] = $e->getMessage();
- return $json;
- }
- }
-
- /**
- * Function Description:渠道短信模板修改(批量修改)
- * Function Name: templateModify
- * @param int $ticket_group_id
- * @param string $ticket_id
- * @param int $channel_id
- * @param string $template1
- * @param string $template2
- * @param string $template3
- *
- * @return mixed
- *
- * @author 温依莅
- */
- public function templateModify($ticket_group_id, $ticket_id, $channel_id, $template1, $template2, $template3)
- {
- $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
-
- //0,判断短信模板格式
- /*$re1=self::templatePreg($template1);
- $re2=self::templatePreg($template2);
- $re3=self::templatePreg($template3);
-
- if(($re1+$re2+$re3)!=3){
- $json['code'] = '1';
- $json['info'] = '左右大括号不匹配,请检查是否有缺少';
- return $json;
- }*/
-
- //将批量修改该渠道的模板
- try {
- $transaction = Yii::$app->db->beginTransaction();
- //更新条件
- $update_where = [
- 'and', ['ticket_group_id' => $ticket_group_id], ['supplier_id' => $channel_id], ['cancel_flag' => 0], ['template_type' => 2]
- ];
- //更新数据
- $update_data = [
- 'content1' => $template1,
- 'content2' => $template2,
- 'content3' => $template3,
- 'update_user_id' => $user_id,
- 'update_time' => date('Y-m-d H:i:s', time())
- ];
- $rows = self::updateAll($update_data, $update_where);
- if (!$rows) {
- throw new Exception(self::getErrors());
- }
- $transaction->commit();
- $json['code'] = '0';
- $json['info'] = '渠道模板修改成功';
- return $json;
-
- } catch (Exception $e) {
- # 回滚事务
- $transaction->rollBack();
- $json['code'] = '1';
- $json["info"] = '渠道模板修改失败';
- $json['error_info'] = $e->getMessage();
- return $json;
- }
- }
-
- /**
- * Function Description:默认短信模板修改(只有管理组可以修改)
- * Function Name: templateModifyDefault
- * @param string $template1
- * @param string $template2
- * @param string $template3
- *
- * @return mixed
- *
- * @author 温依莅
- */
- public function templateModifyDefault($template1, $template2, $template3)
- {
- $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
- //判断权限是否可以修改
- //$isAdmin = self::judgeAdmin();
- $isAdmin = ($user_id == 1) ? 1 : 0;//暂时改为只有admin用户可以修改默认模板
- if (!$isAdmin) {
- $json['code'] = '1';
- $json["info"] = '无修改权限';
- return $json;
- }
- //0,判断短信模板格式
- $re1 = self::templatePreg($template1);
- $re2 = self::templatePreg($template2);
- $re3 = self::templatePreg($template3);
-
- if (($re1 + $re2 + $re3) != 3) {
- $json['code'] = '1';
- $json['info'] = '左右大括号不匹配,请检查是否有缺少';
- return $json;
- }
- //修改默认短信模板
- try {
- $transaction = Yii::$app->db->beginTransaction();
- //更新条件
- $update_where = [
- 'and', ['cancel_flag' => 0], ['template_type' => 0]
- ];
- //更新数据
- $update_data = [
- 'content1' => $template1,
- 'content2' => $template2,
- 'content3' => $template3,
- 'update_user_id' => $user_id,
- 'update_time' => date('Y-m-d H:i:s', time())
- ];
- $rows = self::updateAll($update_data, $update_where);
- if (!$rows) {
- throw new Exception(self::getErrors());
- }
-
- $transaction->commit();
- $json['code'] = '0';
- $json['info'] = '默认模板修改成功';
- return $json;
-
- } catch (Exception $e) {
- # 回滚事务
- $transaction->rollBack();
- $json['code'] = '1';
- $json["info"] = '默认模板修改失败';
- $json['error_info'] = $e->getMessage();
- return $json;
- }
- }
-
- /**
- * Function Description:渠道短信模板删除
- * Function Name: templateDelete
- * @param int $ticket_group_id
- * @param int $channel_id
- *
- * @return mixed
- *
- * @author 温依莅
- */
- public function templateDelete($ticket_group_id, $channel_id)
- {
- $user_id = Yii::$app->request->cookies->getValue('user_id', -1);
-
- //将批量删除该渠道的模板
- try {
- $transaction = Yii::$app->db->beginTransaction();
- //删除条件
- $update_where = [
- 'and', ['ticket_group_id' => $ticket_group_id], ['supplier_id' => $channel_id], ['cancel_flag' => 0], ['template_type' => 2]
- ];
- //更新数据
- $update_data = [
- 'cancel_flag' => 1,
- 'update_user_id' => $user_id,
- 'update_time' => date('Y-m-d H:i:s', time())
- ];
- $rows = self::updateAll($update_data, $update_where);
- if (!$rows) {
- throw new Exception(self::getErrors());
- }
- $transaction->commit();
- $json['code'] = '0';
- $json['info'] = '渠道模板删除成功';
- return $json;
-
- } catch (Exception $e) {
- # 回滚事务
- $transaction->rollBack();
- $json['code'] = '1';
- $json["info"] = '渠道模板删除失败';
- $json['error_info'] = $e->getMessage();
- return $json;
- }
- }
-
-
- }
|