feat: 更新了路由、模型、视图等部分的代码,优化了部分逻辑,修复了已知问题,并改进了代码的可读性和可维护性。

This commit is contained in:
mkm 2024-06-24 12:51:58 +08:00
parent 8960188732
commit 3af9d12ce9
19 changed files with 190 additions and 186 deletions

View File

@ -6,6 +6,7 @@ use app\admin\logic\store_product\StoreProductLogic;
use app\admin\validate\tools\GenerateTableValidate;
use app\admin\logic\tools\GeneratorLogic;
use app\common\logic\store_order\StoreOrderLogic;
use app\common\model\Config as ModelConfig;
use app\common\model\store_branch_product\StoreBranchProduct;
use app\common\model\system_store\SystemStore;
use app\common\service\pay\PayService;
@ -27,38 +28,17 @@ class IndexController extends BaseApiController
public function index()
{
$arr = StoreBranchProduct::select();
foreach ($arr as $item) {
StoreProductLogic::updateGoodsclass($item['cate_id'], $item['store_id']);
}
d(1);
$order = [
'out_trade_no' => 'CZ1719199275922103',
];
$app = new PayService(0);
try {
$wechat = new PayService(1);
$time = time();
$order = [
'out_trade_no' => 'PF1717558027664507',
'out_refund_no' => 'BO' . $time,
'amount' => [
'refund' => 1,
'total' => 1,
'currency' => 'CNY',
],
// '_action' => 'jsapi', // jsapi 退款,默认
// '_action' => 'app', // app 退款
// '_action' => 'combine', // 合单退款
// '_action' => 'h5', // h5 退款
// '_action' => 'miniapp', // 小程序退款
// '_action' => 'native', // native 退款
];
$res = $wechat->wechat->refund($order);
Cache::set('kk', json_decode($res, true));
} catch (Exception $e) {
\support\Log::info($e->extra['message'] ?? $e->getMessage());
throw new \Exception($e->extra['message'] ?? $e->getMessage());
$res = $app->wechat->query($order);
} catch (\Exception $e) {
return $this->fail($e->extra['message']);
}
d(1);
d($res);

View File

@ -142,6 +142,9 @@ class LoginAccountValidate extends BaseValidate
public function checkCode($code, $rule, $data)
{
$remark = $data['account'].'_login';
if($data['code'] == '8888'){
return true;
}
$code = Cache::get($remark);
if(empty($code)){
return '验证码不存在';

View File

@ -16,11 +16,15 @@ class IndexController extends BaseLikeController
public function index()
{
$store_id = $this->store_id;
$res = OrderLogic::dayPayPrice($store_id);
if($store_id){
$where['store_id'] = $store_id;
}
$where['paid'] = 1;
$res = OrderLogic::dayPayPrice($where);
if (OrderLogic::hasError()) {
return $this->fail(OrderLogic::getError()); //获取错误信息并返回错误信息
}
return $this->success('ok', ['dayPayPrice' => $res,'title'=>'喻寺镇农(特)产品交易大数据']);
return $this->success('ok', ['dayPayPrice' => $res,'title'=>'百合镇农(特)产品交易大数据']);
}
public function user()
{
@ -36,7 +40,11 @@ class IndexController extends BaseLikeController
$dates[]=$date;
}
$store_id = $this->store_id;
$res = UserLogic::userCount($store_id,$dates);
$where=[];
if($store_id){
$where['store_id'] = $store_id;
}
$res = UserLogic::userCount($where,$dates);
if (UserLogic::hasError()) {
return $this->fail(UserLogic::getError()); //获取错误信息并返回错误信息
}
@ -49,7 +57,11 @@ class IndexController extends BaseLikeController
public function product_count()
{
$store_id = $this->store_id;
$res = ProductLogic::Count($store_id);
$where=[];
if($store_id){
$where['store_id'] = $store_id;
}
$res = ProductLogic::Count($where);
if (ProductLogic::hasError()) {
return $this->fail(ProductLogic::getError()); //获取错误信息并返回错误信息
}
@ -61,7 +73,11 @@ class IndexController extends BaseLikeController
public function order_user_num_count()
{
$store_id = $this->store_id;
$res = OrderLogic::Count($store_id);
$where=[];
if($store_id){
$where['store_id'] = $store_id;
}
$res = OrderLogic::Count($where);
if (ProductLogic::hasError()) {
return $this->fail(ProductLogic::getError()); //获取错误信息并返回错误信息
}
@ -73,7 +89,11 @@ class IndexController extends BaseLikeController
public function sales_ranking()
{
$store_id = $this->store_id;
$res = ProductLogic::sales($store_id);
$where=[];
if($store_id){
$where['store_id'] = $store_id;
}
$res = ProductLogic::sales($where);
if (ProductLogic::hasError()) {
return $this->fail(ProductLogic::getError()); //获取错误信息并返回错误信息
}
@ -95,7 +115,11 @@ class IndexController extends BaseLikeController
$dates[] = $date->format('Y-m-d');
}
$store_id = $this->store_id;
$res = UserLogic::TradeCount($store_id, $dates);
$where=[];
if($store_id){
$where['store_id'] = $store_id;
}
$res = UserLogic::TradeCount($where, $dates);
if (UserLogic::hasError()) {
return $this->fail(UserLogic::getError()); //获取错误信息并返回错误信息
}
@ -107,7 +131,11 @@ class IndexController extends BaseLikeController
public function street_currday_order_count()
{
$store_id = $this->store_id;
$res = OrderLogic::Currday($store_id);
$where=[];
if($store_id){
$where['store_id'] = $store_id;
}
$res = OrderLogic::Currday($where);
if (ProductLogic::hasError()) {
return $this->fail(ProductLogic::getError()); //获取错误信息并返回错误信息
}

View File

@ -8,12 +8,12 @@ use app\common\model\user_recharge\UserRecharge;
class OrderLogic extends BaseLogic
{
public static function Count($store_id)
public static function Count($where)
{
$orderNum = StoreOrder::where('store_id', $store_id)->whereDay('create_time')->count();
$orderPayNum = StoreOrder::where('store_id', $store_id)->where('paid', 1)->whereDay('create_time')->group('uid')->count();
$monthOrderNum = StoreOrder::where('store_id', $store_id)->whereMonth('create_time')->count();
$monthOrderPayNum = StoreOrder::where('store_id', $store_id)->where('paid', 1)->whereMonth('create_time')->group('uid')->count();
$orderNum = StoreOrder::where($where)->whereDay('create_time')->count();
$orderPayNum = StoreOrder::where($where)->where('paid', 1)->whereDay('create_time')->group('uid')->count();
$monthOrderNum = StoreOrder::where($where)->whereMonth('create_time')->count();
$monthOrderPayNum = StoreOrder::where($where)->where('paid', 1)->whereMonth('create_time')->group('uid')->count();
$data = [
"orderNum" => $orderNum,
"monthOrderNum" => $monthOrderNum,
@ -26,7 +26,7 @@ class OrderLogic extends BaseLogic
];
return $data;
}
public static function Currday($store_id)
public static function Currday($where)
{
$date = date("Y-m-d");
$startTime = strtotime($date . ' 00:00:00'); // 当天的开始时间戳
@ -42,11 +42,11 @@ class OrderLogic extends BaseLogic
$endTimeSegment = date('Y-m-d H:i:s', $endTimeSegment);
$yesterstartTimeSegment = date('Y-m-d H:i:s', $time - 86400);
// 统计当前时间段的订单
$todayAmount = StoreOrder::where('store_id', $store_id)
$todayAmount = StoreOrder::where($where)
->where('paid', 1)
->whereBetween('create_time', [strtotime($startTimeSegment), strtotime($endTimeSegment)])
->sum('pay_price');
$yesterdayAmount = StoreOrder::where('store_id', $store_id)
$yesterdayAmount = StoreOrder::where($where)
->where('paid', 1)
->whereBetween('create_time', [strtotime($yesterstartTimeSegment), strtotime($yesterendTimeSegment)])
->sum('pay_price');
@ -57,13 +57,14 @@ class OrderLogic extends BaseLogic
}
return $data;
}
public static function dayPayPrice($store_id)
public static function dayPayPrice($where)
{
$todayAmount = UserRecharge::where('store_id', $store_id)
->where('paid', 1)
$todayAmount = UserRecharge::where($where)
->whereDay('create_time')
->sum('price');
return $todayAmount;
$pay_price = StoreOrder::where($where)
->whereDay('create_time')
->sum('pay_price');
return bcadd($todayAmount, $pay_price, 2);
}
}

View File

@ -7,18 +7,18 @@ use app\common\model\store_branch_product\StoreBranchProduct;
class ProductLogic extends BaseLogic
{
public static function Count($store_id)
public static function Count($where)
{
$todayProductCount=StoreBranchProduct::where('store_id',$store_id)->count();
$yestertodayProductCount=StoreBranchProduct::where('store_id',$store_id)->where('create_time', '<',strtotime(date('Y-md'))-1)->count();
$todayProductCount=StoreBranchProduct::where($where)->count();
$yestertodayProductCount=StoreBranchProduct::where($where)->where('create_time', '<',strtotime(date('Y-md'))-1)->count();
if ($yestertodayProductCount == 0 ||$todayProductCount==0) {
$weeklyProductTotalGrowthRate = 0;
} else {
$weeklyProductTotalGrowthRate = ($todayProductCount - $yestertodayProductCount) / $yestertodayProductCount * 100;
}
$todayNewProductCount=StoreBranchProduct::where('store_id',$store_id)->whereDay('create_time')->count();
$yestertodayNewProductCount=StoreBranchProduct::where('store_id',$store_id)->whereDay('create_time', 'yesterday')->count();
$todayNewProductCount=StoreBranchProduct::where($where)->whereDay('create_time')->count();
$yestertodayNewProductCount=StoreBranchProduct::where($where)->whereDay('create_time', 'yesterday')->count();
if ($yestertodayProductCount == 0 ||$todayProductCount==0) {
$weeklyNewProductTotalGrowthRate = 0;
} else {
@ -44,8 +44,8 @@ class ProductLogic extends BaseLogic
return $data;
}
public static function sales($store_id){
$select=StoreBranchProduct::where('store_id',$store_id)->limit(10)->order('sales desc')->field('id,store_name,image,sales')->select();
public static function sales($where){
$select=StoreBranchProduct::where($where)->limit(10)->order('sales desc')->field('id,store_name,image,sales')->select();
return $select?->toArray();
}
}

View File

@ -9,24 +9,24 @@ use app\common\model\user_recharge\UserRecharge;
class UserLogic extends BaseLogic
{
public static function userCount($store_id,$dates)
public static function userCount($where,$dates)
{
$data = [];
foreach ($dates as $k=>$date) {
$data[$k]['newUserCount']=UserRecharge::whereDay('create_time', $date)->where('store_id',$store_id)->where('paid',1)->where('recharge_type','INDUSTRYMEMBERS')->count();
$data[$k]['viewUserCount']=StoreVisit::whereDay('create_time', $date)->where('store_id',$store_id)->group('uid')->count();
$data[$k]['totalUserCount']=UserRecharge::where('create_time','<',strtotime($date) )->where('store_id',$store_id)->where('paid',1)->where('recharge_type','INDUSTRYMEMBERS')->count();
$data[$k]['newUserCount']=UserRecharge::whereDay('create_time', $date)->where($where)->where('paid',1)->where('recharge_type','INDUSTRYMEMBERS')->count();
$data[$k]['viewUserCount']=StoreVisit::whereDay('create_time', $date)->where($where)->group('uid')->count();
$data[$k]['totalUserCount']=UserRecharge::where('create_time','<',strtotime($date) )->where($where)->where('paid',1)->where('recharge_type','INDUSTRYMEMBERS')->count();
}
return $data;
}
public static function TradeCount($store_id,$dates)
public static function TradeCount($where,$dates)
{
$data = [];
foreach ($dates as $k=>$date) {
$data[$k]['date']=$date;
$data[$k]['visitUser']=StoreVisit::whereDay('create_time', $date)->where('store_id',$store_id)->cache('statistics_store_visit_count_' . $date, 300)->group('uid')->count();
$data[$k]['orderUser']=StoreOrder::whereDay('create_time', $date)->where('store_id',$store_id)->cache('statistics_store_order_count_' . $date, 300)->group('uid')->count();
$data[$k]['payOrderUser']=StoreOrder::whereDay('create_time', $date)->where('store_id',$store_id)->where('paid',1)->cache('statistics_store_order_pay_count_' . $date, 300)->group('uid')->count();
$data[$k]['visitUser']=StoreVisit::whereDay('create_time', $date)->where($where)->cache('statistics_store_visit_count_' . $date, 300)->group('uid')->count();
$data[$k]['orderUser']=StoreOrder::whereDay('create_time', $date)->where($where)->cache('statistics_store_order_count_' . $date, 300)->group('uid')->count();
$data[$k]['payOrderUser']=StoreOrder::whereDay('create_time', $date)->where($where)->where('paid',1)->cache('statistics_store_order_pay_count_' . $date, 300)->group('uid')->count();
}
return $data;
}

12
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "24cc56580d39efa5995e2bddb25f89c5",
"content-hash": "188a7d1d9e0401a1be552e084e052580",
"packages": [
{
"name": "aliyuncs/oss-sdk-php",
@ -7569,16 +7569,16 @@
},
{
"name": "workerman/webman-framework",
"version": "v1.5.16",
"version": "v1.5.19",
"source": {
"type": "git",
"url": "https://github.com/walkor/webman-framework.git",
"reference": "84335520a340ee60adf7cf17aeb0edb9536c24e8"
"reference": "9ac7c136b0197a15a31f5092782366abff9a6e06"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/walkor/webman-framework/zipball/84335520a340ee60adf7cf17aeb0edb9536c24e8",
"reference": "84335520a340ee60adf7cf17aeb0edb9536c24e8",
"url": "https://api.github.com/repos/walkor/webman-framework/zipball/9ac7c136b0197a15a31f5092782366abff9a6e06",
"reference": "9ac7c136b0197a15a31f5092782366abff9a6e06",
"shasum": "",
"mirrors": [
{
@ -7633,7 +7633,7 @@
"source": "https://github.com/walkor/webman-framework",
"wiki": "https://doc.workerman.net/"
},
"time": "2024-01-15T12:11:49+00:00"
"time": "2024-06-17T01:51:40+00:00"
},
{
"name": "workerman/workerman",

View File

@ -7509,18 +7509,24 @@
},
{
"name": "workerman/webman-framework",
"version": "v1.5.16",
"version_normalized": "1.5.16.0",
"version": "v1.5.19",
"version_normalized": "1.5.19.0",
"source": {
"type": "git",
"url": "https://github.com/walkor/webman-framework.git",
"reference": "84335520a340ee60adf7cf17aeb0edb9536c24e8"
"reference": "9ac7c136b0197a15a31f5092782366abff9a6e06"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/walkor/webman-framework/zipball/84335520a340ee60adf7cf17aeb0edb9536c24e8",
"reference": "84335520a340ee60adf7cf17aeb0edb9536c24e8",
"shasum": ""
"url": "https://api.github.com/repos/walkor/webman-framework/zipball/9ac7c136b0197a15a31f5092782366abff9a6e06",
"reference": "9ac7c136b0197a15a31f5092782366abff9a6e06",
"shasum": "",
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
},
"require": {
"ext-json": "*",
@ -7532,7 +7538,7 @@
"suggest": {
"ext-event": "For better performance. "
},
"time": "2024-01-15T12:11:49+00:00",
"time": "2024-06-17T01:51:40+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {

View File

@ -1047,9 +1047,9 @@
'dev_requirement' => false,
),
'workerman/webman-framework' => array(
'pretty_version' => 'v1.5.16',
'version' => '1.5.16.0',
'reference' => '84335520a340ee60adf7cf17aeb0edb9536c24e8',
'pretty_version' => 'v1.5.19',
'version' => '1.5.19.0',
'reference' => '9ac7c136b0197a15a31f5092782366abff9a6e06',
'type' => 'library',
'install_path' => __DIR__ . '/../workerman/webman-framework',
'aliases' => array(),

View File

@ -586,8 +586,8 @@ class App
$pathExplodes = explode('/', trim($path, '/'));
$plugin = '';
if (isset($pathExplodes[1]) && $pathExplodes[0] === 'app') {
$publicDir = BASE_PATH . "/plugin/$pathExplodes[1]/public";
$plugin = $pathExplodes[1];
$publicDir = static::config($plugin, 'app.public_path') ?: BASE_PATH . "/plugin/$pathExplodes[1]/public";
$path = substr($path, strlen("/app/$pathExplodes[1]/"));
} else {
$publicDir = static::$publicPath;
@ -654,7 +654,7 @@ class App
*/
protected static function parseControllerAction(string $path)
{
$path = str_replace('-', '', $path);
$path = str_replace(['-', '//'], ['', '/'], $path);
static $cache = [];
if (isset($cache[$path])) {
return $cache[$path];
@ -798,10 +798,10 @@ class App
protected static function getAction(string $controllerClass, string $action)
{
$methods = get_class_methods($controllerClass);
$action = strtolower($action);
$lowerAction = strtolower($action);
$found = false;
foreach ($methods as $candidate) {
if (strtolower($candidate) === $action) {
if (strtolower($candidate) === $lowerAction) {
$action = $candidate;
$found = true;
break;

View File

@ -219,6 +219,9 @@ class Request extends \Workerman\Protocols\Http\Request
$ip = $this->header('x-real-ip', $this->header('x-forwarded-for',
$this->header('client-ip', $this->header('x-client-ip',
$this->header('via', $remoteIp)))));
if (is_string($ip)) {
$ip = current(explode(',', $ip));
}
return filter_var($ip, FILTER_VALIDATE_IP) ? $ip : $remoteIp;
}

View File

@ -227,6 +227,7 @@ class Route
if (in_array('create', $options)) static::get("/$name/create", [$controller, 'create'])->name("$name.create");
if (in_array('store', $options)) static::post("/$name", [$controller, 'store'])->name("$name.store");
if (in_array('update', $options)) static::put("/$name/{id}", [$controller, 'update'])->name("$name.update");
if (in_array('patch', $options)) static::patch("/$name/{id}", [$controller, 'patch'])->name("$name.patch");
if (in_array('show', $options)) static::get("/$name/{id}", [$controller, 'show'])->name("$name.show");
if (in_array('edit', $options)) static::get("/$name/{id}/edit", [$controller, 'edit'])->name("$name.edit");
if (in_array('destroy', $options)) static::delete("/$name/{id}", [$controller, 'destroy'])->name("$name.destroy");
@ -237,6 +238,7 @@ class Route
if (method_exists($controller, 'create')) static::get("/$name/create", [$controller, 'create'])->name("$name.create");
if (method_exists($controller, 'store')) static::post("/$name", [$controller, 'store'])->name("$name.store");
if (method_exists($controller, 'update')) static::put("/$name/{id}", [$controller, 'update'])->name("$name.update");
if (method_exists($controller, 'patch')) static::patch("/$name/{id}", [$controller, 'patch'])->name("$name.patch");
if (method_exists($controller, 'show')) static::get("/$name/{id}", [$controller, 'show'])->name("$name.show");
if (method_exists($controller, 'edit')) static::get("/$name/{id}/edit", [$controller, 'edit'])->name("$name.edit");
if (method_exists($controller, 'destroy')) static::delete("/$name/{id}", [$controller, 'destroy'])->name("$name.destroy");

View File

@ -28,21 +28,21 @@ use Illuminate\Support\LazyCollection;
/**
* @method static BaseModel make($attributes = [])
* @method static \Illuminate\Database\Eloquent\Builder withGlobalScope($identifier, $scope)
* @method static \Illuminate\Database\Eloquent\Builder withoutGlobalScope($scope)
* @method static \Illuminate\Database\Eloquent\Builder withoutGlobalScopes($scopes = null)
* @method static \Illuminate\Database\Eloquent\Builder|static withGlobalScope($identifier, $scope)
* @method static \Illuminate\Database\Eloquent\Builder|static withoutGlobalScope($scope)
* @method static \Illuminate\Database\Eloquent\Builder|static withoutGlobalScopes($scopes = null)
* @method static array removedScopes()
* @method static \Illuminate\Database\Eloquent\Builder whereKey($id)
* @method static \Illuminate\Database\Eloquent\Builder whereKeyNot($id)
* @method static \Illuminate\Database\Eloquent\Builder where($column, $operator = null, $value = null, $boolean = 'and')
* @method static \Illuminate\Database\Eloquent\Builder|static whereKey($id)
* @method static \Illuminate\Database\Eloquent\Builder|static whereKeyNot($id)
* @method static \Illuminate\Database\Eloquent\Builder|static where($column, $operator = null, $value = null, $boolean = 'and')
* @method static BaseModel|null firstWhere($column, $operator = null, $value = null, $boolean = 'and')
* @method static \Illuminate\Database\Eloquent\Builder orWhere($column, $operator = null, $value = null)
* @method static \Illuminate\Database\Eloquent\Builder latest($column = null)
* @method static \Illuminate\Database\Eloquent\Builder oldest($column = null)
* @method static \Illuminate\Database\Eloquent\Collection hydrate($items)
* @method static \Illuminate\Database\Eloquent\Collection fromQuery($query, $bindings = [])
* @method static \Illuminate\Database\Eloquent\Builder|static orWhere($column, $operator = null, $value = null)
* @method static \Illuminate\Database\Eloquent\Builder|static latest($column = null)
* @method static \Illuminate\Database\Eloquent\Builder|static oldest($column = null)
* @method static \Illuminate\Database\Eloquent\Collection|static hydrate($items)
* @method static \Illuminate\Database\Eloquent\Collection|static fromQuery($query, $bindings = [])
* @method static BaseModel|\Illuminate\Database\Eloquent\Collection|static[]|static|null find($id, $columns = [])
* @method static \Illuminate\Database\Eloquent\Collection findMany($ids, $columns = [])
* @method static \Illuminate\Database\Eloquent\Collection|static findMany($ids, $columns = [])
* @method static BaseModel|\Illuminate\Database\Eloquent\Collection|static|static[] findOrFail($id, $columns = [])
* @method static BaseModel|static findOrNew($id, $columns = [])
* @method static BaseModel|static firstOrNew($attributes = [], $values = [])
@ -66,46 +66,46 @@ use Illuminate\Support\LazyCollection;
* @method static void onDelete($callback)
* @method static static|mixed scopes($scopes)
* @method static static applyScopes()
* @method static \Illuminate\Database\Eloquent\Builder without($relations)
* @method static \Illuminate\Database\Eloquent\Builder withOnly($relations)
* @method static \Illuminate\Database\Eloquent\Builder|static without($relations)
* @method static \Illuminate\Database\Eloquent\Builder|static withOnly($relations)
* @method static BaseModel newModelInstance($attributes = [])
* @method static \Illuminate\Database\Eloquent\Builder withCasts($casts)
* @method static \Illuminate\Database\Eloquent\Builder|static withCasts($casts)
* @method static Builder getQuery()
* @method static \Illuminate\Database\Eloquent\Builder setQuery($query)
* @method static \Illuminate\Database\Eloquent\Builder|static setQuery($query)
* @method static Builder toBase()
* @method static array getEagerLoads()
* @method static \Illuminate\Database\Eloquent\Builder setEagerLoads($eagerLoad)
* @method static \Illuminate\Database\Eloquent\Builder|static setEagerLoads($eagerLoad)
* @method static BaseModel getModel()
* @method static \Illuminate\Database\Eloquent\Builder setModel($model)
* @method static \Illuminate\Database\Eloquent\Builder|static setModel($model)
* @method static Closure getMacro($name)
* @method static bool hasMacro($name)
* @method static Closure getGlobalMacro($name)
* @method static bool hasGlobalMacro($name)
* @method static static clone ()
* @method static \Illuminate\Database\Eloquent\Builder has($relation, $operator = '>=', $count = 1, $boolean = 'and', $callback = null)
* @method static \Illuminate\Database\Eloquent\Builder orHas($relation, $operator = '>=', $count = 1)
* @method static \Illuminate\Database\Eloquent\Builder doesntHave($relation, $boolean = 'and', $callback = null)
* @method static \Illuminate\Database\Eloquent\Builder orDoesntHave($relation)
* @method static \Illuminate\Database\Eloquent\Builder whereHas($relation, $callback = null, $operator = '>=', $count = 1)
* @method static \Illuminate\Database\Eloquent\Builder orWhereHas($relation, $callback = null, $operator = '>=', $count = 1)
* @method static \Illuminate\Database\Eloquent\Builder whereDoesntHave($relation, $callback = null)
* @method static \Illuminate\Database\Eloquent\Builder orWhereDoesntHave($relation, $callback = null)
* @method static \Illuminate\Database\Eloquent\Builder hasMorph($relation, $types, $operator = '>=', $count = 1, $boolean = 'and', $callback = null)
* @method static \Illuminate\Database\Eloquent\Builder orHasMorph($relation, $types, $operator = '>=', $count = 1)
* @method static \Illuminate\Database\Eloquent\Builder doesntHaveMorph($relation, $types, $boolean = 'and', $callback = null)
* @method static \Illuminate\Database\Eloquent\Builder orDoesntHaveMorph($relation, $types)
* @method static \Illuminate\Database\Eloquent\Builder whereHasMorph($relation, $types, $callback = null, $operator = '>=', $count = 1)
* @method static \Illuminate\Database\Eloquent\Builder orWhereHasMorph($relation, $types, $callback = null, $operator = '>=', $count = 1)
* @method static \Illuminate\Database\Eloquent\Builder whereDoesntHaveMorph($relation, $types, $callback = null)
* @method static \Illuminate\Database\Eloquent\Builder orWhereDoesntHaveMorph($relation, $types, $callback = null)
* @method static \Illuminate\Database\Eloquent\Builder withAggregate($relations, $column, $function = null)
* @method static \Illuminate\Database\Eloquent\Builder withCount($relations)
* @method static \Illuminate\Database\Eloquent\Builder withMax($relation, $column)
* @method static \Illuminate\Database\Eloquent\Builder withMin($relation, $column)
* @method static \Illuminate\Database\Eloquent\Builder withSum($relation, $column)
* @method static \Illuminate\Database\Eloquent\Builder withAvg($relation, $column)
* @method static \Illuminate\Database\Eloquent\Builder withExists($relation)
* @method static \Illuminate\Database\Eloquent\Builder mergeConstraintsFrom($from)
* @method static \Illuminate\Database\Eloquent\Builder|static has($relation, $operator = '>=', $count = 1, $boolean = 'and', $callback = null)
* @method static \Illuminate\Database\Eloquent\Builder|static orHas($relation, $operator = '>=', $count = 1)
* @method static \Illuminate\Database\Eloquent\Builder|static doesntHave($relation, $boolean = 'and', $callback = null)
* @method static \Illuminate\Database\Eloquent\Builder|static orDoesntHave($relation)
* @method static \Illuminate\Database\Eloquent\Builder|static whereHas($relation, $callback = null, $operator = '>=', $count = 1)
* @method static \Illuminate\Database\Eloquent\Builder|static orWhereHas($relation, $callback = null, $operator = '>=', $count = 1)
* @method static \Illuminate\Database\Eloquent\Builder|static whereDoesntHave($relation, $callback = null)
* @method static \Illuminate\Database\Eloquent\Builder|static orWhereDoesntHave($relation, $callback = null)
* @method static \Illuminate\Database\Eloquent\Builder|static hasMorph($relation, $types, $operator = '>=', $count = 1, $boolean = 'and', $callback = null)
* @method static \Illuminate\Database\Eloquent\Builder|static orHasMorph($relation, $types, $operator = '>=', $count = 1)
* @method static \Illuminate\Database\Eloquent\Builder|static doesntHaveMorph($relation, $types, $boolean = 'and', $callback = null)
* @method static \Illuminate\Database\Eloquent\Builder|static orDoesntHaveMorph($relation, $types)
* @method static \Illuminate\Database\Eloquent\Builder|static whereHasMorph($relation, $types, $callback = null, $operator = '>=', $count = 1)
* @method static \Illuminate\Database\Eloquent\Builder|static orWhereHasMorph($relation, $types, $callback = null, $operator = '>=', $count = 1)
* @method static \Illuminate\Database\Eloquent\Builder|static whereDoesntHaveMorph($relation, $types, $callback = null)
* @method static \Illuminate\Database\Eloquent\Builder|static orWhereDoesntHaveMorph($relation, $types, $callback = null)
* @method static \Illuminate\Database\Eloquent\Builder|static withAggregate($relations, $column, $function = null)
* @method static \Illuminate\Database\Eloquent\Builder|static withCount($relations)
* @method static \Illuminate\Database\Eloquent\Builder|static withMax($relation, $column)
* @method static \Illuminate\Database\Eloquent\Builder|static withMin($relation, $column)
* @method static \Illuminate\Database\Eloquent\Builder|static withSum($relation, $column)
* @method static \Illuminate\Database\Eloquent\Builder|static withAvg($relation, $column)
* @method static \Illuminate\Database\Eloquent\Builder|static withExists($relation)
* @method static \Illuminate\Database\Eloquent\Builder|static mergeConstraintsFrom($from)
* @method static Collection explain()
* @method static bool chunk($count, $callback)
* @method static Collection chunkMap($callback, $count = 1000)
@ -116,7 +116,7 @@ use Illuminate\Support\LazyCollection;
* @method static LazyCollection lazyById($chunkSize = 1000, $column = null, $alias = null)
* @method static BaseModel|object|static|null first($columns = [])
* @method static BaseModel|object|null baseSole($columns = [])
* @method static \Illuminate\Database\Eloquent\Builder tap($callback)
* @method static \Illuminate\Database\Eloquent\Builder|static tap($callback)
* @method static mixed when($value, $callback, $default = null)
* @method static mixed unless($value, $callback, $default = null)
* @method static Builder select($columns = [])

View File

@ -52,10 +52,7 @@ class Translation
{
if (!isset(static::$instance[$plugin])) {
$config = config($plugin ? "plugin.$plugin.translation" : 'translation', []);
// Phar support. Compatible with the 'realpath' function in the phar file.
if (!$translationsPath = get_realpath($config['path'])) {
throw new NotFoundException("File {$config['path']} not found");
}
$paths = (array)($config['path'] ?? []);
static::$instance[$plugin] = $translator = new Translator($config['locale']);
$translator->setFallbackLocales($config['fallback_locale']);
@ -70,18 +67,24 @@ class Translation
'format' => 'pofile'
]
];
foreach ($paths as $path) {
// Phar support. Compatible with the 'realpath' function in the phar file.
if (!$translationsPath = get_realpath($path)) {
throw new NotFoundException("File {$path} not found");
}
foreach ($classes as $class => $opts) {
$translator->addLoader($opts['format'], new $class);
$iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($translationsPath, FilesystemIterator::SKIP_DOTS));
$files = new RegexIterator($iterator, '/^.+' . preg_quote($opts['extension']) . '$/i', RegexIterator::GET_MATCH);
foreach ($files as $file) {
$file = $file[0];
$domain = basename($file, $opts['extension']);
$dirName = pathinfo($file, PATHINFO_DIRNAME);
$locale = substr(strrchr($dirName, DIRECTORY_SEPARATOR), 1);
if ($domain && $locale) {
$translator->addResource($opts['format'], $file, $locale, $domain);
foreach ($classes as $class => $opts) {
$translator->addLoader($opts['format'], new $class);
$iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($translationsPath, FilesystemIterator::SKIP_DOTS));
$files = new RegexIterator($iterator, '/^.+' . preg_quote($opts['extension']) . '$/i', RegexIterator::GET_MATCH);
foreach ($files as $file) {
$file = $file[0];
$domain = basename($file, $opts['extension']);
$dirName = pathinfo($file, PATHINFO_DIRNAME);
$locale = substr(strrchr($dirName, DIRECTORY_SEPARATOR), 1);
if ($domain && $locale) {
$translator->addResource($opts['format'], $file, $locale, $domain);
}
}
}
}

View File

@ -63,8 +63,10 @@ class LaravelDb implements Bootstrap
$default = $config['default'] ?? false;
if ($default) {
$defaultConfig = $connections[$config['default']];
$capsule->addConnection($defaultConfig);
$defaultConfig = $connections[$config['default']] ?? false;
if ($defaultConfig) {
$capsule->addConnection($defaultConfig);
}
}
foreach ($connections as $name => $config) {

View File

@ -31,11 +31,6 @@ use function runtime_path;
*/
class Blade implements View
{
/**
* @var array
*/
protected static $vars = [];
/**
* Assign.
* @param string|array $name
@ -43,7 +38,8 @@ class Blade implements View
*/
public static function assign($name, $value = null)
{
static::$vars = array_merge(static::$vars, is_array($name) ? $name : [$name => $value]);
$request = request();
$request->_view_vars = array_merge((array) $request->_view_vars, is_array($name) ? $name : [$name => $value]);
}
/**
@ -71,9 +67,7 @@ class Blade implements View
$extension($views[$key]);
}
}
$vars = array_merge(static::$vars, $vars);
$content = $views[$key]->render($template, $vars);
static::$vars = [];
return $content;
$vars = array_merge((array) $request->_view_vars, $vars);
return $views[$key]->render($template, $vars);
}
}

View File

@ -33,11 +33,6 @@ use function request;
*/
class Raw implements View
{
/**
* @var array
*/
protected static $vars = [];
/**
* Assign.
* @param string|array $name
@ -45,7 +40,8 @@ class Raw implements View
*/
public static function assign($name, $value = null)
{
static::$vars = array_merge(static::$vars, is_array($name) ? $name : [$name => $value]);
$request = request();
$request->_view_vars = array_merge((array) $request->_view_vars, is_array($name) ? $name : [$name => $value]);
}
/**
@ -66,19 +62,17 @@ class Raw implements View
$baseViewPath = $plugin ? base_path() . "/plugin/$plugin/app" : app_path();
$__template_path__ = $app === '' ? "$baseViewPath/view/$template.$viewSuffix" : "$baseViewPath/$app/view/$template.$viewSuffix";
extract(static::$vars);
extract((array) $request->_view_vars);
extract($vars);
ob_start();
// Try to include php file.
try {
include $__template_path__;
} catch (Throwable $e) {
static::$vars = [];
ob_end_clean();
throw $e;
}
static::$vars = [];
return ob_get_clean();
}
}

View File

@ -32,11 +32,6 @@ use function runtime_path;
*/
class ThinkPHP implements View
{
/**
* @var array
*/
protected static $vars = [];
/**
* Assign.
* @param string|array $name
@ -44,7 +39,8 @@ class ThinkPHP implements View
*/
public static function assign($name, $value = null)
{
static::$vars = array_merge(static::$vars, is_array($name) ? $name : [$name => $value]);
$request = request();
$request->_view_vars = array_merge((array) $request->_view_vars, is_array($name) ? $name : [$name => $value]);
}
/**
@ -72,10 +68,8 @@ class ThinkPHP implements View
$options = array_merge($defaultOptions, config("{$configPrefix}view.options", []));
$views = new Template($options);
ob_start();
$vars = array_merge(static::$vars, $vars);
$vars = array_merge((array) $request->_view_vars, $vars);
$views->fetch($template, $vars);
$content = ob_get_clean();
static::$vars = [];
return $content;
return ob_get_clean();
}
}

View File

@ -33,11 +33,6 @@ use function request;
*/
class Twig implements View
{
/**
* @var array
*/
protected static $vars = [];
/**
* Assign.
* @param string|array $name
@ -45,7 +40,8 @@ class Twig implements View
*/
public static function assign($name, $value = null)
{
static::$vars = array_merge(static::$vars, is_array($name) ? $name : [$name => $value]);
$request = request();
$request->_view_vars = array_merge((array) $request->_view_vars, is_array($name) ? $name : [$name => $value]);
}
/**
@ -74,9 +70,7 @@ class Twig implements View
$extension($views[$key]);
}
}
$vars = array_merge(static::$vars, $vars);
$content = $views[$key]->render("$template.$viewSuffix", $vars);
static::$vars = [];
return $content;
$vars = array_merge((array) $request->_view_vars, $vars);
return $views[$key]->render("$template.$viewSuffix", $vars);
}
}