rkljw 6 달 전
부모
커밋
7dc87cf82b

+ 0 - 90
app/JsonRpc/LinkService.php

@@ -1,90 +0,0 @@
-<?php
-
-namespace App\JsonRpc;
-
-use App\Model\Link;
-use Hyperf\RpcServer\Annotation\RpcService;
-use App\Tools\Result;
-
-
-#[RpcService(name: "LinkService", protocol: "jsonrpc-http", server: "jsonrpc-http")]
-class LinkService implements LinkServiceInterface
-{
-    /**
-     * @param array $data
-     * @return array
-     */
-    public function getLinkList(array $data): array
-    {
-        $where = [];
-        if(isset($data['keyWord'])){
-            $where = [
-                ['link.title','like','%'.$data['keyWord'].'%']
-            ];
-        }
-        $result  = [];
-        if(isset($data['pageSize'])){
-            $rep = Link::where($where)
-                ->leftJoin("website","website.id","link.website_id")
-                ->select("link.*","website.website_name")
-                ->limit($data['pageSize'])->offset(($data['page']-1)*$data['pageSize'])->orderBy("sort","asc")->get();
-            $count = Link::where($where)->count();
-            $result = [
-                'rows'=>$rep,
-                'count'=>$count
-            ];
-        }else{
-            $result = Link::where($data)->orderBy("sort","asc")->get();
-        }
-        return $result?Result::success($result):Result::error("没有查到数据");
-    }
-
-    /**
-     * @param array $data
-     * @return array
-     */
-    public function createLink(array $data): array
-    {
-
-
-        $result = Link::insertGetId($data);
-        if (empty($result)) {
-            return Result::error("创建失败", 0);
-        } else {
-            return Result::success(["id" => $result]);
-        }
-    }
-
-    /**
-     * @param array $data
-     * @return array
-     */
-    public function updateLink(array $data): array
-    {
-        //website_name` = '三农市场网', `status_name` =
-        unset($data['website_name']);
-        unset($data['status_name']);
-        $result = Link::where('id', $data['id'])->update($data);
-        if (empty($result)) {
-            return Result::error("更新失败", 0);
-        } else {
-            return Result::success();
-        }
-    }
-
-    /**
-     * @param int $id
-     * @return array
-     */
-    public function delLink(int $id): array
-    {
-        $result = Link::where('id', $id)->delete();
-        if (empty($result)) {
-            return Result::error("删除失败", 0);
-        } else {
-            return Result::success();
-        }
-    }
-
-
-}

+ 0 - 31
app/JsonRpc/LinkServiceInterface.php

@@ -1,31 +0,0 @@
-<?php
-
-namespace App\JsonRpc;
-interface LinkServiceInterface
-{
-    /**
-     * @param array $data
-     */
-    public function getLinkList(array $data): array;
-
-    /**
-     * @param array $data
-     * @return array
-     */
-    public function createLink(array $data): array;
-
-    /**
-     * @param array $data
-     * @return array
-     */
-    public function updateLink(array $data): array;
-
-    /**
-     * @param int $id
-     * @return array
-     */
-    public function delLink(int $id): array;
-
-
-
-}

+ 0 - 105
app/JsonRpc/PublicRpcService.php

