123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <?php
- namespace app\api\controller;
- use app\common\model\ArticleItem;
- use app\common\model\DatumIntro;
- use app\common\model\DatumUrl;
- use app\common\model\LabelMessage;
- use app\common\model\LevelOrder as LOM;
- use app\common\model\TopSearch;
- use app\common\model\User;
- use app\common\model\UserSearch;
- use app\common\model\VideoUrl;
- use app\common\service\CheckPower;
- use app\common\service\Elasticsearch;
- use app\common\service\OrderCallback;
- use app\common\service\UserSynth;
- use Firebase\JWT\JWT;
- use library\tools\Data;
- use think\cache\driver\Redis;
- use think\Db;
- use think\facade\Hook;
- use function AlibabaCloud\Client\value;
- class Qc extends Base {
- // 热搜设置
- public function topSearchSet()
- {
- // 视频
- $list = VideoUrl::column('id');
- array_walk($list,function ($v){
- // VideoUrl::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s')]);
- TopSearch::saveData($v,'video');
- });
- // 图文
- $list = ArticleItem::column('id');
- array_walk($list,function ($v){
- // ArticleItem::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s')]);
- TopSearch::saveData($v,'article');
- });
- // 资料
- $list = DatumUrl::column('id');
- array_walk($list,function ($v){
- // DatumUrl::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s')]);
- TopSearch::saveData($v,'datum');
- });
- // 活动
- $list = \app\common\model\Activity::column('id');
- array_walk($list,function ($v){
- //\app\common\model\Activity::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s')]);
- TopSearch::saveData($v,'activity');
- });
- // 需求
- $list = \app\common\model\PlatformDemand::column('id');
- array_walk($list,function ($v){
- // \app\common\model\PlatformDemand::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s')]);
- TopSearch::saveData($v,'demand');
- });
- // 新闻
- $list = \app\common\model\Press::column('id');
- array_walk($list,function ($v){
- // \app\common\model\Press::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s')]);
- TopSearch::saveData($v,'press');
- });
- // 问答
- $list = \app\common\model\UserForum::column('id');
- array_walk($list,function ($v){
- // \app\common\model\UserForum::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s')]);
- TopSearch::saveData($v,'forum');
- });
- // 招聘
- $list = \app\common\model\Recruit::column('id');
- array_walk($list,function ($v){
- // \app\common\model\Recruit::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s')]);
- TopSearch::saveData($v,'recruit');
- });
- // 供应商
- $list = \app\common\model\SupplierGoods::column('id');
- array_walk($list,function ($v){
- // \app\common\model\SupplierGoods::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s')]);
- TopSearch::saveData($v,'supplier_goods');
- });
- // 商品
- $list = \app\common\model\StoreGoods::column('id');
- array_walk($list,function ($v){
- // \app\common\model\StoreGoods::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s')]);
- TopSearch::saveData($v,'goods');
- });
- }
- // 短信发送测试
- public function phoneMessage()
- {
- $res = UserSynth::phoneMessageSend(18669648837,0,['ActivityName'=>'qc','time'=>date("Y-m-d H:i:s"),'adress'=>'山东临沂','url'=>'?a=1']);
- $this->success('ok',$res);
- }
- public function emailSend()
- {
- $res = UserSynth::emailSend('913856018@qq.com','aaaa');
- $this->success('ok',$res);
- }
- public function ticketSend()
- {
- $res = UserSynth::ticketSend(input('ticket_id'));
- $this->success('ok',$res);
- }
- public function sendEmail()
- {
- $this->success(send_email('913856018@qq.com','AAAAAAAAAAAAAAAAA'));
- }
- public function index_match()
- {
- $password = "123456879_/";
- //密码必须包含大小写字母/数字/符号任意两者组合
- $regStr = "/^(?![0-9]+$)(?![a-z]+$)(?![A-Z]+$)(?!([^(0-9a-zA-Z)]|[\(\)])+$)([^(0-9a-zA-Z)]|[\(\)]|[a-z]|[A-Z]|[0-9]){6,16}$/";
- var_dump(preg_match($regStr, $password));
- }
- }
|