148 lines
3.6 KiB
PHP
148 lines
3.6 KiB
PHP
<?php
|
|
declare (strict_types = 1);
|
|
|
|
namespace app\model;
|
|
|
|
use app\exception\ModelException;
|
|
use app\exception\ModelEmptyException;
|
|
|
|
/**
|
|
* @mixin \think\Model
|
|
*/
|
|
class KeywordQuery extends Model
|
|
{
|
|
|
|
public function getRanksAttr($value)
|
|
{
|
|
if(!empty($value)){
|
|
$value = json_decode($value,true);
|
|
}
|
|
return $value;
|
|
}
|
|
|
|
|
|
/**
|
|
* @throws ModelException
|
|
*/
|
|
public function countKeyword($where, $column='*'): array
|
|
{
|
|
try{
|
|
$res = $this->where($where)->count($column);
|
|
}catch(\Exception $e){
|
|
throw new ModelException($e->getMessage());
|
|
}
|
|
return dataReturn($this->sucCode,$this->getMsg,$res);
|
|
}
|
|
|
|
|
|
/**
|
|
* @param array $where
|
|
* @param int $limit
|
|
* @return array
|
|
* @throws ModelException
|
|
*/
|
|
public function getKeywordQueryList(array $where = [],int $limit = 10): array
|
|
{
|
|
try{
|
|
$res = $this->where($where)->paginate($limit);
|
|
}catch(\Exception $e){
|
|
throw new ModelException($e->getMessage());
|
|
}
|
|
return dataReturn($this->sucCode,$this->getMsg,$res);
|
|
|
|
}
|
|
|
|
/**
|
|
* @param array $where
|
|
* @return array
|
|
* @throws ModelEmptyException
|
|
* @throws ModelException
|
|
*/
|
|
public function getKeywordQuery(array $where = []): array
|
|
{
|
|
try{
|
|
$res = $this->where($where)->find();
|
|
if(empty($res)){
|
|
throw new ModelEmptyException();
|
|
}
|
|
}catch(ModelEmptyException $me){
|
|
throw new ModelEmptyException();
|
|
}catch(\Exception $e){
|
|
throw new ModelException($e->getMessage());
|
|
}
|
|
return dataReturn($this->sucCode,$this->getMsg,$res);
|
|
|
|
}
|
|
|
|
/**
|
|
* @param $param
|
|
* @return array
|
|
* @throws ModelException
|
|
*/
|
|
public function addKeywordQuery($param): array
|
|
{
|
|
try{
|
|
$res = self::create($param);
|
|
}catch(\Exception $e){
|
|
throw new ModelException($e->getMessage());
|
|
}
|
|
return dataReturn($this->sucCode,$this->addMsg,$res->id);
|
|
}
|
|
|
|
/**
|
|
* @param array $where
|
|
* @param array $param
|
|
* @return array
|
|
* @throws ModelException
|
|
*/
|
|
public function updateKeywordQuery(array $where = [],array $param = []): array
|
|
{
|
|
try{
|
|
$res = self::where($where)->update($param);
|
|
}catch(\Exception $e){
|
|
throw new ModelException($e->getMessage());
|
|
}
|
|
return dataReturn($this->sucCode,$this->updateMsg,$res);
|
|
}
|
|
|
|
/**
|
|
* @param $where
|
|
* @return array
|
|
* @throws ModelException
|
|
*/
|
|
public function softDelKeywordQuery($where): array
|
|
{
|
|
try{
|
|
$res = $this->where($where)->update($this->delData);
|
|
}catch(\Exception $e){
|
|
throw new ModelException($e->getMessage());
|
|
}
|
|
return dataReturn($this->sucCode,$this->delMsg,$res);
|
|
}
|
|
|
|
/**
|
|
* @param $where
|
|
* @return array
|
|
* @throws ModelException
|
|
*/
|
|
public function delKeywordQuery($where): array
|
|
{
|
|
try{
|
|
$res = $this->where($where)->delete();
|
|
}catch(\Exception $e){
|
|
throw new ModelException($e->getMessage());
|
|
}
|
|
return dataReturn($this->sucCode,$this->delMsg,$res);
|
|
}
|
|
|
|
public function getSourceEngine($value)
|
|
{
|
|
$map = [
|
|
'baidupc' => lang('百度PC'),
|
|
'baidumobile' => lang('百度移动'),
|
|
'haosoupc' => lang('360PC'),
|
|
'sougoumobile' => lang('搜狗移动')
|
|
];
|
|
return $map[$value];
|
|
}
|
|
} |