279 lines
7.8 KiB
PHP
Executable File
279 lines
7.8 KiB
PHP
Executable File
<?php
|
|
|
|
# @Author: 嗨噜客(三亚) <fm453>
|
|
# @Date: 2022-05-22T07:35:33+08:00
|
|
# @Email: fm453@lukegzs.com
|
|
# @Last modified by: fm453
|
|
# @Last modified time: 2024-08-09T09:17:44+08:00
|
|
# @Copyright: www.hiluker.cn
|
|
|
|
namespace api\controllers\gm\v1;
|
|
|
|
use Yii;
|
|
use yii\data\Pagination;
|
|
use yii\helpers\Url;
|
|
use addons\models\AcContact;
|
|
use common\models\Member as User;
|
|
use common\models\UserExt;
|
|
|
|
class ContactController extends Common
|
|
{
|
|
public function actionIndex()
|
|
{
|
|
return $this->render('index');
|
|
}
|
|
|
|
//通讯录列表
|
|
public function actionList()
|
|
{
|
|
$model = new AcContact();
|
|
$where = $where2 = [];
|
|
$pid = Yii::$app->session->get('pid');
|
|
$session = Yii::$app->session;
|
|
$post = Yii::$app->request->post();
|
|
$search = [];
|
|
$searchSession = 'contact::search';
|
|
if (isset($_GET['reset']) && $_GET['reset'] == 1) {
|
|
$post['search'] = [];
|
|
}
|
|
if (isset($post['search'])) {
|
|
$search = $post['search'];
|
|
$session->set($searchSession, $search);
|
|
} else if ($session->get($searchSession)) {
|
|
$search = $session->get($searchSession);
|
|
}
|
|
|
|
$search['title'] = isset($search['title']) ? trim(htmlspecialchars_decode($search['title'])) : '';
|
|
if (!empty($search['title'])) {
|
|
$where2[] = 'or';
|
|
$where2[] = ['LIKE', 'name', $search['title']];
|
|
$where2[] = ['LIKE', 'mobile', $search['title']];
|
|
}
|
|
$where['deleted'] = 0;
|
|
$data = $model->find()->where($where);
|
|
if ($search['title']) {
|
|
$data = $data->andwhere($where2);
|
|
}
|
|
|
|
$pages = new Pagination(['totalCount' => $data->count(), 'pageSize' => '20']);
|
|
$res = $data->offset($pages->offset)->limit($pages->limit)->all();
|
|
$status = Yii::$app->params['CommonStatus'];
|
|
|
|
return $this->render('list', [
|
|
'contactors' => $res,
|
|
'pager' => $pages,
|
|
'status' => $status,
|
|
'search' => $search
|
|
]);
|
|
}
|
|
|
|
public function actionSelect()
|
|
{
|
|
$model = new AcContact();
|
|
$pid = Yii::$app->session->get('pid');
|
|
$session = Yii::$app->session;
|
|
$where = $where2 = [];
|
|
$where['pid'] = $pid;
|
|
$post = Yii::$app->request->post();
|
|
$search = [];
|
|
$searchSession = 'contact::search';
|
|
if (isset($_GET['reset']) && $_GET['reset'] == 1) {
|
|
$post['search'] = [];
|
|
}
|
|
if (isset($post['search'])) {
|
|
$search = $post['search'];
|
|
$session->set($searchSession, $search);
|
|
} else if ($session->get($searchSession)) {
|
|
$search = $session->get($searchSession);
|
|
}
|
|
|
|
$search['title'] = isset($search['title']) ? trim(htmlspecialchars_decode($search['title'])) : '';
|
|
if (!empty($search['title'])) {
|
|
$where2[] = 'or';
|
|
$where2[] = ['LIKE', 'name', $search['title']];
|
|
$where2[] = ['LIKE', 'mobile', $search['title']];
|
|
}
|
|
$where['deleted'] = 0;
|
|
$data = $model->find()->where($where);
|
|
if ($search['title']) {
|
|
$data = $data->andwhere($where2);
|
|
}
|
|
|
|
$pages = new Pagination(['totalCount' => $data->count(), 'pageSize' => '20']);
|
|
$res = $data->offset($pages->offset)->limit($pages->limit)->all();
|
|
$status = Yii::$app->params['CommonStatus'];
|
|
$callback = !empty(Yii::$app->request->get('callback')) ? Yii::$app->request->get('callback') : 'contactor';
|
|
return $this->render('select', [
|
|
'contactors' => $res,
|
|
'pager' => $pages,
|
|
'status' => $status,
|
|
'search' => $search,
|
|
'callback' => $callback
|
|
]);
|
|
}
|
|
|
|
public function actionNew()
|
|
{
|
|
return $this->render('modify', []);
|
|
}
|
|
|
|
//编辑通讯录资料
|
|
public function actionEdit()
|
|
{
|
|
$model = new AcContact();
|
|
$id = Yii::$app->request->get('id');
|
|
$res = $model->find()->where(['id' => $id])->one();
|
|
if ($res) {
|
|
$res = $res->toArray();
|
|
}
|
|
|
|
return $this->render('modify', ['detail' => $res]);
|
|
}
|
|
|
|
//保存通讯录资料
|
|
public function actionSave()
|
|
{
|
|
$post = Yii::$app->request->post();
|
|
$id = (int)$post['id'];
|
|
$pid = Yii::$app->session->get('pid');
|
|
//格式化数据
|
|
//目标键=》POST键
|
|
$cols = ['company' => 'company', 'name' => 'name', 'mobile' => 'mobile', 'idcard' => 'idcard'];
|
|
foreach ($cols as $col => $key) {
|
|
$data[$col] = isset($post[$key]) ? trim($post[$key]) : '';
|
|
}
|
|
//查询通讯录手机号是否在库
|
|
$hasContactor = AcContact::find()->where(['mobile' => $data['mobile']])->one();
|
|
if ($hasContactor) {
|
|
if ($id && $id == $hasContactor->id) {
|
|
} else {
|
|
$id = $hasContactor->id;
|
|
\Yii::$app->getSession()->setFlash('danger', '保存失败,该手机号对应的通讯录已在库,系统自动现在为您调出该通讯录资料!');
|
|
return $this->redirect(['edit', 'id' => $id]);
|
|
}
|
|
}
|
|
$cols = ['status_code' => 'status_code', 'deleted' => 'deleted'];
|
|
foreach ($cols as $col => $key) {
|
|
$data[$col] = isset($post[$key]) ? (int)$post[$key] : 0;
|
|
}
|
|
$data['create_at'] = time();
|
|
$data['update_at'] = $data['create_at'];
|
|
$data['pid'] = $pid;
|
|
|
|
//保存通讯录资料
|
|
$AcContact = new AcContact();
|
|
foreach ($data as $key => $val) {
|
|
$AcContact->$key = $val;
|
|
}
|
|
|
|
if ($id) {
|
|
$AcContact->id = $id;
|
|
unset($data['create_at']);
|
|
$res = $AcContact->updateAll($data, ['id' => $id]);
|
|
} else {
|
|
$res = $AcContact->save();
|
|
$id = $AcContact->attributes['id']; //获取插入后id
|
|
}
|
|
|
|
if ($res) {
|
|
\Yii::$app->getSession()->setFlash('success', '通讯录信息保存成功!');
|
|
return $this->redirect(['edit', 'id' => $id]);
|
|
} else {
|
|
\Yii::$app->getSession()->setFlash('warning', '通讯录信息保存失败!');
|
|
return $this->goBack();
|
|
}
|
|
}
|
|
|
|
//删除
|
|
public function actionDelete()
|
|
{
|
|
$get = Yii::$app->request->get();
|
|
$post = Yii::$app->request->post();
|
|
$id = (int)$get['id'];
|
|
$data = $where = [];
|
|
$where['pid'] = Yii::$app->session->get('pid');
|
|
$where['id'] = $id;
|
|
$data['update_at'] = time();
|
|
$data['deleted'] = 1;
|
|
|
|
$model = new AcContact();
|
|
foreach ($data as $key => $val) {
|
|
$model->$key = $val;
|
|
}
|
|
|
|
$model->id = $id;
|
|
$res = $model->updateAll($data, $where);
|
|
|
|
$return = [];
|
|
$return['url'] = Url::toRoute('contact/list');
|
|
$return['timeout'] = 3; //3秒后自动跳转
|
|
$return['status'] = 0;
|
|
if ($res) {
|
|
$return['msg'] = '通讯录删除成功';
|
|
$return['errorcode'] = 200;
|
|
$return['data'] = $id;
|
|
} else {
|
|
$return['msg'] = '通讯录删除失败';
|
|
$return['errorcode'] = 0;
|
|
}
|
|
exit(json_encode($return, JSON_UNESCAPED_UNICODE));
|
|
}
|
|
|
|
public function actionAjax()
|
|
{
|
|
$get = Yii::$app->request->get();
|
|
$post = Yii::$app->request->post();
|
|
$id = (int)$get['id'];
|
|
$data = $where = [];
|
|
$where['pid'] = Yii::$app->session->get('pid');
|
|
$where['id'] = $id;
|
|
$data['update_at'] = time();
|
|
|
|
$model = new AcContact();
|
|
$res = $model->find()->where(['id' => $id])->one();
|
|
$return = [];
|
|
$return['timeout'] = 1; //3秒后自动跳转
|
|
$return['status'] = 0;
|
|
$return['ajax'] = 1;
|
|
if ($res) {
|
|
$res = $res->toArray();
|
|
} else {
|
|
$return['msg'] = '通讯录数据不存在';
|
|
$return['errorcode'] = 404;
|
|
exit(json_encode($return, JSON_UNESCAPED_UNICODE));
|
|
}
|
|
|
|
switch ($get['do']) {
|
|
case 'out':
|
|
$data['status'] = 0;
|
|
$model->id = $id;
|
|
$res = $model->updateAll($data, $where);
|
|
if ($res) {
|
|
$return['msg'] = '通讯录隐藏标记成功';
|
|
$return['errorcode'] = 200;
|
|
$return['data'] = ['css' => 'info'];
|
|
} else {
|
|
$return['msg'] = '通讯录隐藏标记失败';
|
|
$return['errorcode'] = 0;
|
|
}
|
|
break;
|
|
case 'in':
|
|
$data['status'] = 1;
|
|
$model->id = $id;
|
|
$res = $model->updateAll($data, $where);
|
|
if ($res) {
|
|
$return['msg'] = '通讯录显示标记成功';
|
|
$return['errorcode'] = 200;
|
|
$return['data'] = ['css' => 'default'];
|
|
} else {
|
|
$return['msg'] = '通讯录显示标记失败';
|
|
$return['errorcode'] = 0;
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
exit(json_encode($return, JSON_UNESCAPED_UNICODE));
|
|
}
|
|
}
|