@@ -1,105 +0,0 @@
-<?php
-namespace App\JsonRpc;
-use App\Model\District;
-use App\Model\LevelUser;
-use Hyperf\RpcServer\Annotation\RpcService;
-use App\Tools\Result;
-#[RpcService(name: "PublicRpcService", protocol: "jsonrpc-http", server: "jsonrpc-http")]
-class PublicRpcService implements PublicRpcServiceInterface
-{
-
-    /**
-     * @param array $data
-     * @return array
-     */
-    public function getDistrictList(array $data): array
-    {
-        $where = [];
-       if(isset($data['keyWord'])){
-           $where = [
-               ['name','like','%'.$data['keyWord'].'%']
-           ];
-       }
-
-        $result  = [];
-        if(isset($data['pageSize'])){
-            $rep = District::where($where)->limit($data['pageSize'])->offset(($data['page']-1)*$data['pageSize'])->orderBy("code","asc")->get();
-            $count = District::where($where)->count();
-            $result = [
-                'rows'=>$rep,
-                'count'=>$count
-            ];
-        }else{
-            $result = District::where($data)->orderBy("code","asc")->get();
-        }
-
-        return $result?Result::success($result):Result::error("没有查到数据");
-    }
-
-
-    /**
-     * @param array $data
-     * @return array
-     */
-    public function getUserLevelList(array $data): array
-    {
-        $where = [];
-        if(isset($data['keyWord'])){
-            $where = [
-                ['name','like','%'.$data['keyWord'].'%']
-            ];
-        }
-        $result = [];
-        if(isset($data['pageSize'])){
-            $rep = LevelUser::where($where)->limit($data['pageSize'])->offset(($data['page']-1)*$data['pageSize'])->orderBy("id","asc")->get();
-            $count = LevelUser::where($where)->count();
-            $result = [
-                'rows'=>$rep,
-                'count'=>$count
-            ];
-        }else{
-            $result = LevelUser::orderBy("id","asc")->get();
-        }
-        return $result?Result::success($result):Result::error("没有查到数据");
-    }
-
-    /**
-     * 添加用户等级
-     * @param array $data
-     * @return array
-     */
-    public function addUserLevel(array $data) :array
-    {
-        LevelUser::insertGetId($data);
-        return Result::success([]);
-    }
-    /**
-     * 更新等级
-     * @param array $data
-     * @return array
-     */
-    public function updateUserLevel(array $data) :array
-    {
-
-        $result = LevelUser::where(['id'=>$data['id']])->update($data);
-        if ($result) {
-            return Result::success($result);
-        }
-        return  Result::error("更新失败");
-    }
-
-    /**
-     * 删除等级
-     * @param array $data
-     * @return array
-     */
-    public function delUserLevel(array $data) :array
-    {
-
-        $result = LevelUser::where(['id'=>$data['id']])->delete();
-        if ($result) {
-            return Result::success($result);
-        }
-        return  Result::error("删除失败");
-    }
-}

+ 0 - 34
app/JsonRpc/PublicRpcServiceInterface.php

@@ -1,34 +0,0 @@
-<?php
-
-namespace App\JsonRpc;
-interface PublicRpcServiceInterface
-{
-    /**
-     * @param array $data
-     */
-    public function getDistrictList(array $data): array;
-
-    /**
-     * @param array $data
-     * @return array
-     */
-    public function getUserLevelList(array $data): array;
-
-    /**
-     * @param array $data
-     * @return array
-     */
-    public function addUserLevel(array $data): array;
-
-
-    public function updateUserLevel(array $data): array;
-
-    /**
-     * @param int $id
-     * @return array
-     */
-    public function delUserLevel(array $data): array;
-
-
-
-}

+ 0 - 407
app/JsonRpc/WebsiteService.php

