cms-manage/app/model/Link.php

144 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 Link extends Model
{
/**
* @param array $where
* @param int $limit
* @return array
* @throws ModelException
*/
public function getLinkList(array $where = [],int $limit = 10,$field='*',$order = 'sort asc'): array
{
try{
$res = $this->field($field)->where($where)->order($order)->paginate($limit);
}catch(\Exception $e){
throw new ModelException($e->getMessage());
}
return dataReturn($this->sucCode,$this->getMsg,$res);
}
/**
* 所有链接
* @throws ModelException
*/
public function getAllLink(array $where = [], $field='*',$limit= null,$order = 'sort asc'): array
{
try{
$query = $this->field($field)->where($where);
if($limit){
$query = $query->limit($limit);
}
$res = $query->order($order)->select();
}catch(\Exception $e){
throw new ModelException($e->getMessage());
}
return dataReturn($this->sucCode,$this->getMsg,$res);
}
/**
* @throws ModelException
*/
public function addAllLink($param): array
{
try{
$res = self::saveAll($param);
}catch(\Exception $e){
throw new ModelException($e->getMessage());
}
return dataReturn($this->sucCode,$this->addMsg,$res);
}
/**
* @param array $where
* @return array
* @throws ModelEmptyException
* @throws ModelException
*/
public function getLink(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 addLink($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 updateLink(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 softDelLink($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 delLink($where): array
{
try{
$res = $this->where($where)->delete();
}catch(\Exception $e){
throw new ModelException($e->getMessage());
}
return dataReturn($this->sucCode,$this->delMsg,$res);
}
}