You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong/app/common/model/store/Api.php

72 lines
2.2 KiB

<?php
// +----------------------------------------------------------------------
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
// +----------------------------------------------------------------------
// | Author: 萤火科技 <admin@yiovo.com>
// +----------------------------------------------------------------------
declare (strict_types=1);
namespace app\common\model\store;
use cores\BaseModel;
/**
* 商家后台API权限模型
* Class Api
* @package app\common\model\admin
*/
class Api extends BaseModel
{
// 定义表名
protected $name = 'store_api';
// 定义表主键
protected $pk = 'api_id';
/**
* 获取所有权限
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
protected static function getAll(): array
{
$data = static::withoutGlobalScope()
->order(['sort', 'create_time'])
->select();
return !$data->isEmpty() ? $data->toArray() : [];
}
/**
* 权限信息
* @param int|array $where
* @return static|array|null
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public static function detail($where)
{
$model = static::withoutGlobalScope();
is_array($where) ? $model->where($where) : $model->where('api_id', '=', $where);
return $model->find();
}
/**
* 获取指定ID集的url
* @param array $apiIds
* @return array
*/
public static function getApiUrls(array $apiIds): array
{
return static::withoutGlobalScope()
->where('api_id', 'in', $apiIds)
->order(['sort', 'create_time'])
->column('url');
}
}