@@ -1,407 +0,0 @@
-<?php
-namespace App\JsonRpc;
-use App\Model\WebsiteRole;
-use App\Model\WebsiteRoleUser;
-use App\Model\Website;
-use App\Model\WebsiteColumn;
-use Hyperf\RpcServer\Annotation\RpcService;
-use App\Tools\Result;
-use function PHPUnit\Framework\isNull;
-
-#[RpcService(name: "WebsiteService", protocol: "jsonrpc-http", server: "jsonrpc-http")]
-class WebsiteService implements WebsiteServiceInterface
-{
-    /**
-     * @param string $keyword
-     * @param int $page
-     * @param int $pageSize
-     * @return array
-     */
-    public function getWebsitetList(string $keyword,int $page,int $pageSize):array
-    {
-        $where = [
-            ['website.website_name','like','%'.$keyword.'%']
-        ];
-        $result = Website::where($where)
-            ->leftJoin("website_column","website.website_column_id","website_column.id")
-            ->leftJoin("district","district.id","website.city_id")
-            ->select("website.*","website_column.column_name","district.name")
-            ->limit($pageSize)->offset(($page-1)*$pageSize)->get();
-        $count = Website::where($where)->count();
-        if (empty($result)) {
-            return Result::error("没有数据",0);
-        }
-        $data = [
-            'rows'=>$result->toArray(),
-            'count'=>$count
-        ];
-        return Result::success($data);
-    }
-
-    /**
-     * @param array $data
-     * @return array
-     */
-    public function createWebsite(array $data): array
-    {
-        $insertData = [
-            'website_name'=>$data['website_name'],
-            'logo'=>$data['logo']??'',
-            'website_url'=>$data['website_url']??'',
-            'city_id'=>$data['city_id']??0,
-            'website_column_id'=>$data['website_column_id'],
-            'title'=>$data['title']??'',
-            'keywords'=>$data['keywords']??'',
-            'description'=>$data['description']??'',
-            'status'=>$data['status']??0,
-            'website_column_arr_id'=>$data['website_column_arr_id'],
-            'city_arr_id'=>$data['city_arr_id']??[0],
-        ];
-        $result = Website::insertGetId($insertData);
-        if(empty($result)){
-            return Result::error("创建失败",0);
-        }else{
-            return Result::success(["id"=>$result]);
-        }
-    }
-
-    /**
-     * @param int $id
-     * @param array $data
-     * @return array
-     */
-    public function updateWebsite(int $id,array $data): array
-    {
-        $insertData = [
-            'website_name'=>$data['website_name'],
-            'logo'=>$data['logo']??'',
-            'website_url'=>$data['website_url']??'',
-            'city_id'=>$data['city_id']??0,
-            'website_column_id'=>$data['website_column_id'],
-            'title'=>$data['title']??'',
-            'keywords'=>$data['keywords']??'',
-            'description'=>$data['description']??'',
-            'status'=>$data['status']??0,
-            'website_column_arr_id'=>$data['website_column_arr_id'],
-            'city_arr_id'=>$data['city_arr_id']??[0],
-        ];
-        $result = Website::where('id',$id)->update($insertData);
-        var_dump("更新站点",$result);
-        if(empty($result)){
-            return Result::error("更新失败",0);
-        }else{
-            return Result::success();
-        }
-    }
-
-    /**
-     * @param int $id
-     * @return array
-     */
-    public function delWebsite(int $id): array
-    {
-        $result = Website::where('id',$id )->delete();
-        var_dump("删除站点",$result);
-        if(empty($result)){
-            return Result::error("删除失败",0);
-        }else{
-            return Result::success();
-        }
-    }
-
-    /**
-     * @param int $id
-     * @return array
-     */
-    public function getWebsiteInfo(int $id): array
-    {
-        $result = Website::where('id',$id )->first();
-        if(empty($result)){
-            return Result::error("数据不存在",0);
-        }else{
-            return Result::success($result->toArray());
-        }
-
-    }
-
-    /**
-     * 查询所有的站点栏目
-     * @return array
-     */
-    public function getWebsiteColumn(array $data): array
-    {
-        $result = WebsiteColumn::where($data)->get();
-        if(empty($result)){
-            return Result::error("数据不存在",0);
-        }else{
-            return Result::success($result->toArray());
-        }
-
-    }
-
-
-    /**
-     * @param string $keyword
-     * @param int $page
-     * @param int $pageSize
-     * @return array
-     */
-    public function getWebsiteColumnList(string $keyword,int $page,int $pageSize):array
-    {
-        $where = [
-            ['website_column.column_name','like','%'.$keyword.'%']
-        ];
-        $result = WebsiteColumn::where($where)
-            ->leftJoin("website_column as wc","website_column.pid","wc.id")
-            ->select("website_column.*","wc.column_name as parent_column_name")
-            ->limit($pageSize)->offset(($page-1)*$pageSize)->get();
-        $count = WebsiteColumn::where($where)->count();
-        if (empty($result)) {
-            return Result::error("没有数据",0);
-        }
-        $data = [
-            'rows'=>$result->toArray(),
-            'count'=>$count
-        ];
-        return Result::success($data);
-    }
-
-    /**
-     * @param array $data
-     * @return array
-     */
-    public function createWebsiteColumn(array $data): array
-    {
-        $insertData = [
-            'column_name'=>$data['column_name'],
-            'pid'=>$data['pid']??'',
-            'column_arr_id'=>$data['column_arr_id']??[0],
-            'sort'=>$data['sort']??0,
-            'remark'=>$data['remark']??'',
-        ];
-        $result = WebsiteColumn::insertGetId($insertData);
-        if(empty($result)){
-            return Result::error("创建失败",0);
-        }else{
-            return Result::success(["id"=>$result]);
-        }
-    }
-
-    /**
-     * @param int $id
-     * @param array $data
-     * @return array
-     */
-    public function updateWebsiteColumn(int $id,array $data): array
-    {
-        $insertData = [
-            'column_name'=>$data['column_name'],
-            'pid'=>$data['pid']??'',
-            'column_arr_id'=>$data['column_arr_id']??[0],
-            'sort'=>$data['sort']??0,
-            'remark'=>$data['remark']??'',
-        ];
-        $result = WebsiteColumn::where('id',$id)->update($insertData);
-        if(empty($result)){
-            return Result::error("更新失败",0);
-        }else{
-            return Result::success();
-        }
-    }
-
-    /**
-     * @param int $id
-     * @return array
-     */
-    public function delWebsiteColumn(int $id): array
-    {
-        $result = WebsiteColumn::where('id',$id )->delete();
-        if(empty($result)){
-            return Result::error("删除失败",0);
-        }else{
-            return Result::success();
-        }
-    }
-
-    /**
-     * @param string $keyword
-     * @param int $page
-     * @param int $pageSize
-     * @return array
-     */
-    public function getWebsiteRoleList(string $keyword,int $page,int $pageSize,int $websiteId):array
-    {
-        $where = [
-            ['role.role_name','like','%'.$keyword.'%'],
-            ['website_role.website_id','=',$websiteId],
-        ];
-        $result = WebsiteRole::where($where)
-            ->leftJoin("role","role.id","website_role.role_id")
-            ->select("role.*","website_role.type","website_role.role_id","website_role.id as website_role_id","website_role.website_id")
-            ->limit($pageSize)->offset(($page-1)*$pageSize)->get();
-        $count = WebsiteRole::where($where) ->leftJoin("role","role.id","website_role.role_id")->count();
-        if (empty($result)) {
-            return Result::error("没有数据",0);
-        }
-        $data = [
-            'rows'=>$result->toArray(),
-            'count'=>$count
-        ];
-        return Result::success($data);
-    }
-
-
-    /**
-     * @param array $data
-     * @return array
-     */
-    public function createWebsiteRole(array $data): array
-    {
-
-        $insertData = [
-            'website_id'=>$data['website_id'],
-            'role_id'=>$data['role_id']??''
-        ];
-        $info = WebsiteRole::where($insertData)->first();
-        if($info){
-            return Result::error("不能重复添加角色",0);
-        }
-        $insertData['admin_user_id'] = $data['admin_user_id']??'';
-        $insertData['type'] = $data['type']??'';
-        $result = WebsiteRole::insertGetId($insertData);
-        if(empty($result)){
-            return Result::error("创建失败",0);
-        }else{
-            return Result::success(["id"=>$result]);
-        }
-    }
-
-    /**
-     * 暂时用不上
-     * @param int $id
-     * @param array $data
-     * @return array
-     */
-    public function updateWebsiteRole(int $id,array $data): array
-    {
-        $insertData = [
-            'website_id'=>$data['website_id'],
-            'type'=>$data['type']??'',
-        ];
-        $result = WebsiteRole::where('id',$id)->update($insertData);
-        if(empty($result)){
-            return Result::error("更新失败",0);
-        }else{
-            return Result::success();
-        }
-    }
-
-    /**
-     * @param int $id
-     * @return array
-     */
-    public function delWebsiteRole(int $id): array
-    {
-        $result = WebsiteRole::where('id',$id )->delete();
-        if(empty($result)){
-            return Result::error("删除失败",0);
-        }else{
-            return Result::success();
-        }
-    }
-
-
-    /**
-     * @param string $keyword
-     * @param int $page
-     * @param int $pageSize
-     * @return array
-     */
-    public function getWebsiteRoleUserList(string $keyword,int $page,int $pageSize,int $websiteId,int $roleId):array
-    {
-        $where = [
-            ['website_role_user.website_id','=',$websiteId],
-            ['website_role_user.role_id','=',$roleId],
-        ];
-        $count = WebsiteRoleUser::where($where)->count();
-       $where[] =   ['u.user_name','like','%'.$keyword.'%'];
-        $result = WebsiteRoleUser::where($where)
-            ->leftJoin("user as u","website_role_user.user_id","u.id")
-            ->leftJoin("website as w","website_role_user.website_id","u.id")
-            ->leftJoin("role as r","website_role_user.role_id","r.id")
-            ->select("u.*","u.user_name",'w.website_name','r.role_name','website_role_user.id as website_role_user_id','website_role_user.updated_at as user_update_at')
-            ->limit($pageSize)->offset(($page-1)*$pageSize)->get();
-
-        if (empty($result)) {
-            return Result::error("没有数据",0);
-        }
-        $data = [
-            'rows'=>$result->toArray(),
-            'count'=>$count
-        ];
-        return Result::success($data);
-    }
-
-    /**
-     * @param array $data
-     * @return array
-     */
-    public function createWebsiteRoleUser(array $data): array
-    {
-        $insertData = [
-            'website_id'=>$data['website_id'],
-            'user_id'=>$data['user_id']??'',
-        ];
-        $info = WebsiteRoleUser::where($insertData)->first();
-        if($info){
-            return Result::error("不能重复添加角色用户",0);
-        }
-        $insertData['role_id'] = $data['role_id']??'';
-        $insertData['admin_user_id'] = $data['admin_user_id']??'';
-        $insertData['type'] = $data['type']??'';
-        $result = WebsiteRoleUser::insertGetId($insertData);
-        if(empty($result)){
-            return Result::error("创建失败",0);
-        }else{
-            return Result::success(["id"=>$result]);
-        }
-    }
-
-    /**
-     * @param int $id
-     * @param array $data
-     * @return array
-     */
-    public function updateWebsiteRoleUser(int $id,array $data): array
-    {
-        $insertData = [
-            'website_id'=>$data['website_id'],
-            'type'=>$data['type']??'',
-            'type_id'=>$data['type_id']??'',
-            'role_id'=>$data['role_id']??'',
-        ];
-        $result = WebsiteRoleUser::where('id',$id)->update($insertData);
-        if(empty($result)){
-            return Result::error("更新失败",0);
-        }else{
-            return Result::success();
-        }
-    }
-
-    /**
-     * @param int $id
-     * @return array
-     */
-    public function delWebsiteRoleUser(int $id): array
-    {
-        $result = WebsiteRoleUser::where('id',$id )->delete();
-        if(empty($result)){
-            return Result::error("删除失败",0);
-        }else{
-            return Result::success();
-        }
-    }
-
-
-
-}

+ 0 - 48
app/JsonRpc/WebsiteServiceInterface.php

@@ -1,48 +0,0 @@
-<?php
-
-namespace App\JsonRpc;
-interface WebsiteServiceInterface
-{
-    /**
-     * @param array $data
-     */
-    public function getWebsitetList(string $keyword,int $page,int $pageSize): array;
-
-    /**
-     * @param array $data
-     * @return array
-     */
-    public function createWebsite(array $data): array;
-
-    /**
-     * @param array $data
-     * @return array
-     */
-    public function updateWebsite(int $id,array $data): array;
-
-    /**
-     * @param int $id
-     * @return array
-     */
-    public function delWebsite(int $id): array;
-
-    /**
-     * @param int $id
-     * @return array
-     */
-    public function getWebsiteInfo(int $id): array;
-
-    public function getWebsiteColumn(array $data): array;
-    public function getWebsiteColumnList(string $keyword,int $page,int $pageSize): array;
-    public function createWebsiteColumn(array $data): array;
-    public function updateWebsiteColumn(int $id,array $data): array;
-    public function getWebsiteRoleList(string $keyword,int $page,int $pageSize,int $websiteId): array;
-    public function createWebsiteRole(array $data): array;
-    public function updateWebsiteRole(int $id,array $data): array;
-    public function delWebsiteRole(int $id): array;
-    public function getWebsiteRoleUserList(string $keyword,int $page,int $pageSize,int $websiteId,int $roleId): array;
-    public function createWebsiteRoleUser(array $data): array;
-    public function updateWebsiteRoleUser(int $id,array $data): array;
-    public function delWebsiteRoleUser(int $id): array;
-
-}

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
runtime/container/classes.cache


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
runtime/container/scan.cache


+ 1 - 1
runtime/hyperf.pid

@@ -1 +1 @@
-2742
+164

+ 0 - 20
runtime/logs/hyperf.log

@@ -1,20 +0,0 @@
-[2024-09-20T03:09:12.064512+00:00] sql.INFO: [79.09] select `article`.*, `category`.`name`, `article_data`.`content` from `article` left join `category` on `article`.`catid` = `category`.`id` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`title` like '%%' and `article`.`status` != '5') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-09-20T03:09:12.085099+00:00] sql.INFO: [2.44] select count(*) as aggregate from `article` where (`article`.`title` like '%%' and `article`.`status` != '5') [] []
-[2024-09-20T03:10:39.227001+00:00] sql.INFO: [11.63] select * from `category` where (`name` like '%%' and `website_id` = '0' and `pid` = '0') order by `sort` asc limit 10 offset 0 [] []
-[2024-09-20T03:10:39.239557+00:00] sql.INFO: [1.52] select count(*) as aggregate from `category` where (`name` like '%%' and `website_id` = '0' and `pid` = '0') [] []
-[2024-09-20T03:10:40.647460+00:00] sql.INFO: [11.75] select `article`.*, `category`.`name`, `article_data`.`content` from `article` left join `category` on `article`.`catid` = `category`.`id` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`title` like '%%' and `article`.`status` != '5') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-09-20T03:10:40.651602+00:00] sql.INFO: [1.72] select count(*) as aggregate from `article` where (`article`.`title` like '%%' and `article`.`status` != '5') [] []
-[2024-09-20T03:10:41.633239+00:00] sql.INFO: [3.35] select * from `category` where (`name` like '%%' and `website_id` = '0' and `pid` = '0') order by `sort` asc limit 10 offset 0 [] []
-[2024-09-20T03:10:41.636462+00:00] sql.INFO: [2] select count(*) as aggregate from `category` where (`name` like '%%' and `website_id` = '0' and `pid` = '0') [] []
-[2024-09-20T03:11:02.665599+00:00] sql.INFO: [9.18] select `article`.*, `category`.`name`, `article_data`.`content` from `article` left join `category` on `article`.`catid` = `category`.`id` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`title` like '%%' and `article`.`status` != '5') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-09-20T03:11:02.670072+00:00] sql.INFO: [1.73] select count(*) as aggregate from `article` where (`article`.`title` like '%%' and `article`.`status` != '5') [] []
-[2024-09-20T03:11:04.252569+00:00] sql.INFO: [2.17] select * from `category` where (`website_id` = '0') [] []
-[2024-09-20T03:11:44.132408+00:00] sql.INFO: [3.35] select * from `category` where (`name` like '%%' and `website_id` = '0' and `pid` = '0') order by `sort` asc limit 10 offset 0 [] []
-[2024-09-20T03:11:44.135780+00:00] sql.INFO: [2.18] select count(*) as aggregate from `category` where (`name` like '%%' and `website_id` = '0' and `pid` = '0') [] []
-[2024-09-20T06:41:46.312685+00:00] sql.INFO: [8.12] select * from `category` where (`name` like '%%' and `website_id` = '0' and `pid` = '0') order by `sort` asc limit 10 offset 0 [] []
-[2024-09-20T06:41:46.315728+00:00] sql.INFO: [2.05] select count(*) as aggregate from `category` where (`name` like '%%' and `website_id` = '0' and `pid` = '0') [] []
-[2024-09-20T06:41:47.311492+00:00] sql.INFO: [2.42] select * from `category` where (`website_id` = '0') [] []
-[2024-09-23T09:07:16.731705+00:00] sql.INFO: [72.83] select `article`.*, `category`.`name`, `article_data`.`content` from `article` left join `category` on `article`.`catid` = `category`.`id` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`title` like '%%' and `article`.`status` != '5') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-09-23T09:07:16.761900+00:00] sql.INFO: [1.87] select count(*) as aggregate from `article` where (`article`.`title` like '%%' and `article`.`status` != '5') [] []
-[2024-09-23T09:07:20.531776+00:00] sql.INFO: [9.65] select `article`.*, `category`.`name`, `article_data`.`content` from `article` left join `category` on `article`.`catid` = `category`.`id` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`title` like '%%' and `article`.`status` != '5') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-09-23T09:07:20.536324+00:00] sql.INFO: [2.16] select count(*) as aggregate from `article` where (`article`.`title` like '%%' and `article`.`status` != '5') [] []

+ 0 - 6
vendor/composer/autoload_classmap.php

@@ -11,14 +11,8 @@ return array(
     'App\\Controller\\IndexController' => $baseDir . '/app/Controller/IndexController.php',
     'App\\Exception\\Handler\\AppExceptionHandler' => $baseDir . '/app/Exception/Handler/AppExceptionHandler.php',
     'App\\Exception\\Handler\\JsonRpcExceptionHandler' => $baseDir . '/app/Exception/Handler/JsonRpcExceptionHandler.php',
-    'App\\JsonRpc\\LinkService' => $baseDir . '/app/JsonRpc/LinkService.php',
-    'App\\JsonRpc\\LinkServiceInterface' => $baseDir . '/app/JsonRpc/LinkServiceInterface.php',
     'App\\JsonRpc\\NewsService' => $baseDir . '/app/JsonRpc/NewsService.php',
     'App\\JsonRpc\\NewsServiceInterface' => $baseDir . '/app/JsonRpc/NewsServiceInterface.php',
-    'App\\JsonRpc\\PublicRpcService' => $baseDir . '/app/JsonRpc/PublicRpcService.php',
-    'App\\JsonRpc\\PublicRpcServiceInterface' => $baseDir . '/app/JsonRpc/PublicRpcServiceInterface.php',
-    'App\\JsonRpc\\WebsiteService' => $baseDir . '/app/JsonRpc/WebsiteService.php',
-    'App\\JsonRpc\\WebsiteServiceInterface' => $baseDir . '/app/JsonRpc/WebsiteServiceInterface.php',
     'App\\Listener\\DbQueryExecutedListener' => $baseDir . '/app/Listener/DbQueryExecutedListener.php',
     'App\\Listener\\ResumeExitCoordinatorListener' => $baseDir . '/app/Listener/ResumeExitCoordinatorListener.php',
     'App\\Model\\Article' => $baseDir . '/app/Model/Article.php',

+ 0 - 6
vendor/composer/autoload_static.php

@@ -695,14 +695,8 @@ class ComposerStaticInit88f2a4d4a4e81dc7d415bcdf39930654
         'App\\Controller\\IndexController' => __DIR__ . '/../..' . '/app/Controller/IndexController.php',
         'App\\Exception\\Handler\\AppExceptionHandler' => __DIR__ . '/../..' . '/app/Exception/Handler/AppExceptionHandler.php',
         'App\\Exception\\Handler\\JsonRpcExceptionHandler' => __DIR__ . '/../..' . '/app/Exception/Handler/JsonRpcExceptionHandler.php',
-        'App\\JsonRpc\\LinkService' => __DIR__ . '/../..' . '/app/JsonRpc/LinkService.php',
-        'App\\JsonRpc\\LinkServiceInterface' => __DIR__ . '/../..' . '/app/JsonRpc/LinkServiceInterface.php',
         'App\\JsonRpc\\NewsService' => __DIR__ . '/../..' . '/app/JsonRpc/NewsService.php',
         'App\\JsonRpc\\NewsServiceInterface' => __DIR__ . '/../..' . '/app/JsonRpc/NewsServiceInterface.php',
-        'App\\JsonRpc\\PublicRpcService' => __DIR__ . '/../..' . '/app/JsonRpc/PublicRpcService.php',
-        'App\\JsonRpc\\PublicRpcServiceInterface' => __DIR__ . '/../..' . '/app/JsonRpc/PublicRpcServiceInterface.php',
-        'App\\JsonRpc\\WebsiteService' => __DIR__ . '/../..' . '/app/JsonRpc/WebsiteService.php',
-        'App\\JsonRpc\\WebsiteServiceInterface' => __DIR__ . '/../..' . '/app/JsonRpc/WebsiteServiceInterface.php',
         'App\\Listener\\DbQueryExecutedListener' => __DIR__ . '/../..' . '/app/Listener/DbQueryExecutedListener.php',
         'App\\Listener\\ResumeExitCoordinatorListener' => __DIR__ . '/../..' . '/app/Listener/ResumeExitCoordinatorListener.php',
         'App\\Model\\Article' => __DIR__ . '/../..' . '/app/Model/Article.php',

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.