NewsService.php 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466
  1. <?php
  2. namespace App\JsonRpc;
  3. use App\Model\Article;
  4. use App\Model\ArticleData;
  5. use App\Model\Category;
  6. use App\Model\Website;
  7. use App\Model\WebsiteCategory;
  8. use App\Model\Good;
  9. use Hyperf\DbConnection\Db;
  10. use Hyperf\RpcServer\Annotation\RpcService;
  11. use App\Tools\Result;
  12. use App\Model\ArticleSurvey;
  13. use App\Model\District;
  14. use App\Tools\buildMenuTree;
  15. use App\Model\Book;
  16. use App\Model\JobHunting;
  17. use App\Model\JobRecruiting;
  18. use App\Model\JobPosition;
  19. use App\Model\JobIndustry;
  20. use App\Model\JobEnum;
  21. use App\Model\JobCompany;
  22. use App\Model\JobNature;
  23. use App\Model\User;
  24. use App\Model\JobApply;
  25. use App\Model\JobRemuse;
  26. #[RpcService(name: "NewsService", protocol: "jsonrpc-http", server: "jsonrpc-http")]
  27. class NewsService implements NewsServiceInterface
  28. {
  29. /**
  30. * 获取导航池列表
  31. * @param array $data
  32. * @return array
  33. */
  34. public function getCategoryList(array $data): array
  35. {
  36. $where = [];
  37. if(isset($data['name']) && $data['name']){
  38. array_push($where, ['category.name','like','%'.$data['name'].'%']);
  39. }
  40. if(isset($data['department_id']) && $data['department_id']){
  41. array_push($where, ['category.department_id','=',$data['department_id']]);
  42. }
  43. if(isset($data['city_id']) && $data['city_id']){
  44. array_push($where, ['category.city_id','=',$data['city_id']]);
  45. }
  46. $rep = Category::where($where)
  47. ->leftJoin('district','category.city_id','district.id')
  48. ->leftJoin('department','category.department_id','department.id')
  49. ->select("category.*","district.name as city_name","department.name as department_name")
  50. ->limit($data['pageSize'])->orderBy("category.sort","desc")->orderByDesc('category.updated_at')->offset(($data['page']-1)*$data['pageSize'])->get();
  51. $count = Category::where($where)->count();
  52. $data = [
  53. 'rows'=>$rep->toArray(),
  54. 'count'=>$count
  55. ];
  56. if(empty($rep->toArray())){
  57. return Result::error("没有导航池数据");
  58. }
  59. return Result::success($data);
  60. }
  61. /**
  62. * @param array $data
  63. * @return array
  64. */
  65. public function categoryList(array $data): array
  66. {
  67. $where[] = [
  68. 'pid','=',$data['pid']
  69. ];
  70. if(isset($data['name'])){
  71. array_push($where, ['category.name','like','%'.$data['name'].'%']);
  72. }
  73. var_dump($where);
  74. $result = Category::where($where)->select('category.*','category.id as category_id')->get();
  75. if(empty($result)){
  76. return Result::error("没有栏目数据");
  77. }
  78. return Result::success($result);
  79. }
  80. /**
  81. * @param array $data
  82. * @return array
  83. */
  84. public function addCategory(array $data): array
  85. {
  86. $id = Category::insertGetId($data);
  87. if(empty($id)){
  88. return Result::error("添加失败");
  89. }
  90. return Result::success(['id'=>$id]);
  91. }
  92. /**
  93. * @param array $data
  94. * @return array
  95. */
  96. public function delCategory(array $data): array
  97. {
  98. $categoryList = Category::where(['pid'=>$data['id']])->get();
  99. var_dump("分类列表:",$data,$categoryList);
  100. if($categoryList->toArray()){
  101. return Result::error("分类下面有子分类不能删除");
  102. }
  103. $articleList = Article::where(['catid'=>$data['id']])->get();
  104. var_dump("文章列表:",$articleList);
  105. if($articleList->toArray()){
  106. return Result::error("分类下面有资讯不能删除");
  107. }
  108. $result = Category::where($data)->delete();
  109. if(!$result){
  110. return Result::error("删除失败");
  111. }
  112. return Result::success($result);
  113. }
  114. /**
  115. * @param array $data
  116. * @return array
  117. */
  118. public function updateCategory(array $data): array
  119. {
  120. $where = [
  121. 'id'=>$data['id']
  122. ];
  123. $result = Category::where($where)->update($data);
  124. if($result){
  125. return Result::success($result);
  126. }else{
  127. return Result::error("更新失败");
  128. }
  129. }
  130. /**
  131. * 获取导航池信息
  132. * @param array $data
  133. * @return array
  134. */
  135. public function getCategoryInfo(array $data): array
  136. {
  137. $where = [
  138. 'id'=>$data['id']
  139. ];
  140. $result = Category::where($where)->first();
  141. if($result){
  142. return Result::success($result);
  143. }else{
  144. return Result::error("更新失败");
  145. }
  146. }
  147. /**
  148. * @param array $data
  149. * @return array
  150. */
  151. public function getArticleList(array $data): array
  152. {
  153. $where= [];
  154. if(isset($data['title']) && $data['title']){
  155. array_push($where,['article.title','like','%'.$data['title'].'%']);
  156. }
  157. if(isset($data['category_name']) && $data['category_name']){
  158. array_push($where,['category.name','like','%'.$data['category_name'].'%']);
  159. }
  160. if(isset($data['author']) && $data['author']){
  161. array_push($where,['article.author','=',$data['author']]);
  162. }
  163. if(isset($data['islink']) && $data['islink']!==""){
  164. array_push($where,['article.islink','=',$data['islink']]);
  165. }
  166. if(isset($data['status']) && $data['status']!==""){
  167. array_push($where,['article.status','=',$data['status']]);
  168. }
  169. $rep = Article::where($where)
  170. ->whereNotIn('article.status',[404])
  171. ->leftJoin('category','article.catid','category.id')
  172. ->select("article.*","category.name as category_name")
  173. ->orderBy("article.id","desc")
  174. ->limit($data['pageSize'])
  175. ->offset(($data['page']-1)*$data['pageSize'])->get();
  176. $count = Article::where($where)->whereNotIn('article.status',[404])
  177. ->leftJoin('category','article.catid','category.id')->count();
  178. $data = [
  179. 'rows'=>$rep->toArray(),
  180. 'count'=>$count
  181. ];
  182. if(empty($rep)){
  183. return Result::error("没有信息数据");
  184. }
  185. return Result::success($data);
  186. }
  187. /**
  188. * @param array $data
  189. * @return array
  190. */
  191. public function addArticle(array $data): array
  192. {
  193. Db::beginTransaction();
  194. try{
  195. $articleData = $data;
  196. unset($articleData['content']);
  197. $id = Article::insertGetId($articleData);
  198. $articleDataContent = [
  199. 'article_id'=>$id,
  200. 'content'=>$data['content']
  201. ];
  202. ArticleData::insertGetId($articleDataContent);
  203. Db::commit();
  204. } catch(\Throwable $ex){
  205. Db::rollBack();
  206. var_dump($ex->getMessage());
  207. return Result::error("创建失败",0);
  208. }
  209. return Result::success(['id'=>$id]);
  210. }
  211. /**
  212. * @param array $data
  213. * @return array
  214. */
  215. public function delArticle(array $data): array
  216. {
  217. $result = Article::where($data)->update(['status'=>404]);
  218. if(!$result){
  219. return Result::error("删除失败");
  220. }
  221. return Result::success($result);
  222. }
  223. /**
  224. * @param array $data
  225. * @return array
  226. */
  227. public function updateArticle(array $data): array
  228. {
  229. Db::beginTransaction();
  230. try{
  231. $data['cat_arr_id'] = isset($data['cat_arr_id'])?json_encode($data['cat_arr_id']):'';
  232. $data['tag'] = isset($data['tag'])?json_encode($data['tag']):'';
  233. $articleData = $data;
  234. unset($articleData['content']);
  235. unset($articleData['status_name']);
  236. unset($articleData['name']);
  237. unset($articleData['content']);
  238. unset($articleData['pid_arr']);
  239. unset($articleData['pid']);
  240. $id = Article::where(['id'=>$data['id']])->update($articleData);
  241. $articleDataContent = [
  242. 'content'=>$data['content']
  243. ];
  244. ArticleData::where(['article_id'=>$data['id']])->update($articleDataContent);
  245. } catch(\Throwable $ex){
  246. Db::rollBack();
  247. var_dump($ex->getMessage());
  248. return Result::error("更新失败",0);
  249. }
  250. return Result::success([]);
  251. }
  252. /**
  253. * 更新资讯状态
  254. * @param array $data
  255. * @return array
  256. */
  257. public function upArticleStatus(array $data):array
  258. {
  259. $result = Article::where(['id'=>$data['id']])->update($data);
  260. if($result){
  261. return Result::success();
  262. }else{
  263. return Result::error("更新状态失败",0);
  264. }
  265. }
  266. /**
  267. * 获取新闻详情
  268. * @param array $data
  269. * @return array
  270. */
  271. public function getArticleInfo(array $data): array
  272. {
  273. $where = [
  274. 'article.id'=>$data['id'],
  275. // 'article.status'=>1
  276. ];
  277. $result = Article::where($where)->leftJoin("article_data","article.id","article_data.article_id")->first();
  278. if(empty($result)){
  279. return Result::error("查询失败",0);
  280. }
  281. return Result::success($result);
  282. }
  283. /**
  284. * 获取头条新闻
  285. * @param array $data
  286. * @return array
  287. */
  288. public function getWebsiteArticlett(array $data): array
  289. {
  290. // return Result::success($data['website_id']);
  291. $category = WebsiteCategory::where('website_id', $data['website_id'])->pluck('category_id');
  292. $category = array_values(array_unique($category->toArray()));
  293. if ($category) {
  294. $placeid = isset($data['placeid']) && !empty($data['placeid']) ? $data['placeid'] - 1 : 0;
  295. $where = [
  296. 'status' => 1,
  297. ];
  298. var_dump($data, 'data-----------------');
  299. // level=7 根据文章key来匹配文章
  300. if (isset($data['level']) && $data['level'] == 7) {
  301. // 根据文章id获取key
  302. // $data['id'] = 50142;
  303. if (isset($data['id']) && !empty($data['id'])) {
  304. $keyword = Article::where('id', $data['id'])->value('keyword');
  305. $keywordArray = explode(',', $keyword);
  306. $whereL7 = [];
  307. foreach ($keywordArray as $k => $v) {
  308. $whereL7[] = ['keyword', 'like', '%' . $v . '%'];
  309. }
  310. // 原始查询
  311. $result['level7'] = Article::where($whereL7)
  312. ->when(!empty($data['imgnum']), function ($query) use ($data) {
  313. $query->where('article.imgurl', '!=', '')
  314. ->select('article.*')
  315. ->offset($data['placeid'])
  316. ->limit($data['imgnum']);
  317. })
  318. ->when(!empty($data['textnum']), function ($query) use ($data) {
  319. $query->select('article.*')
  320. ->offset($data['placeid'])
  321. ->limit($data['textnum']);
  322. })
  323. ->orderBy('updated_at', 'desc')
  324. ->get()
  325. ->map(function ($article ) use ($data) {
  326. $catid = $article->catid;
  327. $pinyin = '';
  328. $category = WebsiteCategory::where('category_id', $catid)->where('website_category.website_id', $data['website_id'])->first();
  329. if (!empty($category->aLIas_pinyin) && $category->pid != 0) {
  330. $childCategory = WebsiteCategory::where('category_id', $category->pid)->where('website_category.website_id', $data['website_id'])->first();
  331. if ($childCategory && !empty($childCategory->aLIas_pinyin)) {
  332. $pinyin = $childCategory->aLIas_pinyin ? $childCategory->aLIas_pinyin.'/'. $category->aLIas_pinyin : null;
  333. }
  334. } else {
  335. $pinyin = $category->aLIas_pinyin ? $category->aLIas_pinyin : null;
  336. }
  337. $article->pinyin = $pinyin;
  338. return $article;
  339. });
  340. if (empty($result)) {
  341. return Result::success();
  342. }
  343. return Result::success($result);
  344. } else {
  345. return Result::error("参数错误level=7,id不能为空", 0);
  346. }
  347. }
  348. //如果是4:最新资讯(数据库已不存在) 5:资讯推荐(数据库已不存在);
  349. // 1:头条资讯;2:轮播图;6:热点资讯;(数据库)
  350. var_dump($where, 'where-----------------');
  351. // 初始化基础查询
  352. $query = Article::where($where)
  353. ->whereIn("catid", $category)
  354. ->where(function ($query) use ($data) {
  355. $query->whereRaw("JSON_CONTAINS(ignore_ids, '" . intval($data['website_id']) . "') = 0")
  356. ->orWhereNull("ignore_ids");
  357. });
  358. // 处理 level 相关查询条件
  359. $query->when($data['level'] == 5, function ($query) {
  360. $query->inRandomOrder()
  361. ->where('updated_at', '>', date("Y-m-d H:i:s", strtotime("-30 day")));
  362. })->when($data['level'] == 4, function ($query) {
  363. $query->orderBy("article.updated_at", "desc");
  364. })->when(!empty($data['level']), function ($query) use ($data) {
  365. if ($data['level'] != 4 && $data['level'] != 5) {
  366. $query->whereRaw("JSON_CONTAINS(level, '" . intval($data['level']) . "') = 1")
  367. ->orderBy("article.updated_at", "desc");
  368. }
  369. });
  370. // 初始化结果数组
  371. $result = [];
  372. // $input = $data['website_id'];
  373. // 处理图片新闻查询
  374. if (!empty($data['imgnum'])) {
  375. // 原错误提示表明 cleanBindings 方法需要传入数组类型的参数,而实际传入了 null。
  376. // 这里克隆查询构建器,确保绑定参数为数组,避免该错误。
  377. $imgQuery = clone $query;
  378. if ($imgQuery->getBindings() === null) {
  379. $imgQuery->setBindings([]);
  380. }
  381. $result['img'] = $imgQuery->where('article.imgurl', '!=', '')
  382. ->select('article.id',
  383. 'article.title',
  384. 'article.imgurl',
  385. 'article.author',
  386. 'article.updated_at',
  387. 'article.introduce',
  388. 'article.islink',
  389. 'article.linkurl',
  390. 'article.copyfrom',
  391. 'article.catid')
  392. ->offset($data['placeid'])
  393. ->limit($data['imgnum'])
  394. ->get()
  395. ->map(function ($article ) use ($data) {
  396. $catid = $article->catid;
  397. $pinyin = '';
  398. $category = WebsiteCategory::where('category_id', $catid)->where('website_category.website_id', $data['website_id'])->first();
  399. if (!empty($category->aLIas_pinyin) && $category->pid != 0) {
  400. $childCategory = WebsiteCategory::where('category_id', $category->pid)->where('website_category.website_id', $data['website_id'])->first();
  401. if ($childCategory && !empty($childCategory->aLIas_pinyin)) {
  402. $pinyin = $childCategory->aLIas_pinyin ? $childCategory->aLIas_pinyin.'/'. $category->aLIas_pinyin : null;
  403. }
  404. } else {
  405. $pinyin = $category->aLIas_pinyin ? $category->aLIas_pinyin : null;
  406. }
  407. $article->pinyin = $pinyin;
  408. return $article;
  409. });
  410. // $result['img'] = $this->processArticles($img_article, $input);
  411. }
  412. // 处理文字新闻查询
  413. if (!empty($data['textnum'])) {
  414. $textQuery = clone $query;
  415. $result['text'] = $textQuery
  416. ->select('article.id',
  417. 'article.title',
  418. 'article.imgurl',
  419. 'article.author',
  420. 'article.updated_at',
  421. 'article.introduce',
  422. 'article.islink',
  423. 'article.linkurl',
  424. 'article.copyfrom',
  425. 'article.catid')
  426. ->offset($data['placeid'])
  427. ->limit($data['textnum'])
  428. ->get()
  429. ->map(function ($article ) use ($data) {
  430. $catid = $article->catid;
  431. $pinyin = '';
  432. $category = WebsiteCategory::where('category_id', $catid)->where('website_category.website_id', $data['website_id'])->first();
  433. if (!empty($category->aLIas_pinyin) && $category->pid != 0) {
  434. $childCategory = WebsiteCategory::where('category_id', $category->pid)->where('website_category.website_id', $data['website_id'])->first();
  435. if ($childCategory && !empty($childCategory->aLIas_pinyin)) {
  436. $pinyin = $childCategory->aLIas_pinyin ? $childCategory->aLIas_pinyin.'/'. $category->aLIas_pinyin : null;
  437. }
  438. } else {
  439. $pinyin = $category->aLIas_pinyin ? $category->aLIas_pinyin : null;
  440. }
  441. $article->pinyin = $pinyin;
  442. return $article;
  443. });
  444. // $result['text'] = $this->processArticles($text_article, $input);
  445. }
  446. if (empty($result) || count($result) == 0) {
  447. return Result::error("暂无头条新闻");
  448. }
  449. return Result::success($result);
  450. } else {
  451. return Result::error("本网站下暂无相关栏目", 0);
  452. }
  453. }
  454. /**
  455. * 获取模块新闻
  456. * @param array $data
  457. * @return array
  458. */
  459. public function getWebsiteModelArticles(array $data): array
  460. {
  461. $catid = $data['catid'];
  462. $category = WebsiteCategory::where('website_id', $data['website_id'])->where('category_id', $catid)->select('category_id')->get();
  463. $category = $category->toArray();
  464. if (!empty($category)) {
  465. $where = [
  466. 'status' => 1,
  467. 'catid' => $catid,
  468. ];
  469. $placeid = isset($data['placeid']) && !empty($data['placeid']) ? $data['placeid'] - 1 : 0;
  470. // 1:文字新闻;2:轮播图;3:图文;
  471. // 级别:0:未分类
  472. // 3:推荐图片
  473. if ($data['level'] == 1) {
  474. $data['level'] = 0;
  475. }
  476. $result = Article::where($where)
  477. ->where(function ($query) use ($data) {
  478. $query->whereRaw("JSON_CONTAINS(level, '" . intval($data['level']) . "') = 1")
  479. ->orWhereNull("level")
  480. ->orWhereRaw("level = '[]'");
  481. })
  482. ->where(function ($query) use ($data) {
  483. $query->whereRaw("JSON_CONTAINS(ignore_ids, '" . intval($data['website_id']) . "') = 0")
  484. ->orWhereNull("ignore_ids");
  485. })
  486. ->orderBy("updated_at", "desc")
  487. ->offset($placeid)
  488. ->limit($data['pagesize'])
  489. ->get();
  490. if (empty($result)) {
  491. return Result::error("此栏目暂无相关新闻", 0);
  492. }
  493. } else {
  494. return Result::error("此网站暂无此栏目", 0);
  495. }
  496. return Result::success($result);
  497. }
  498. /**
  499. *获取新闻列表
  500. * @param array $data
  501. * @return array
  502. */
  503. public function getWebsiteArticleList(array $data): array
  504. {
  505. // return Result::success($data);
  506. $where[] = ['status', '=', 1];
  507. if (isset($data['catid']) && !empty($data['catid'])) {
  508. if (is_array($data['catid'])) {
  509. $category = WebsiteCategory::where('website_id', $data['website_id'])->whereIn('category_id', $data['catid'])->pluck('category_id');
  510. array_push($where, ['catid', 'in', $data['catid']]);
  511. } else {
  512. $category = WebsiteCategory::where('website_id', $data['website_id'])->where('category_id', $data['catid'])->pluck('category_id');
  513. array_push($where, ['catid', '=', $data['catid']]);
  514. }
  515. if (empty($category)) {
  516. return Result::error("此网站暂无此栏目", 0);
  517. }
  518. }
  519. // return Result::success($where);
  520. $rep = Article::where(function ($query) use ($where) {
  521. foreach ($where as $condition) {
  522. if ($condition[1] === 'in') {
  523. $query->whereIn($condition[0], $condition[2]);
  524. } else {
  525. $query->where($condition[0], $condition[1], $condition[2]);
  526. }
  527. }
  528. })
  529. ->where(function ($query) use ($data) {
  530. $query->whereRaw("JSON_CONTAINS(ignore_ids, '".intval($data['website_id'])."') = 0")
  531. ->orWhereNull("ignore_ids");
  532. })
  533. ->select(
  534. 'article.id',
  535. 'article.title',
  536. 'article.imgurl',
  537. 'article.author',
  538. 'article.updated_at',
  539. 'article.introduce',
  540. 'article.islink',
  541. 'article.linkurl',
  542. 'article.copyfrom',
  543. 'article.catid')
  544. ->orderBy("updated_at", "desc")
  545. ->offset(($data['page'] - 1) * $data['pageSize'])
  546. ->limit($data['pageSize'])
  547. ->get()
  548. ->map(function ($article ) use ($data) {
  549. $catid = $article->catid ?? 0;
  550. $pinyin = '';
  551. $category = WebsiteCategory::where('category_id', $catid)->where('website_category.website_id', $data['website_id'])->first();
  552. $pinyin = $category->aLIas_pinyin ? $category->aLIas_pinyin : null;
  553. if ($category->pid != 0 && !empty($category->aLIas_pinyin)) {
  554. $childCategory = WebsiteCategory::where('category_id', $category->pid)->where('website_category.website_id', $data['website_id'])->first();
  555. $pinyin = $childCategory->aLIas_pinyin ? $childCategory->aLIas_pinyin.'/'. $category->aLIas_pinyin : null;
  556. }
  557. $article->pinyin = $pinyin;
  558. return $article;
  559. });
  560. $count = Article::where(function ($query) use ($where) {
  561. foreach ($where as $condition) {
  562. if ($condition[1] === 'in') {
  563. $query->whereIn($condition[0], $condition[2]);
  564. } else {
  565. $query->where($condition[0], $condition[1], $condition[2]);
  566. }
  567. }
  568. })->count();
  569. $data = [
  570. 'rows' => $rep->toArray(),
  571. 'count' => $count,
  572. ];
  573. if (empty($rep)) {
  574. return Result::error("没有信息数据");
  575. }
  576. return Result::success($data);
  577. }
  578. /**
  579. * 前端-获取新闻详情
  580. * @param array $data
  581. * @return array
  582. */
  583. public function selectWebsiteArticleInfo(array $data): array
  584. {
  585. $where = [
  586. 'article.id'=>$data['id'],
  587. 'article.status'=>1
  588. ];
  589. $result = Article::where($where)->leftJoin("article_data","article.id","article_data.article_id")
  590. ->where(function ($query) use ($data) {
  591. $query->whereRaw("JSON_CONTAINS(ignore_ids, '".intval($data['website_id'])."') = 0")
  592. ->orWhereNull("ignore_ids");
  593. })
  594. ->first();
  595. if(empty($result)){
  596. return Result::error("暂无此新闻!",0);
  597. }
  598. $category = WebsiteCategory::where('website_id',$data['website_id'])->where(['category_id'=>$result['catid']])->first();
  599. if(empty($category)){
  600. return Result::error("查询失败",0);
  601. }
  602. $result['category_id'] = $category['category_id'];
  603. $result['cat_name'] = $category['alias'];
  604. return Result::success($result);
  605. }
  606. /**
  607. * 前端-获取网站调查问卷
  608. * @param array $data
  609. * @return array
  610. */
  611. public function getWebsiteSurvey(array $data): array
  612. {
  613. if(isset($data['website_id']) && !empty($data['website_id'])){
  614. $website = Website::where('id',$data['website_id'])->first();
  615. if(empty($website)){
  616. return Result::error("暂无此网站",0);
  617. }
  618. }
  619. if(isset($data['art_id']) && !empty($data['art_id'])){
  620. $article = Article::where('id',$data['art_id'])->where('status',1)->first();
  621. if(empty($article)){
  622. return Result::error("暂无此文章",0);
  623. }
  624. // return Result::error($data,0);
  625. $where['art_id'] = $data['art_id'];
  626. // $query = ArticleSurvey::where('art_id',$data['art_id']);
  627. }else{
  628. $survey = Article::where(function ($query) {
  629. $query->whereRaw("JSON_CONTAINS(cat_arr_id, '28')")
  630. ->orWhereRaw("JSON_CONTAINS(cat_arr_id, '\"28\"')");
  631. })
  632. ->where('status',1)
  633. ->where('is_survey',1)
  634. ->select('survey_id')
  635. ->orderBy('updated_at','desc')
  636. ->first();
  637. if(empty($survey)){
  638. return Result::error("暂无调查问卷",0);
  639. }
  640. $where['sur_id'] = $survey['survey_id'];
  641. // $query = ArticleSurvey::where('sur_id',$survey['sur_id']);
  642. }
  643. // return Result::success($where);
  644. $result = ArticleSurvey::where($where)
  645. ->where(function ($query) {
  646. $query->where('is_other', 0)
  647. ->orWhere(function ($subQuery) {
  648. $subQuery->where('is_other', 1)
  649. ->where('other_id', 0);
  650. });
  651. })
  652. ->leftJoin('article', 'article_survey.art_id', 'article.id')
  653. ->select('article_survey.*', 'article.survey_type')
  654. ->get()->all();
  655. if(empty($result)){
  656. return Result::error("此文章暂无调查问卷",0);
  657. }
  658. return Result::success($result);
  659. }
  660. /**
  661. * 前端-添加网站调查问卷选项
  662. * @param array $data
  663. * @return array
  664. */
  665. public function addWebsiteSurveyOption(array $data): array
  666. {
  667. if(isset($data['website_id']) && !empty($data['website_id'])){
  668. $website = Website::where('id',$data['website_id'])->first();
  669. if(empty($website)){
  670. return Result::error("暂无此网站",0);
  671. }
  672. if(isset($data['sur_id']) && !empty($data['sur_id'])){
  673. $survey = ArticleSurvey::where('sur_id',$data['sur_id'])->where('is_other',1)->where('other_id',0)->first();
  674. if(empty($survey)){
  675. return Result::error("此调查问卷不可添加选项",0);
  676. }
  677. if(isset($data['choice_name']) &&!empty($data['choice_name'])){
  678. $choice = [
  679. 'art_id'=>$survey['art_id'],
  680. 'website_id'=>$data['website_id'],
  681. 'survey_name'=>$survey['survey_name'],
  682. 'choice_name'=>$data['choice_name'],
  683. 'sur_id'=>$survey['sur_id'],
  684. 'is_other'=>1,
  685. 'other_id'=>$survey['id'],
  686. ];
  687. $result = ArticleSurvey::insertGetId($choice);
  688. if(empty($result)){
  689. return Result::error("添加失败",0);
  690. }
  691. return Result::success($result);
  692. }
  693. }
  694. return Result::error("添加失败",0);
  695. }
  696. return Result::error("添加失败",0);
  697. }
  698. /**
  699. * 前端-调查问卷投票
  700. * @param array $data
  701. * @return array
  702. */
  703. public function addWebsiteSurveyVote(array $data): array
  704. {
  705. // return Result::success($data);
  706. if(isset($data['website_id']) && !empty($data['website_id'])){
  707. $website = Website::where('id',$data['website_id'])->first();
  708. if(empty($website)){
  709. return Result::error("暂无此网站",0);
  710. }
  711. if(isset($data['sur_id']) && !empty($data['sur_id'])){
  712. $is_survey = ArticleSurvey::where('sur_id',$data['sur_id'])->first();
  713. // return Result::success($survey);
  714. if(empty($is_survey)){
  715. return Result::error("此调查问卷不存在",0);
  716. }
  717. // return Result::success($survey);
  718. // 调查问卷类型
  719. if(isset($data['choice_id']) &&!empty($data['choice_id'])){
  720. //多选 若是json型则转化成数组类型
  721. if (strpos($data['choice_id'], '[') === 0) {
  722. $data['choice_id'] = json_decode($data['choice_id'], true);
  723. } else {
  724. // 单选 也转换成数组
  725. $data['choice_id'] = [$data['choice_id']];
  726. }
  727. $data['choice_id'] = array_map('intval', $data['choice_id']);
  728. $other = ArticleSurvey::whereIn('id',$data['choice_id'])
  729. // ->where('website_id',$data['website_id'])
  730. ->where('is_other',1)
  731. ->where('other_id',0)
  732. ->first();
  733. if(!empty($other)){
  734. return Result::error("请选择已有的选项!",0);
  735. }
  736. $choice['other'] = ArticleSurvey::whereIn('id',$data['choice_id'])
  737. // ->where('website_id',$data['website_id'])
  738. ->where('is_other',1)
  739. ->where('other_id','!=',0)
  740. ->first();
  741. // return Result::success($choice['other']);
  742. $choice_id = $data['choice_id'];
  743. if(!empty($choice['other'])){
  744. // array_push($data['choice_id'],$choice['other']['other_id']);
  745. if(!empty($choice_id)){
  746. $key = array_search($choice['other']['id'], $choice_id);
  747. if ($key!== false) {
  748. unset($choice_id[$key]);
  749. $choice_id = array_values($choice_id);
  750. }
  751. array_push($choice_id,$choice['other']['other_id']);
  752. }else{
  753. $choice_id[0] = $choice['other']['other_id'];
  754. }
  755. array_push($data['choice_id'],$choice['other']['other_id']);
  756. }
  757. // return Result::success($data);
  758. $choice = ArticleSurvey::whereIn('id',$data['choice_id'])
  759. // ->where('website_id',$data['website_id'])
  760. ->increment('results', 1);
  761. if(empty($choice)){
  762. return Result::error("请选择已有的选项!",0);
  763. }
  764. $survey['data'] = ArticleSurvey::where('sur_id',$data['sur_id'])
  765. // ->where('website_id',$data['website_id'])
  766. ->where('other_id', 0)
  767. ->get();
  768. $survey['choice'] = $choice_id;
  769. return Result::success($survey);
  770. }
  771. return Result::error("参数必填!");
  772. }
  773. return Result::error("此调查问卷不存在",0);
  774. }
  775. return Result::error("参数必填!");
  776. }
  777. /**
  778. * 后端-获取网站调查问卷列表
  779. * @param array $data
  780. * @return array
  781. */
  782. public function getSurveyList(array $data): array
  783. {
  784. $where = [];
  785. if(isset($data['survey_name']) &&!empty($data['survey_name'])){
  786. array_push($where,['survey_name','like','%'.$data['survey_name'].'%']);
  787. }
  788. if(isset($data['survey_type']) && $data['survey_type'] != null){
  789. array_push($where,['survey_type','=',$data['survey_type']]);
  790. }
  791. if(isset($data['is_survey']) && $data['is_survey'] != null){
  792. array_push($where,['is_survey','=',$data['is_survey']]);
  793. }
  794. // return Result::success($where);
  795. if (!empty($where)) {
  796. $query = Article::where($where)->where(function ($q) {
  797. $q->whereNotNull('survey_name')->where('survey_name', '!=', '');
  798. });
  799. } else {
  800. $query = Article::where(function ($q) {
  801. $q->whereNotNull('survey_name')->where('survey_name', '!=', '');
  802. });
  803. }
  804. $count = $query->count();
  805. $survey = $query->orderByDesc('id')
  806. ->limit($data['pageSize'])
  807. ->offset(($data['page']-1)*$data['pageSize'])
  808. ->get();
  809. if(empty($survey->toArray())){
  810. return Result::error("暂无调查问卷!",0);
  811. }
  812. $result = [
  813. 'rows'=>$survey,
  814. 'count'=>$count
  815. ];
  816. return Result::success($result);
  817. }
  818. /**
  819. * 后端-获取网站调查问卷详情
  820. * @param array $data
  821. * @return array
  822. */
  823. public function getSurveyInfo(array $data): array
  824. {
  825. if(isset($data['sur_id']) &&!empty($data['sur_id'])){
  826. $where = [ 'sur_id'=>$data['sur_id']];
  827. $choose = ArticleSurvey::where($where)->where('is_other',0)
  828. ->leftJoin('article','article_survey.art_id','article.id')
  829. ->select('article_survey.*','article.survey_type')
  830. ->get()->all();
  831. if(empty($choose)){
  832. return Result::error("此调查问卷不存在",0);
  833. }
  834. $resultsArray = array_column($choose, 'results');
  835. $total = array_sum($resultsArray);
  836. $other = ArticleSurvey::where($where)->where('is_other',1)->where('other_id',0)->first();
  837. $others = ArticleSurvey::where($where)->where('is_other',1)->where('other_id','!=',0)->orderByDesc('created_at')->get()->all();
  838. // $total = 0;
  839. if(!empty($other)){
  840. $total = $total + $other['results'];
  841. $other['choice_name'] ='(其他)';
  842. if(!empty($others)){
  843. $other['hasChildren'] = true;
  844. // array_push($other,['hasChildren','=',true]);
  845. $other['children'] = $others;
  846. $other_choices = [$other->toArray()];
  847. $mer_choice = array_merge($choose,$other_choices);
  848. $value_choice = array_values($mer_choice);
  849. }
  850. else{
  851. // return Result::error('1111');
  852. $other_choices = [$other->toArray()];
  853. $other_choices = array_merge($choose,$other_choices);
  854. $value_choice = array_values($other_choices);
  855. // return Result::success($result);
  856. }
  857. }else{
  858. $value_choice = $choose;
  859. }
  860. $result = [
  861. 'choose'=>$value_choice,
  862. 'total'=>$total
  863. ];
  864. }
  865. return Result::success($result);
  866. }
  867. /**
  868. * 前端-搜索新闻列表
  869. * @param array $data
  870. * @return array
  871. */
  872. public function selectWebsiteArticle(array $data): array
  873. {
  874. $where = [];
  875. // 初始化查询构造器
  876. $category = WebsiteCategory::where('website_id', $data['website_id'])->pluck('category_id');
  877. $query = Article::where('status', 1)
  878. ->whereIn('catid', $category)
  879. ->where(function ($query) use ($data) {
  880. $query->where(function ($subQuery) use ($data) {
  881. $subQuery->whereRaw("JSON_CONTAINS(ignore_ids, '" . intval($data['website_id']) . "') = 0");
  882. })->orWhereNull("ignore_ids");
  883. });
  884. // return Result::success($all_articles);
  885. // 检查是否存在 cityid 参数
  886. if (isset($data['cityid']) && !empty($data['cityid'])) {
  887. $query->whereRaw("JSON_CONTAINS(city_arr_id, '" . intval($data['cityid']) . "')");
  888. }
  889. // 检查是否存在 department_id 参数
  890. if (isset($data['department_id']) && !empty($data['department_id'])) {
  891. $query->whereRaw("JSON_CONTAINS(department_arr_id, '" . intval($data['department_id']) . "')");
  892. }
  893. // 检查是否存在 keyword 参数
  894. if (isset($data['keyword']) && !empty($data['keyword'])) {
  895. $query->where('title', 'like', '%' . $data['keyword'] . '%');
  896. }
  897. // 计算总数
  898. $count = $query->count();
  899. // 分页查询
  900. $articles = $query
  901. ->select(
  902. 'article.id',
  903. 'article.title',
  904. 'article.imgurl',
  905. 'article.author',
  906. 'article.updated_at',
  907. 'article.introduce',
  908. 'article.islink',
  909. 'article.linkurl',
  910. 'article.copyfrom',
  911. 'article.catid',
  912. 'article.department_arr_id',
  913. 'article.city_arr_id',)
  914. ->orderBy("updated_at", "desc")
  915. ->offset(($data['page'] - 1) * $data['pageSize'])
  916. ->limit($data['pageSize'])
  917. ->get()
  918. ->map(function ($article ) use ($data) {
  919. $catid = $article->catid ?? 0;
  920. $pinyin = '';
  921. $category = WebsiteCategory::where('category_id', $catid)->where('website_category.website_id', $data['website_id'])->first();
  922. $pinyin = $category->aLIas_pinyin ? $category->aLIas_pinyin : null;
  923. if ($category->pid != 0 && !empty($category->aLIas_pinyin)) {
  924. $childCategory = WebsiteCategory::where('category_id', $category->pid)->where('website_category.website_id', $data['website_id'])->first();
  925. $pinyin = $childCategory->aLIas_pinyin ? $childCategory->aLIas_pinyin.'/'. $category->aLIas_pinyin : null;
  926. }
  927. $article->pinyin = $pinyin;
  928. return $article;
  929. });
  930. if (empty($articles)) {
  931. return Result::error("没有符合条件的资讯数据");
  932. }
  933. $data = [
  934. 'rows' => $articles,
  935. 'count' => $count,
  936. ];
  937. return Result::success($data);
  938. }
  939. /**
  940. * 模块新闻加强版
  941. * @param array $data
  942. * @return array
  943. */
  944. public function getWebsiteCatidArticle(array $data): array
  945. {
  946. // return Result::success($data);
  947. $where = [
  948. // 'category.status' => 1,
  949. 'website_category.category_id' => $data['catid'],
  950. 'website_category.website_id' => $data['website_id'],
  951. // 'article.status' => 1,
  952. ];
  953. // $category = WebsiteCategory::where($where);
  954. if(isset($data['child_catnum']) && !empty($data['child_catnum'])){
  955. $child_catnum = $data['child_catnum']?? 1;
  956. $category['child'] = WebsiteCategory::where('pid',$data['catid'])->where('website_id',$data['website_id'])->select('category_id','alias')->limit($child_catnum)->get()->toArray();
  957. $childCategoryIds = array_column($category['child'], 'category_id');
  958. if(empty($childCategoryIds)){
  959. return Result::error("暂无子栏目",0);
  960. }
  961. $imgArticles = [];
  962. $textArticles = [];
  963. // return Result::success($childCategoryIds);
  964. if(isset($data['child_imgnum']) && !empty($data['child_imgnum']) && $data['child_imgnum']!=0){
  965. // 初始化子分类图片新闻和文字新闻数组
  966. // 查询所有子级栏目的图文新闻
  967. $imgArticles = Article::where('catid', $childCategoryIds[0])
  968. ->where(function ($query) use ($data) {
  969. $query->where(function ($subQuery) use ($data) {
  970. $subQuery->whereRaw("JSON_CONTAINS(ignore_ids, '".intval($data['website_id'])."') = 0");
  971. })->orWhereNull("ignore_ids");
  972. })
  973. ->where('status', 1)
  974. ->where('imgurl', '!=', '')
  975. ->select('*')
  976. ->orderBy('updated_at', 'desc')
  977. ->limit($data['child_imgnum'])
  978. ->get();
  979. }
  980. if( isset($data['child_textnum']) && !empty($data['child_textnum']) && $data['child_textnum']!=0){
  981. // 查询所有子级栏目的文字新闻
  982. $textArticles = Article::where('catid', $childCategoryIds[0])
  983. ->where('status', 1)
  984. ->where(function ($query) use ($data) {
  985. $query->where(function ($subQuery) use ($data) {
  986. $subQuery->whereRaw("JSON_CONTAINS(ignore_ids, '".intval($data['website_id'])."') = 0");
  987. })->orWhereNull("ignore_ids");
  988. })
  989. // ->where(function ($query) {
  990. // $query->whereNull('imgurl')
  991. // ->orWhere('imgurl', '');
  992. // })
  993. ->select('*')
  994. ->orderBy('updated_at', 'desc')
  995. ->limit($data['child_textnum'])
  996. ->get();
  997. }
  998. // 遍历子分类,将图文新闻和文字新闻分别添加到子分类中
  999. $category['child'] = array_map(function ($child) use ($imgArticles, $textArticles) {
  1000. $child['img'] = $imgArticles? $imgArticles->where('catid', $child['category_id']) : [];
  1001. $child['text'] = $textArticles? $textArticles->where('catid', $child['category_id']) : [];
  1002. return $child;
  1003. }, $category['child']);
  1004. }
  1005. // }
  1006. if (isset($data['img_num']) && !empty($data['img_num'])) {
  1007. $category['img'] = WebsiteCategory::where($where)
  1008. ->leftJoin('article', 'article.catid', 'website_category.category_id')
  1009. ->where('article.status', 1)
  1010. ->where('article.imgurl', '!=', '')
  1011. ->select('article.*','website_category.category_id','website_category.alias')
  1012. ->orderBy('article.updated_at', 'desc')
  1013. ->limit($data['img_num'])
  1014. ->get();
  1015. }
  1016. if (isset($data['text_num']) && !empty($data['text_num'])) {
  1017. $category['text'] = WebsiteCategory::where($where)
  1018. ->leftJoin('article', 'article.catid', 'website_category.category_id')
  1019. ->where('article.status', 1)
  1020. // ->where(function ($query) {
  1021. // $query->whereNull('article.imgurl')
  1022. // ->orWhere('article.imgurl', '');
  1023. // })
  1024. ->select('article.*','website_category.category_id','website_category.alias')
  1025. ->orderBy('article.updated_at', 'desc')
  1026. ->limit($data['text_num'])
  1027. ->get();
  1028. }
  1029. // $category = $category->get();
  1030. if(empty($category)){
  1031. return Result::error("查询失败", 0);
  1032. }
  1033. return Result::success($category);
  1034. }
  1035. /**
  1036. * 模块新闻加强plus版
  1037. * @param array $data
  1038. * @return array
  1039. */
  1040. public function getWebsiteAllArticle(array $data): array
  1041. {
  1042. // 修正传入的字符串,将单引号替换为双引号
  1043. $input['id'] = $data['id'];
  1044. $input['website_id'] = $data['website_id'];
  1045. // 将 JSON 字符串转换为 PHP 数组
  1046. $data = json_decode($input['id'], true);
  1047. // 使用 array_map 处理每个元素
  1048. $result = array_map(function ($item) use ($input) {
  1049. // 检查parent元素是否存在且不是undefined
  1050. if (isset($item['parent']) && $item['parent'] != 'undefined' && $item['parent']!= "") {
  1051. list($parentCatId, $parentImgNum, $parentTextNum) = explode(',', $item['parent']);
  1052. $website = [
  1053. 'website_id' => $input['website_id'],
  1054. ];
  1055. // 查询栏目名称
  1056. $category = WebsiteCategory::where('category_id', $parentCatId)->where($website)->first(['alias', 'category_id','aLIas_pinyin']);
  1057. if(empty($category)){
  1058. $parent_alias = '';
  1059. $parent_pinyin = null;
  1060. $imgArticles = [];
  1061. $textArticles = [];
  1062. }else{
  1063. $parent_alias = $category->alias ?? '';
  1064. $parent_pinyin = $category->aLIas_pinyin ? $category->aLIas_pinyin : null;
  1065. // 查找子分类ID数组
  1066. $childCategoryIds = WebsiteCategory::where('pid', $parentCatId)->where($website)->pluck('category_id')->toArray();
  1067. array_push($childCategoryIds,$parentCatId);
  1068. $childCategoryIds = json_encode(array_values(array_unique($childCategoryIds)));
  1069. if($parentImgNum!=0){
  1070. // 查询图片新闻
  1071. $imgArticles = Article::where('article.status', 1)
  1072. ->where(function($query) use ($parentCatId) {
  1073. $query->whereRaw("JSON_CONTAINS(cat_arr_id, '\"$parentCatId\"')")
  1074. ->orWhereRaw("JSON_CONTAINS(cat_arr_id, '$parentCatId')");
  1075. })
  1076. ->where(function ($query) use ($website) {
  1077. $query->where(function ($subQuery) use ($website) {
  1078. $subQuery->whereRaw("JSON_CONTAINS(ignore_ids, '".intval($website['website_id'])."') = 0")
  1079. ->orWhereNull("ignore_ids");
  1080. });
  1081. })
  1082. ->where('imgurl', '!=', '')
  1083. ->leftJoin('website_category', function($join) use ($website) {
  1084. $join->on('article.catid', '=', 'website_category.category_id')
  1085. ->where('website_category.website_id', '=', $website['website_id']);
  1086. })
  1087. ->select(
  1088. 'article.id',
  1089. 'article.title',
  1090. 'article.imgurl',
  1091. 'article.author',
  1092. 'article.updated_at',
  1093. 'article.introduce',
  1094. 'article.islink',
  1095. 'article.linkurl',
  1096. 'article.copyfrom',
  1097. 'article.catid',
  1098. 'website_category.alias as category_name',
  1099. DB::raw("CASE WHEN article.catid = $parentCatId THEN '$parent_pinyin'
  1100. ELSE CONCAT('$parent_pinyin', '/', website_category.aLIas_pinyin) END as pinyin")
  1101. )
  1102. ->orderBy('updated_at', 'desc')
  1103. ->limit($parentImgNum)
  1104. ->get()->all();
  1105. // 查询文字新闻
  1106. }
  1107. if($parentTextNum!=0){
  1108. $textArticles = [];
  1109. $textArticles = Article::where('article.status', 1)
  1110. ->where(function($query) use ($parentCatId) {
  1111. $query->whereRaw("JSON_CONTAINS(cat_arr_id, '\"$parentCatId\"')")
  1112. ->orWhereRaw("JSON_CONTAINS(cat_arr_id, '$parentCatId')");
  1113. })
  1114. ->where(function ($query) use ($website) {
  1115. $query->where(function ($subQuery) use ($website) {
  1116. $subQuery->whereRaw("JSON_CONTAINS(ignore_ids, '".intval($website['website_id'])."') = 0")
  1117. ->orWhereNull("ignore_ids");
  1118. });
  1119. })
  1120. ->leftJoin('website_category', function($join) use ($website) {
  1121. $join->on('article.catid', '=', 'website_category.category_id')
  1122. ->where('website_category.website_id', '=', $website['website_id']);
  1123. })
  1124. ->select(
  1125. 'article.id',
  1126. 'article.title',
  1127. 'article.imgurl',
  1128. 'article.author',
  1129. 'article.updated_at',
  1130. 'article.introduce',
  1131. 'article.islink',
  1132. 'article.linkurl',
  1133. 'article.copyfrom',
  1134. 'article.catid',
  1135. 'website_category.alias as category_name',
  1136. DB::raw("CASE WHEN article.catid = $parentCatId THEN '$parent_pinyin'
  1137. ELSE CONCAT('$parent_pinyin', '/', website_category.aLIas_pinyin) END as pinyin")
  1138. )
  1139. ->orderBy('updated_at', 'desc')
  1140. ->limit($parentTextNum)
  1141. ->get()->all();
  1142. }
  1143. }
  1144. }
  1145. $resultItem = [
  1146. 'alias' => $parent_alias ?? '',
  1147. 'category_id' => $parentCatId ?? 0,
  1148. 'pinyin' => $parent_pinyin ?? null,
  1149. 'imgnum' => $imgArticles ?? [],
  1150. 'textnum' => $textArticles ?? [],
  1151. ];
  1152. if(isset($item['child']) && $item['child'] != 'undefined' && $item['child'] != ""){
  1153. $parent_pinyin_str = is_string($parent_pinyin) ? $parent_pinyin.'/' : '';
  1154. $childCategory = WebsiteCategory::where('pid', $parentCatId)->where($website)
  1155. ->selectRaw("category_id, alias, CONCAT( ?, aLIas_pinyin) as aLIas_pinyin", [$parent_pinyin_str])
  1156. ->get()->all();
  1157. if (!empty($childCategory)) {
  1158. list($childCatId, $childImgNum, $childTextNum) = explode(',', $item['child']);
  1159. // 查询子栏目名称
  1160. $childCategoryInfo = WebsiteCategory::where('category_id', $childCatId)->where($website)
  1161. ->selectRaw("category_id, alias, CONCAT( ?, aLIas_pinyin) as aLIas_pinyin", [$parent_pinyin_str])
  1162. ->first();
  1163. if(empty($childCategoryInfo) || ($childImgNum==0 && $childTextNum==0)){
  1164. $childImgArticles = [];
  1165. $childTextArticles = [];
  1166. $resultItem['child'] = [];
  1167. }else{
  1168. $child_pinyin = $childCategoryInfo->aLIas_pinyin? $childCategoryInfo->aLIas_pinyin : null;
  1169. // 查询子栏目图片新闻
  1170. $childImgArticles = Article::where('catid', $childCatId)
  1171. ->where('status', 1)
  1172. ->where(function ($query) use ($website) {
  1173. $query->where(function ($subQuery) use ($website) {
  1174. $subQuery->whereRaw("JSON_CONTAINS(ignore_ids, '".intval($website['website_id'])."') = 0");
  1175. })->orWhereNull("ignore_ids");
  1176. })
  1177. ->select(
  1178. 'article.id',
  1179. 'article.title',
  1180. 'article.imgurl',
  1181. 'article.author',
  1182. 'article.updated_at',
  1183. 'article.introduce',
  1184. 'article.islink',
  1185. 'article.linkurl',
  1186. 'article.copyfrom',
  1187. DB::raw("'$child_pinyin' as pinyin"))
  1188. ->where('imgurl', '!=', '')
  1189. ->orderBy('updated_at', 'desc')
  1190. ->limit($childImgNum)
  1191. ->get()->all();
  1192. // 查询子栏目文字新闻
  1193. $childTextArticles = Article::where('catid', $childCatId)
  1194. ->where('status', 1)
  1195. ->where(function ($query) use ($website) {
  1196. $query->where(function ($subQuery) use ($website) {
  1197. $subQuery->whereRaw("JSON_CONTAINS(ignore_ids, '".intval($website['website_id'])."') = 0");
  1198. })->orWhereNull("ignore_ids");
  1199. })
  1200. ->select(
  1201. 'article.id',
  1202. 'article.title',
  1203. 'article.author',
  1204. 'article.updated_at',
  1205. 'article.introduce',
  1206. 'article.islink',
  1207. 'article.linkurl',
  1208. 'article.copyfrom',
  1209. DB::raw("'$child_pinyin' as pinyin"))
  1210. ->orderBy('updated_at', 'desc')
  1211. ->limit($childTextNum)
  1212. ->get()->all();
  1213. $resultItem['child'] = [
  1214. 'alias' => $childCategoryInfo ? $childCategoryInfo->alias : null,
  1215. 'category_id' => $childCatId,
  1216. 'pinyin' => $childCategoryInfo->aLIas_pinyin ?? '',
  1217. 'all_childcat' => $childCategory,
  1218. 'imgnum' => $childImgArticles,
  1219. 'textnum' => $childTextArticles,
  1220. ];
  1221. }
  1222. // $resultItem['pinyin'] = $childCategoryInfo->aLIas_pinyin ?? '';
  1223. }
  1224. }else{
  1225. $resultItem['child'] = [];
  1226. }
  1227. return $resultItem;
  1228. }, $data);
  1229. return Result::success($result);
  1230. // return Result::success($data);
  1231. }
  1232. /**
  1233. * 乡村网-获取特殊新闻模块
  1234. * @param array $data
  1235. * @return array
  1236. */
  1237. public function getWebsiteArticles(array $data): array
  1238. {
  1239. $input['id'] = $data['id'];
  1240. $input['website_id'] = $data['website_id'];
  1241. $data = json_decode($input['id'], true);
  1242. // 使用 array_map 处理每个元素
  1243. $result = array_map(function ($item) use ($input) {
  1244. list($parentCatId, $parentImgNum, $parentTextNum) = explode(',', $item['parent']);
  1245. $website = [
  1246. 'website_id' => $input['website_id']
  1247. ];
  1248. // 查询栏目名称
  1249. $category = WebsiteCategory::where('category_id', $parentCatId)->where($website)->first(['alias', 'category_id','aLIas_pinyin']);
  1250. $pinyin = $category->aLIas_pinyin ? $category->aLIas_pinyin : null;
  1251. if(empty($category)){
  1252. $imgArticles = [];
  1253. $textArticles = [];
  1254. // return Result::error("暂无此栏目",0);
  1255. }else{
  1256. $child_category = WebsiteCategory::where('pid', $parentCatId)->where($website)->pluck('category_id')->toArray();
  1257. $parent_alias = $category->aLIas_pinyin ? $category->aLIas_pinyin.'/' : null;
  1258. // return Result::success($website);
  1259. // 查询图片新闻
  1260. // 合并查询条件
  1261. $baseQuery = Article::where(function ($query) use ($website) {
  1262. $query->where(function ($subQuery) use ($website) {
  1263. $subQuery->whereRaw("JSON_CONTAINS(ignore_ids, '" . intval($website['website_id']) . "') = 0");
  1264. })->orWhereNull("ignore_ids");
  1265. })
  1266. ->where('website_category.website_id', $website['website_id'])
  1267. ->where('article.status', 1)
  1268. ->leftJoin('website_category', 'website_category.category_id', 'article.catid');
  1269. // 查询文字新闻
  1270. $textArticles = clone $baseQuery;
  1271. $textArticles = $textArticles->whereIn('catid',$child_category)
  1272. ->select(
  1273. 'article.id',
  1274. 'article.title',
  1275. // 'article.imgurl',
  1276. 'article.author',
  1277. 'article.updated_at',
  1278. 'article.introduce',
  1279. 'article.islink',
  1280. 'article.linkurl',
  1281. 'article.copyfrom',
  1282. 'website_category.category_id',
  1283. 'website_category.alias',
  1284. 'website_category.aLIas_pinyin'
  1285. )
  1286. ->selectRaw("CONCAT(?, aLIas_pinyin) as aLIas_pinyin", [$parent_alias])
  1287. ->orderBy('article.updated_at', 'desc')
  1288. ->limit($parentTextNum)
  1289. ->get()
  1290. ->all();
  1291. if(empty($textArticles)){
  1292. $textArticles = clone $baseQuery;
  1293. $textArticles = $textArticles->where('catid',$parentCatId)
  1294. ->select(
  1295. 'article.id',
  1296. 'article.title',
  1297. // 'article.imgurl',
  1298. 'article.author',
  1299. 'article.updated_at',
  1300. 'article.introduce',
  1301. 'article.islink',
  1302. 'article.linkurl',
  1303. 'article.copyfrom',
  1304. 'website_category.category_id',
  1305. 'website_category.alias',
  1306. 'website_category.aLIas_pinyin'
  1307. )
  1308. ->selectRaw("CONCAT(?, aLIas_pinyin) as aLIas_pinyin", [$parent_alias])
  1309. ->orderBy('article.updated_at', 'desc')
  1310. ->limit($parentTextNum)
  1311. ->get()
  1312. ->all();
  1313. }
  1314. // 查询图片新闻
  1315. $imgArticles = clone $baseQuery;
  1316. $imgArticles = $imgArticles->where('imgurl', '!=', '')->whereIn('catid',$child_category)
  1317. ->select(
  1318. 'article.id',
  1319. 'article.title',
  1320. 'article.imgurl',
  1321. 'article.author',
  1322. 'article.updated_at',
  1323. 'article.introduce',
  1324. 'article.islink',
  1325. 'article.linkurl',
  1326. 'article.copyfrom',
  1327. 'website_category.category_id',
  1328. 'website_category.alias',
  1329. 'website_category.aLIas_pinyin'
  1330. )
  1331. ->selectRaw("CONCAT(?, aLIas_pinyin) as aLIas_pinyin", [$parent_alias])
  1332. ->orderBy('article.updated_at', 'desc')
  1333. ->limit($parentImgNum)
  1334. ->get()
  1335. ->all();
  1336. if(empty($imgArticles)){
  1337. $imgArticles = clone $baseQuery;
  1338. $imgArticles = $imgArticles->where('imgurl', '!=', '')->where('catid',$parentCatId)
  1339. ->select(
  1340. 'article.id',
  1341. 'article.title',
  1342. 'article.imgurl',
  1343. 'article.author',
  1344. 'article.updated_at',
  1345. 'article.introduce',
  1346. 'article.islink',
  1347. 'article.linkurl',
  1348. 'article.copyfrom',
  1349. 'website_category.category_id',
  1350. 'website_category.alias',
  1351. 'website_category.aLIas_pinyin'
  1352. )
  1353. ->selectRaw("CONCAT(?, aLIas_pinyin) as aLIas_pinyin", [$parent_alias])
  1354. ->orderBy('article.updated_at', 'desc')
  1355. ->limit($parentImgNum)
  1356. ->get()
  1357. ->all();
  1358. }
  1359. }
  1360. $resultItem = [
  1361. 'alias' => $category ? $category->alias : null,
  1362. 'category_id' => $parentCatId,
  1363. 'pinyin' => $pinyin ? $pinyin : null,
  1364. 'imgnum' => $imgArticles ?? [],
  1365. 'textnum' => $textArticles ?? [],
  1366. ];
  1367. return $resultItem;
  1368. }, $data);
  1369. return Result::success($result);
  1370. }
  1371. // 封装处理商品的路由问题
  1372. function processGoods($goods, $data) {
  1373. return $goods->map(function ($good) use ($data) {
  1374. $catid = $good->catid ?? 0;
  1375. $pinyin = '';
  1376. $category = WebsiteCategory::where('category_id', $catid)->where('website_id', $data['website_id'])->first();
  1377. if (!empty($category->pid) && $category->pid != 0) {
  1378. $level = json_decode($category->category_arr_id);
  1379. $pinyin = WebsiteCategory::whereIn('category_id', $level)
  1380. ->orderByRaw('FIELD(category_id, '. implode(',', $level). ')')
  1381. ->get(['aLIas_pinyin'])
  1382. ->pluck('aLIas_pinyin')
  1383. ->implode('/');
  1384. } else {
  1385. $pinyin = $category->aLIas_pinyin ?? '';
  1386. }
  1387. if(isset($good->city_id) &&!empty($good->city_id)){
  1388. $city = District::where('id', $good->city_id)->first(['name']);
  1389. $good->city_name = $city->name ?? '';
  1390. }
  1391. // 解析imgurl JSON并取第一条数据
  1392. $imgUrls = json_decode($good->imgurl, true);
  1393. $good->imgurl = !empty($imgUrls) ? $imgUrls[0] : null;
  1394. $good->pinyin = $pinyin;
  1395. return $good;
  1396. });
  1397. }
  1398. /**
  1399. * 获取商品模块
  1400. * @param array $data
  1401. * @return array
  1402. * */
  1403. public function getWebsiteshop(array $data): array
  1404. {
  1405. $input['id'] = $data['id'];
  1406. $input['website_id'] = $data['website_id'];
  1407. // return Result::success($input);
  1408. $data = json_decode($input['id'] ?? '', true) ?? [];
  1409. $result = array_map(function ($item) use ($input) {
  1410. // 检查parent元素是否存在且不是undefined
  1411. if (isset($item['level']) && $item['level'] != 'undefined' && $item['level']!= "") {
  1412. list($Levelid, $goodStart,$goodNum) = explode(',', $item['level']);
  1413. $website = $input['website_id'];
  1414. $query = Good::where('good.status', 2)
  1415. ->where('good.website_id', $website);
  1416. switch ($Levelid) {
  1417. case 1:
  1418. case 2:
  1419. case 3:
  1420. $goods = $query->where(function($q) use ($Levelid) {
  1421. $q->whereRaw("JSON_CONTAINS(good.level, '". intval($Levelid). "') = 0")
  1422. ->orWhereRaw("JSON_CONTAINS(good.level, '\"". intval($Levelid). "\"') = 0");
  1423. });
  1424. break;
  1425. case 4:
  1426. $goods = $query;
  1427. break;
  1428. case 5:
  1429. $goods = $query->where('type_id',1);
  1430. break;
  1431. case 6:
  1432. $goods = $query->where('type_id',2);
  1433. break;
  1434. default:
  1435. return [];
  1436. }
  1437. $all_goods = $goods
  1438. ->select('good.id', 'good.name', 'good.imgurl', 'good.description',
  1439. 'good.updated_at', 'good.catid','good.type_id','good.price','good.level',
  1440. 'good.website_id')
  1441. ->orderBy('updated_at','desc')
  1442. ->offset($goodStart)
  1443. ->limit($goodNum)
  1444. ->get();
  1445. $all_goods = $this->processGoods($all_goods, $input);
  1446. }
  1447. return $all_goods;
  1448. }, $data);
  1449. return Result::success($result);
  1450. }
  1451. /**
  1452. * 获取商品分类
  1453. * @param array $data
  1454. * @return array
  1455. * */
  1456. public function getWebsiteshopCat(array $data): array
  1457. {
  1458. $category = WebsiteCategory::where('website_id', $data['website_id'])
  1459. ->whereRaw("JSON_CONTAINS(category_arr_id, '". intval($data['id']). "') = 1")
  1460. ->orWhereRaw("JSON_CONTAINS(category_arr_id, '\"". intval($data['id']). "\"') = 1")
  1461. ->select('category_id', 'alias','aLIas_pinyin','pid','category_arr_id')
  1462. ->orderBy('sort')
  1463. ->get()
  1464. ->map(function ($item) use ($data) {
  1465. $pinyin = [];
  1466. $level = json_decode($item->category_arr_id);
  1467. // 递归获取所有父级栏目的拼音
  1468. if($item->pid!= 0){
  1469. $pinyin = WebsiteCategory::whereIn('category_id', $level)
  1470. ->orderByRaw('FIELD(category_id, '.implode(',', $level).')')
  1471. ->get(['aLIas_pinyin'])
  1472. ->pluck('aLIas_pinyin')
  1473. ->implode('/');
  1474. }else{
  1475. $pinyin = $item->aLIas_pinyin;
  1476. }
  1477. $item->aLIas_pinyin = $pinyin;
  1478. return $item;
  1479. });
  1480. $goods = Good::where('website_id', $data['website_id'])
  1481. ->where('status', 2)
  1482. ->select('good.id as good_id', 'name','imgurl','description','updated_at','catid','type_id','website_id')
  1483. ->latest('updated_at')
  1484. ->offset(($data['page']-1)*$data['pageSize'])
  1485. ->limit($data['pageSize'])
  1486. ->get();
  1487. $goods = $this->processGoods($goods, $data);
  1488. if(empty($category)){
  1489. return Result::error("栏目查询失败", 0);
  1490. }
  1491. if(empty($goods)){
  1492. return Result::error("商品查询失败", 0);
  1493. }
  1494. // 调用Tool中的buildMenuTree方法构建菜单树
  1495. $cat_tree = Result::buildMenuTree($category);
  1496. $result = [
  1497. 'category' => $cat_tree,
  1498. 'goods' => $goods,
  1499. ];
  1500. // $resul['goods'] = $goods;
  1501. if(empty($result)){
  1502. return Result::error("查询失败", 0);
  1503. }
  1504. return Result::success($result);
  1505. }
  1506. /*
  1507. * 获取商品列表
  1508. * @param array $data
  1509. * @return array
  1510. * */
  1511. public function getWebsiteshopList(array $data): array
  1512. {
  1513. // return Result::success($data);
  1514. $where = [
  1515. 'status' => 2,
  1516. 'website_id' => $data['website_id'],
  1517. ];
  1518. if((empty($data['catid']) ||!isset($data['catid'])) && (empty($data['keyword']) ||!isset($data['keyword'])) && (empty($data['city_id']) || !isset($data['city_id']))){
  1519. return Result::error("查询失败", 0);
  1520. }
  1521. if ((empty($data['catid']) || !isset($data['catid'])) && (!empty($data['city_id']) || isset($data['city_id']))) {
  1522. $category = WebsiteCategory::where('website_id', $data['website_id'])->where('pid',$data['id'])->orderBy('sort')->first(['category_id']);
  1523. $data['catid'] = $category->category_id ?? 0;
  1524. }
  1525. if(isset($data['keyword']) &&!empty($data['keyword'])){
  1526. array_push($where, ['name', 'like', '%'. $data['keyword'].'%']);
  1527. }
  1528. if(isset($data['type_id']) && !empty($data['type_id'])){
  1529. array_push($where, ['type_id', $data['type_id']]);
  1530. }
  1531. $query = Good::where($where)
  1532. ->when(isset($data['catid']) &&!empty($data['catid']), function ($query) use ($data) {
  1533. $query->where(function($q) use ($data) {
  1534. $q->WhereRaw("JSON_CONTAINS(good.cat_arr_id, '". intval($data['catid']). "') = 1")
  1535. ->orWhereRaw("JSON_CONTAINS(good.cat_arr_id, '\"". intval($data['catid']). "\"') = 1");
  1536. });
  1537. })
  1538. ->when(isset($data['city_id']) && !empty($data['city_id']), function ($query) use ($data) {
  1539. $query->where(function($q) use ($data) {
  1540. $q->WhereRaw("JSON_CONTAINS(good.city_arr_id, '". intval($data['city_id']). "') = 1")
  1541. ->orWhereRaw("JSON_CONTAINS(good.city_arr_id, '\"". intval($data['city_id']). "\"') = 1");
  1542. });
  1543. })
  1544. ->select('good.id', 'good.name', 'good.imgurl', 'good.description', 'good.updated_at',
  1545. 'good.catid','good.type_id','good.website_id','good.cat_arr_id','good.created_at','good.city_id')
  1546. ->latest('updated_at');
  1547. // 获取 type_id 为 1 的数据
  1548. $result['type1'] = $this->processGoods(
  1549. $query->clone()
  1550. ->where('type_id', 1)
  1551. ->offset(($data['page'] - 1) * $data['pageSize'])
  1552. ->limit($data['pageSize'])
  1553. ->get(),
  1554. $data
  1555. );
  1556. // 获取 type_id 为 2 的数据
  1557. $result['type2'] = $this->processGoods(
  1558. $query->clone()
  1559. ->where('type_id', 2)
  1560. ->offset(($data['page'] - 1) * $data['pageSize'])
  1561. ->limit($data['pageSize'])
  1562. ->get(),
  1563. $data
  1564. );
  1565. if(empty($result)){
  1566. return Result::error("查询失败", 0);
  1567. }
  1568. return Result::success($result);
  1569. }
  1570. /**
  1571. * 获取商品详情
  1572. * @param array $data
  1573. * @return array
  1574. * */
  1575. public function getWebsiteshopInfo(array $data): array
  1576. {
  1577. $where = [
  1578. 'good.status' => 2,
  1579. 'good.website_id' => $data['website_id'],
  1580. ];
  1581. $goods = Good::where($where)
  1582. ->where('good.id', $data['id'])
  1583. ->leftJoin('website_category', 'website_category.category_id', 'good.catid')
  1584. ->select('good.*','website_category.alias','website_category.category_id')
  1585. ->first();
  1586. if(empty($goods)){
  1587. return Result::error("查询失败", 0);
  1588. }
  1589. $goods->imgurl = json_decode($goods->imgurl, true);
  1590. return Result::success($goods);
  1591. }
  1592. /**
  1593. * 封装处理文章的路由问题
  1594. * */
  1595. function processArticles($articles, $data) {
  1596. if (!is_array($data)) {
  1597. // 可以根据实际情况进行日志记录或抛出异常
  1598. // 这里简单输出错误信息
  1599. echo "Error: \$data is not an array in processArticles. It is of type ". gettype($data). PHP_EOL;
  1600. return $articles;
  1601. }
  1602. return $articles->map(function ($article) use ($data) {
  1603. $catid = $article->cat_arr_id?? '';
  1604. $level = json_decode($catid, true);
  1605. $pinyin = '';
  1606. $category = WebsiteCategory::where('category_id', $catid)->where('website_id', $data['website_id'])->first();
  1607. if (!empty($category->pid) && $category->pid!= 0) {
  1608. $pinyin = WebsiteCategory::whereIn('category_id', $level)
  1609. ->orderByRaw('FIELD(category_id, '. implode(',', $level). ')')
  1610. ->get(['aLIas_pinyin'])
  1611. ->pluck('aLIas_pinyin')
  1612. ->implode('/');
  1613. } else {
  1614. $pinyin = $category->aLIas_pinyin ?? '';
  1615. }
  1616. $article->pinyin = $pinyin;
  1617. return $article;
  1618. });
  1619. }
  1620. // 封装处理由问题
  1621. function processJob($job, $data) {
  1622. return $job->map(function ($job) use ($data) {
  1623. $category = $job->cat_arr_id?? '';
  1624. $cityid = $job->city_arr_id?? '';
  1625. $city = json_decode($cityid, true);
  1626. $pinyin = '';
  1627. $level = json_decode($category, true);
  1628. // 路由
  1629. if(!empty($level)){
  1630. $pinyin = WebsiteCategory::whereIn('category_id', $level)
  1631. ->where('website_id', $data['website_id']) // 添加网站ID条件 her
  1632. ->orderByRaw('FIELD(category_id, '. implode(',', $level). ')')
  1633. ->get(['aLIas_pinyin'])
  1634. ->pluck('aLIas_pinyin')
  1635. ->implode('/');
  1636. if(empty($pinyin)){
  1637. $pinyin = $category->aLIas_pinyin?? '';
  1638. }
  1639. }
  1640. // 取城市-市??省
  1641. if(!empty($city) && is_array($city)){
  1642. if(isset($city[1] ) && !empty($city[1])){
  1643. $city = District::where('id', $city[1])->first(['name']);
  1644. $job->city_name = $city->name?? '';
  1645. }else if(isset($city[0] ) && !empty($city[0])){
  1646. $city = District::where('id', $city[0])->first(['name']);
  1647. $job->city_name = $city->name?? '';
  1648. }else{
  1649. $job->city_name = '全国';
  1650. }
  1651. }
  1652. // 取公司地址
  1653. if(isset($job->address_arr_id) && !empty($job->address_arr_id)){
  1654. $address_id = json_decode($job->address_arr_id, true) ?? [];
  1655. if(is_array($address_id) && !empty($address_id)){
  1656. $address = District::whereIn('id', $address_id)
  1657. ->orderBy('level', 'asc')
  1658. ->get(['name'])
  1659. ->pluck('name')
  1660. ->implode('');
  1661. // $job->address_name = $address ?? '';
  1662. $job->address_name = ($address ?? '') . ($job->address ?? '');
  1663. }
  1664. }
  1665. // 取行业
  1666. if(!empty($job->hy_id) || !empty($job->industry) || !empty($job->company_hy_id)){
  1667. $hy_name = JobIndustry::when($job, function ($query) use ($job) {
  1668. if(!empty($job->industry)){
  1669. $query->where('hyid', $job->industry);
  1670. }else if(!empty($job->hy_id)){
  1671. $query->where('hyid', $job->hy_id);
  1672. }else{
  1673. $query->where('hyid', $job->company_hy_id);
  1674. }
  1675. })->first(['hyname']);
  1676. $job->hy_name = $hy_name->hyname?? '';
  1677. }
  1678. // 取职位
  1679. if((isset($job->zw_id) && !empty($job->zw_id)) || (isset($job->job) && !empty($job->job))){
  1680. $zwid = $job->job?? $job->zw_id;
  1681. $zw_name = JobPosition::where('zwid', $zwid)->first(['zwname']);
  1682. $job->zw_name = $zw_name->zwname?? '';
  1683. }
  1684. // 取具体职位
  1685. if((isset($job->jtzw_id) &&!empty($job->jtzw_id)) || (isset($job->job_name_get) && !empty($job->job_name_get))){
  1686. $jtzwid = $job->job_name_get ?? $job->jtzw_id;
  1687. $jtzw_name = JobPosition::where('zwid', $jtzwid)->first(['zwname']);
  1688. $job->jtzw_name = $jtzw_name->zwname?? '';
  1689. }
  1690. // 取工作经验
  1691. if(isset($job->experience) &&!empty($job->experience)){
  1692. $experience = JobEnum::where('egroup','years')->where('evalue',$job->experience)->first(['ename']);
  1693. $job->experience_name = $experience->ename?? '';
  1694. }
  1695. // 取学历
  1696. if(isset($job->educational) &&!empty($job->educational)){
  1697. $education = JobEnum::where('egroup','education')->where('evalue',$job->educational)->first(['ename']);
  1698. $job->education_name = $education->ename?? '';
  1699. }
  1700. // 语言
  1701. if(isset($job->language) &&!empty($job->language)){
  1702. $language = JobEnum::where('egroup','language')->where('evalue',$job->language)->first(['ename']);
  1703. $job->language_name = $language->ename?? '';
  1704. }
  1705. // 薪资
  1706. if(isset($job->salary) &&!empty($job->salary)){
  1707. if(isset($job->type) &&!empty($job->type) && $job->type == 1){
  1708. $where['evalue'] = $job->salary;
  1709. }else{
  1710. $where['id'] = $job->salary;
  1711. }
  1712. $salary = JobEnum::where('egroup','income')->where($where)->first(['ename']);
  1713. $job->salary_name = $salary->ename?? '';
  1714. }
  1715. // 职位性质
  1716. if(isset($job->nature_id) &&!empty($job->nature_id)){
  1717. $job_nature = JobEnum::where('egroup','nature')->where('evalue',$job->nature_id)->first(['ename']);
  1718. $job->job_nature_name = $job_nature->ename?? '';
  1719. }
  1720. // 公司规模
  1721. if(isset($job->company_size) &&!empty($job->company_size)){
  1722. $company_size = JobEnum::where('egroup','cosize')->where('evalue',$job->company_size)->first(['ename']);
  1723. $job->company_size_name = $company_size->ename?? '';
  1724. }
  1725. // 公司性质
  1726. if(isset($job->company_nature) && !empty($job->company_nature)){
  1727. $company_nature = JobNature::where('id',$job->company_nature)->first(['nature_name']);
  1728. $job->company_nature_name = $company_nature->nature_name?? '';
  1729. }
  1730. $job->pinyin = $pinyin;
  1731. return $job;
  1732. });
  1733. }
  1734. /**
  1735. * 获取书籍模块
  1736. * @param array $data
  1737. * @return array
  1738. * */
  1739. public function getWebsiteBook(array $data): array
  1740. {
  1741. $input['id'] = $data['id'];
  1742. $input['website_id'] = $data['website_id'];
  1743. // 将 JSON 字符串转换为 PHP 数组
  1744. $data = json_decode($input['id'], true);
  1745. // 使用 array_map 处理每个元素
  1746. $result = array_map(function ($item) use ($input) {
  1747. // 检查parent元素是否存在且不是undefined
  1748. if (isset($item['parent']) && $item['parent'] != 'undefined' && $item['parent']!= "") {
  1749. list($parentCatId, $parentImgNum, $parentTextNum) = explode(',', $item['parent']);
  1750. $website = [
  1751. 'website_id' => $input['website_id'],
  1752. ];
  1753. // 查询栏目名称
  1754. $category = WebsiteCategory::where('category_id', $parentCatId)->where($website)->first(['alias', 'category_id','aLIas_pinyin']);
  1755. if(empty($category)){
  1756. $parent_alias = '';
  1757. $parent_pinyin = null;
  1758. $imgBooks = [];
  1759. $textBooks = [];
  1760. }else{
  1761. $parent_alias = $category->alias ?? '';
  1762. $parent_pinyin = $category->aLIas_pinyin ? $category->aLIas_pinyin : null;
  1763. // 查找子分类ID数组
  1764. $childCategoryIds = WebsiteCategory::where('pid', $parentCatId)->where($website)->pluck('category_id')->toArray();
  1765. array_push($childCategoryIds,$parentCatId);
  1766. $childCategoryIds = json_encode(array_values(array_unique($childCategoryIds)));
  1767. if($parentImgNum!=0){
  1768. // 查询图片新闻
  1769. $imgBooks = Book::where(function($query) use ($parentCatId) {
  1770. $query->whereRaw("JSON_CONTAINS(cat_arr_id, '\"$parentCatId\"')")
  1771. ->orWhereRaw("JSON_CONTAINS(cat_arr_id, '$parentCatId')");
  1772. })
  1773. ->where('book.status', 2)
  1774. ->where('book.img_url', '!=', '')
  1775. ->leftJoin('website_category', function($join) use ($website) {
  1776. $join->on('book.catid', '=', 'website_category.category_id')
  1777. ->where('website_category.website_id', '=', $website['website_id']);
  1778. })
  1779. ->select(
  1780. 'book.id',
  1781. 'book.title',
  1782. 'book.img_url',
  1783. 'book.price',
  1784. 'book.market_price',
  1785. 'book.description',
  1786. 'book.catid',
  1787. 'book.description',
  1788. 'book.updated_at',
  1789. 'website_category.alias as category_name',
  1790. DB::raw("CASE WHEN book.catid = $parentCatId THEN '$parent_pinyin'
  1791. ELSE CONCAT('$parent_pinyin', '/', website_category.aLIas_pinyin) END as pinyin")
  1792. )
  1793. ->orderBy('updated_at', 'desc')
  1794. ->limit($parentImgNum)
  1795. ->get()->all();
  1796. // 查询文字新闻
  1797. }
  1798. if($parentTextNum!=0){
  1799. $textBooks = [];
  1800. $textBooks = Book::where(function($query) use ($parentCatId) {
  1801. $query->whereRaw("JSON_CONTAINS(cat_arr_id, '\"$parentCatId\"')")
  1802. ->orWhereRaw("JSON_CONTAINS(cat_arr_id, '$parentCatId')");
  1803. })
  1804. ->where('book.status', 2)
  1805. ->leftJoin('website_category', function($join) use ($website) {
  1806. $join->on('book.catid', '=', 'website_category.category_id')
  1807. ->where('website_category.website_id', '=', $website['website_id']);
  1808. })
  1809. ->select(
  1810. 'book.id',
  1811. 'book.title',
  1812. 'book.img_url',
  1813. 'book.price',
  1814. 'book.market_price',
  1815. 'book.description',
  1816. 'book.catid',
  1817. 'book.description',
  1818. 'book.updated_at',
  1819. 'website_category.alias as category_name',
  1820. DB::raw("CASE WHEN book.catid = $parentCatId THEN '$parent_pinyin'
  1821. ELSE CONCAT('$parent_pinyin', '/', website_category.aLIas_pinyin) END as pinyin")
  1822. )
  1823. ->orderBy('updated_at', 'desc')
  1824. ->limit($parentTextNum)
  1825. ->get()->all();
  1826. }
  1827. }
  1828. }
  1829. $resultItem = [
  1830. 'alias' => $parent_alias ?? '',
  1831. 'category_id' => $parentCatId ?? 0,
  1832. 'pinyin' => $parent_pinyin ?? null,
  1833. 'imgnum' => $imgBooks ?? [],
  1834. 'textnum' => $textBooks ?? [],
  1835. ];
  1836. if(isset($item['child']) && $item['child'] != 'undefined' && $item['child'] != ""){
  1837. $parent_pinyin_str = is_string($parent_pinyin) ? $parent_pinyin.'/' : '';
  1838. $childCategory = WebsiteCategory::where('pid', $parentCatId)->where($website)
  1839. ->selectRaw("category_id, alias, CONCAT( ?, aLIas_pinyin) as aLIas_pinyin", [$parent_pinyin_str])
  1840. ->get()->all();
  1841. if (!empty($childCategory)) {
  1842. list($childCatId, $childImgNum, $childTextNum) = explode(',', $item['child']);
  1843. // 查询子栏目名称
  1844. $childCategoryInfo = WebsiteCategory::where('category_id', $childCatId)->where($website)
  1845. ->selectRaw("category_id, alias, CONCAT( ?, aLIas_pinyin) as aLIas_pinyin", [$parent_pinyin_str])
  1846. ->first();
  1847. if(empty($childCategoryInfo) || ($childImgNum==0 && $childTextNum==0)){
  1848. $childImgArticles = [];
  1849. $childTextArticles = [];
  1850. $resultItem['child'] = [];
  1851. }else{
  1852. $child_pinyin = $childCategoryInfo->aLIas_pinyin? $childCategoryInfo->aLIas_pinyin : null;
  1853. // 查询子栏目图片新闻
  1854. $childImgArticles = Book::where('catid', $childCatId)
  1855. ->where('status', 2)
  1856. ->where('img_url', '!=', '')
  1857. ->leftJoin('website_category', function($join) use ($website) {
  1858. $join->on('book.catid', '=', 'website_category.category_id')
  1859. ->where('website_category.website_id', '=', $website['website_id']);
  1860. })
  1861. ->select(
  1862. 'book.id',
  1863. 'book.title',
  1864. 'book.img_url',
  1865. 'book.price',
  1866. 'book.market_price',
  1867. 'book.description',
  1868. 'book.catid',
  1869. 'book.description',
  1870. 'book.updated_at',
  1871. DB::raw("'$child_pinyin' as pinyin"))
  1872. ->orderBy('updated_at', 'desc')
  1873. ->limit($childImgNum)
  1874. ->get()->all();
  1875. // 查询子栏目文字新闻
  1876. $childTextArticles = Book::where('catid', $childCatId)
  1877. ->where('status', 2)
  1878. ->leftJoin('website_category', function($join) use ($website) {
  1879. $join->on('book.catid', '=', 'website_category.category_id')
  1880. ->where('website_category.website_id', '=', $website['website_id']);
  1881. })
  1882. ->select(
  1883. 'book.id',
  1884. 'book.title',
  1885. 'book.img_url',
  1886. 'book.price',
  1887. 'book.market_price',
  1888. 'book.description',
  1889. 'book.catid',
  1890. 'book.description',
  1891. 'book.updated_at',
  1892. DB::raw("'$child_pinyin' as pinyin"))
  1893. ->orderBy('updated_at', 'desc')
  1894. ->limit($childTextNum)
  1895. ->get()->all();
  1896. $resultItem['child'] = [
  1897. 'alias' => $childCategoryInfo ? $childCategoryInfo->alias : null,
  1898. 'category_id' => $childCatId,
  1899. 'pinyin' => $childCategoryInfo->aLIas_pinyin ?? '',
  1900. 'all_childcat' => $childCategory,
  1901. 'imgnum' => $childImgArticles,
  1902. 'textnum' => $childTextArticles,
  1903. ];
  1904. }
  1905. }
  1906. }else{
  1907. $resultItem['child'] = [];
  1908. }
  1909. return $resultItem;
  1910. }, $data);
  1911. return Result::success($result);
  1912. }
  1913. /**
  1914. * 获取书刊列表
  1915. * @param array $data
  1916. * @return array
  1917. * */
  1918. public function getWebsiteBookList(array $data): array
  1919. {
  1920. $web = Website::where('id', $data['website_id'])->first(['id','website_name']);
  1921. if(empty($web)){
  1922. return Result::error("查询失败", 0);
  1923. }
  1924. $catid = $data['id'];
  1925. // 此处代码在原逻辑中会依赖外部变量 $data、$catid,需确保这些变量在作用域内
  1926. $category = WebsiteCategory::where('website_id', $data['website_id'])->where('category_id',$catid)->orderBy('sort')->first(['pid','category_id','aLias_pinyin']);
  1927. $parent_categpory = WebsiteCategory::where('website_id', $data['website_id'])->where('category_id',$category['pid'])->orderBy('sort')->first(['aLias_pinyin']);
  1928. $parent_pinyin = $parent_categpory ? $parent_categpory->aLias_pinyin ?? '' : '';
  1929. $category_pinyin = $category ? $category->aLias_pinyin : '';
  1930. $pinyin = $parent_pinyin . '/' . $category_pinyin ;
  1931. $categorys = WebsiteCategory::where('website_id', $data['website_id'])
  1932. ->where('pid',$category['pid'])
  1933. ->select(
  1934. '*',
  1935. DB::raw("CONCAT('$parent_pinyin', '/', aLIas_pinyin) as pinyin")
  1936. )
  1937. ->orderBy('sort')
  1938. ->get()->all();
  1939. if(empty($category)){
  1940. return Result::error("查询失败", 0);
  1941. }
  1942. $query = Book::where('book.status', 2)
  1943. ->where('book.website_id', $data['website_id'])
  1944. ->where('book.catid', $catid)
  1945. ->select(
  1946. 'book.id',
  1947. 'book.title',
  1948. 'book.img_url',
  1949. 'book.description',
  1950. 'book.updated_at',
  1951. 'book.catid',
  1952. DB::raw("'$pinyin' as pinyin")
  1953. )
  1954. ->orderBy('book.updated_at', 'desc');
  1955. $count = $query->count();
  1956. $query = clone $query;
  1957. $Book = $query
  1958. ->limit($data['pageSize'])
  1959. ->offset(($data['page']-1)*$data['pageSize'])
  1960. ->get()->all();
  1961. if(empty($Book)){
  1962. return Result::error("查询失败", 0);
  1963. }
  1964. $result = [
  1965. 'category' => $categorys,
  1966. 'books' => $Book,
  1967. 'count' =>$count,
  1968. ];
  1969. return Result::success($result);
  1970. }
  1971. /**
  1972. * 获取书刊详情
  1973. * @param array $data
  1974. * @return array
  1975. * */
  1976. public function getWebsiteBookInfo(array $data): array
  1977. {
  1978. $web = Website::where('id', $data['website_id'])->first(['id','website_name']);
  1979. if(empty($web)){
  1980. return Result::error("查询失败", 0);
  1981. }
  1982. $category = WebsiteCategory::where('website_id', $data['website_id'])->where('pid',$data['id'])->orderBy('sort')->first(['pid','category_id']);
  1983. if(empty($category)){
  1984. return Result::error("查询失败", 0);
  1985. }
  1986. $book = Book::where('status', 2)
  1987. ->where('website_id', $data['website_id'])
  1988. ->where('id', $data['id'])
  1989. ->select(
  1990. 'book.*',
  1991. )
  1992. ->orderBy('updated_at', 'desc')
  1993. ->first();
  1994. if(empty($book)){
  1995. return Result::error("查询失败", 0);
  1996. }
  1997. $categorys = WebsiteCategory::where('website_id', $data['website_id'])
  1998. ->where('pid',$category['pid'])
  1999. ->select('category_id','alias','aLIas_pinyin')
  2000. ->orderBy('sort')->get()->all();
  2001. $result = [
  2002. 'category' => $categorys,
  2003. 'books' => $book,
  2004. ];
  2005. return Result::success($result);
  2006. }
  2007. /**
  2008. * 尝试
  2009. * @param array $data
  2010. * @return array
  2011. * */
  2012. public function test(array $data): array
  2013. {
  2014. $input['id'] = $data['id'];
  2015. $input['website_id'] = $data['website_id'];
  2016. // 将 JSON 字符串转换为 PHP 数组
  2017. $data = json_decode($input['id'], true);
  2018. $result = [];
  2019. $article = $data;
  2020. $result = array_map(function ($item) use ($input) {
  2021. $website = [
  2022. 'website_id' => $input['website_id'],
  2023. ];
  2024. list($parentCatId, $parentImgNum, $parentTextNum) = explode(',', $item['parent']);
  2025. $category = WebsiteCategory::where('pid', $parentCatId)->where($website)->first(['alias', 'category_id','aLIas_pinyin']);
  2026. $parent = [
  2027. 0 => $category['category_id'] ?? [],
  2028. 1 => $parentImgNum?? [],
  2029. 2 => $parentTextNum?? [],
  2030. ];
  2031. list($parentCatId, $parentImgNum, $parentTextNum) = explode(',', $item['child']);
  2032. $child = [];
  2033. $resultItem = [
  2034. // 'alias' => $parent_alias ?? '',
  2035. 'category_id' => $parentCatId ?? 0,
  2036. 'pinyin' => $parentImgNum ?? null,
  2037. 'imgnum' => $parentTextNum ?? [],
  2038. // 'textnum' => $textArticles ?? [],
  2039. ]; return $parent;
  2040. }, $data);
  2041. return Result::success($result);
  2042. // });
  2043. }
  2044. /**
  2045. * 封装处理文章的路由问题
  2046. * */
  2047. function processArticle($article, $data) {
  2048. $article['img'] = Article::where('article.status', 1)
  2049. ->whereIn('article.id', $$article[0])
  2050. ->where(function ($query) use ($data) {
  2051. $query->where(function ($subQuery) use ($data) {
  2052. $subQuery->whereRaw("JSON_CONTAINS(ignore_ids, '".intval($data['website_id'])."') = 0");
  2053. })->orWhereNull("ignore_ids");
  2054. })
  2055. ->select(
  2056. 'article.id',
  2057. 'article.title',
  2058. 'article.imgurl',
  2059. 'article.author',
  2060. );
  2061. return $article->map(function ($article) use ($data) {
  2062. $catid = $article->cat_arr_id?? '';
  2063. $level = json_decode($catid, true);
  2064. $pinyin = '';
  2065. $category = WebsiteCategory::where('category_id', $catid)->where('website_id', $data['website_id'])->first();
  2066. if (!empty($category->pid) && $category->pid!= 0) {
  2067. $pinyin = WebsiteCategory::whereIn('category_id', $level)
  2068. ->orderByRaw('FIELD(category_id, '. implode(',', $level). ')')
  2069. ->get(['aLIas_pinyin'])
  2070. ->pluck('aLIas_pinyin')
  2071. ->implode('/');
  2072. } else {
  2073. $pinyin = $category->aLIas_pinyin ?? '';
  2074. }
  2075. $article->pinyin = $pinyin;
  2076. return $article;
  2077. });
  2078. }
  2079. /**
  2080. * c端-获取招工招聘
  2081. * @param array $data
  2082. * @return array
  2083. * */
  2084. public function getWebsiteJob(array $data): array
  2085. {
  2086. $web = Website::where('id', $data['website_id'])->first();
  2087. if(empty($web)){
  2088. return Result::error("该网站不存在", 0);
  2089. }
  2090. $job_hunting = JobHunting::where('job_hunting.status', 2)
  2091. ->where('job_hunting.website_id', $data['website_id'])
  2092. ->when(isset($data['city_id']) &&!empty($data['city_id']), function ($query) use ($data) {
  2093. $query->where(function($q) use ($data) {
  2094. $q->WhereRaw("JSON_CONTAINS(job_hunting.city_arr_id, '". intval($data['city_id']). "') = 1");
  2095. });
  2096. })
  2097. ->select('job_hunting.id','job_hunting.cat_arr_id','job_hunting.name','job_hunting.job',
  2098. 'job_hunting.job_name','job_hunting.industry','job_hunting.city_arr_id','job_hunting.experience',
  2099. 'job_hunting.updated_at')
  2100. ->orderBy('updated_at', 'desc')
  2101. ->limit($data['job1_num'])
  2102. ->get();
  2103. $web['website_id'] = $data['website_id'];
  2104. if(empty($job_hunting)){
  2105. $job_huntings = "未查询到相关简历信息";
  2106. }else{
  2107. $job_huntings = $this->processJob($job_hunting, $web);
  2108. }
  2109. $job_recruiting = JobRecruiting::where('job_recruiting.status', 1)
  2110. ->where('job_recruiting.website_id', $data['website_id'])
  2111. ->when(isset($data['city_id']) &&!empty($data['city_id']), function ($query) use ($data) {
  2112. $query->where(function($q) use ($data) {
  2113. $q->WhereRaw("JSON_CONTAINS(job_recruiting.city_arr_id, '". intval($data['city_id']). "') = 1");
  2114. });
  2115. })
  2116. ->leftJoin('job_company', 'job_recruiting.id', '=', 'job_company.job_id')
  2117. ->select('job_recruiting.id','job_recruiting.cat_arr_id','job_recruiting.title',
  2118. 'job_recruiting.jtzw_id','job_recruiting.hy_id','job_recruiting.city_arr_id',
  2119. 'job_recruiting.due_data','job_recruiting.updated_at','job_recruiting.experience',
  2120. 'job_recruiting.educational','job_company.business_name',)
  2121. ->orderBy('updated_at', 'desc')
  2122. ->limit($data['job2_num'])
  2123. ->get();
  2124. if(empty($job_recruiting->toArray())){
  2125. $job_recruitings = "未查询到相关职位信息";
  2126. }else{
  2127. $job_recruitings = $this->processJob($job_recruiting, $web);
  2128. }
  2129. $hy = JobIndustry::get()->all();
  2130. $zw = JobPosition::where('zwpid',0)->get()->all();
  2131. $jtzw = JobPosition::where('zwpid','!=',0)->get()->all();
  2132. $result = [
  2133. 'job_hunting' => $job_huntings,
  2134. 'job_recuiting' => $job_recruitings,
  2135. 'hy' => $hy,
  2136. 'zw' => $zw,
  2137. 'jtzw' => $jtzw,
  2138. ];
  2139. return Result::success($result);
  2140. }
  2141. /**
  2142. * c端-获取招工招聘列表
  2143. * @param array $data
  2144. * @return array
  2145. * */
  2146. public function getWebsiteJobList(array $data): array
  2147. {
  2148. $where = [];
  2149. $web = Website::where('id', $data['website_id'])->first(['id','website_name']);
  2150. if(empty($web)){
  2151. return Result::error("此网站不存在", 0);
  2152. }
  2153. $website_id['website_id'] = $data['website_id'];
  2154. if(isset($data['hy_id']) && !empty($data['hy_id'])){
  2155. array_push($where, ['hy_id',$data['hy_id']]);
  2156. }
  2157. if(isset($data['zw_id']) && !empty($data['zw_id'])){
  2158. array_push($where, ['zw_id',$data['zw_id']]);
  2159. }
  2160. if(isset($data['jtzw_id']) &&!empty($data['jtzw_id'])){
  2161. array_push($where, ['jtzw_id',$data['jtzw_id']]);
  2162. }
  2163. $query = JobRecruiting::where('job_recruiting.status', 1)
  2164. ->where('job_recruiting.website_id', $data['website_id'])
  2165. ->where($where)
  2166. ->when(isset($data['city_id']) &&!empty($data['city_id']), function ($query) use ($data) {
  2167. $query->where(function($q) use ($data) {
  2168. $q->WhereRaw("JSON_CONTAINS(job_recruiting.city_arr_id, '". intval($data['city_id']). "') = 1");
  2169. });
  2170. })
  2171. ->when(isset($data['catid_id']) &&!empty($data['catid_id']), function ($query) use ($data) {
  2172. $query->where(function($q) use ($data) {
  2173. $q->WhereRaw("JSON_CONTAINS(job_recruiting.cat_arr_id, '". intval($data['catid_id']). "') = 1");
  2174. });
  2175. })
  2176. ->leftJoin('job_company', 'job_recruiting.id', '=', 'job_company.job_id')
  2177. ->select('job_recruiting.id','job_recruiting.hy_id','job_recruiting.title','job_recruiting.zw_id',
  2178. 'job_recruiting.jtzw_id','job_recruiting.city_arr_id','job_recruiting.due_data',
  2179. 'job_recruiting.cat_arr_id','job_recruiting.updated_at')
  2180. ->orderBy('updated_at', 'desc');
  2181. $recruit_count = $query->count();
  2182. $query = clone $query;
  2183. $JobRecruiting = $query
  2184. ->limit($data['pageSize'])
  2185. ->offset(($data['page']-1)*$data['pageSize'])
  2186. ->get();
  2187. if(empty($JobRecruiting)){
  2188. $JobRecruiting = "暂无相关职位信息";
  2189. }else{
  2190. $JobRecruiting = $this->processJob($JobRecruiting, $website_id);
  2191. }
  2192. $query = JobHunting::where('status', 2)
  2193. ->where('job_hunting.website_id', $data['website_id'])
  2194. ->where($where)
  2195. ->when(isset($data['city_id']) &&!empty($data['city_id']), function ($query) use ($data) {
  2196. $query->where(function($q) use ($data) {
  2197. $q->WhereRaw("JSON_CONTAINS(job_hunting.city_arr_id, '". intval($data['city_id']). "') = 1");
  2198. });
  2199. })
  2200. ->when(isset($data['catid_id']) &&!empty($data['catid_id']), function ($query) use ($data) {
  2201. $query->where(function($q) use ($data) {
  2202. $q->WhereRaw("JSON_CONTAINS(job_hunting.cat_arr_id, '". intval($data['catid_id']). "') = 1");
  2203. });
  2204. })
  2205. ->select('id','sexy','experience','origin','industry','name','job','job_name_get','city_arr_id','cat_arr_id','created_at','updated_at')
  2206. ->orderBy('updated_at', 'desc');
  2207. $hunt_count = $query->count();
  2208. $query = clone $query;
  2209. $JobHunting = $query
  2210. ->offset(($data['page']-1)*$data['pageSize'])
  2211. ->limit($data['pageSize'])
  2212. ->get();
  2213. if(empty($JobHunting)){
  2214. $JobRecruiting = "暂无相关简历信息";
  2215. }else{
  2216. $JobHunting = $this->processJob($JobHunting, $website_id);
  2217. }
  2218. $result = [
  2219. 'JobRecruiting' => $JobRecruiting,
  2220. 'recruit_count' =>$recruit_count,
  2221. 'JobHunting' => $JobHunting,
  2222. 'hunt_count' =>$hunt_count,
  2223. ];
  2224. return Result::success($result);
  2225. }
  2226. /**
  2227. * c端-获取招工招聘详情
  2228. * @param array $data
  2229. * @return array
  2230. * */
  2231. public function getWebsiteJobInfo(array $data): array
  2232. {
  2233. $web = Website::where('id', $data['website_id'])->first(['id','website_name']);
  2234. if(empty($web)){
  2235. return Result::error("该网站不存在", 0);
  2236. }
  2237. $webid = [
  2238. 'website_id' => $data['website_id'],
  2239. ];
  2240. // 职位相关信息
  2241. if($data['type']==1){
  2242. $query = JobRecruiting::where('status', 1)
  2243. ->where('website_id', $data['website_id'])
  2244. ->select('*');
  2245. $job = $query->where('job_recruiting.id', $data['id'])->get();
  2246. $company = JobCompany::where('job_id', $data['id'])->select('id','business_name','company_hy_id','company_size','company_nature','address_arr_id','address')->get();
  2247. if(!empty($company)){
  2248. $result['company'] = $this->processJob($company, $webid);
  2249. }
  2250. $other_job = $query->where('id','!=',$data['id'])->where('user_id', '=', $job[0]['user_id'])->get();
  2251. if(!empty($other_job)){
  2252. $result['other_job'] = $this->processJob($other_job, $webid);
  2253. }
  2254. }else{
  2255. $job = JobHunting::where('job_hunting.status', 2)
  2256. ->where('job_hunting.website_id', $data['website_id'])
  2257. ->where('job_hunting.id', $data['id'])
  2258. ->leftJoin('user', 'user.id', '=', 'job_hunting.user_id')
  2259. ->select('job_hunting.*','user_name')
  2260. ->get();
  2261. }
  2262. if(empty($job)){
  2263. return Result::error("id参数错误", 0);
  2264. }
  2265. $job[0]['type'] = $data['type'];
  2266. $result['job'] = $this->processJob($job, $webid);
  2267. // 返现对应的栏目
  2268. $catid = json_decode($job[0]['cat_arr_id'],true) ?? '';
  2269. $category = WebsiteCategory::where('website_id', $data['website_id'])
  2270. ->whereIn('category_id', $catid)
  2271. ->select('category_id','alias','aLIas_pinyin','pid')
  2272. ->orderBy('pid')->get()->all();
  2273. if(!empty($category)){
  2274. $result['category'] = $category;
  2275. }
  2276. if(empty($result)){
  2277. return Result::error("id参数错误", 0);
  2278. }
  2279. return Result::success($result);
  2280. }
  2281. /**
  2282. * c端-申请职位
  2283. * @param array $data
  2284. * @return array
  2285. * */
  2286. public function getWebsiteJobApply(array $data): array
  2287. {
  2288. // 首先验证网站是否存在
  2289. // return Result::success($data);
  2290. $web = Website::where('id', $data['website_id'])->first(['id','website_name']);
  2291. if(empty($web)){
  2292. return Result::error("该网站不存在", 0);
  2293. }
  2294. // 验证用户是否存在且为个人会员/管理员
  2295. $user = User::where('id', $data['user_id'])->first(['id','type_id']);
  2296. // 1:个人会员 2:政务会员 3:企业会员 4:调研员 10000:管理员 20000:游客(小程序)
  2297. if(empty($user) || ($user['type_id'] != 1 && $user['type_id'] != 10000)){
  2298. return Result::error("用户不存在", 0);
  2299. }
  2300. // 去除重复元素和空元素,并保持原始顺序
  2301. $data['recruit_id'] = array_values(array_filter(array_unique($data['recruit_id']), function($value) {
  2302. return !empty($value);
  2303. }));
  2304. // 验证职位是否存在 1:审核通过
  2305. $recruiting = JobRecruiting::where('status', 1)
  2306. ->where('website_id', $data['website_id'])
  2307. ->whereIn('id',$data['recruit_id'])
  2308. ->get(['id as recruit_id','user_id as receiver_id'])->all();
  2309. if(empty($recruiting)){
  2310. return Result::error("该职位不存在", 0);
  2311. }
  2312. // 简历是否存在
  2313. $hunt_id = JobHunting::where('user_id', $data['user_id'])->where('status',2)->first(['id as hunt_id']);
  2314. if(empty($hunt_id)){
  2315. return Result::error("该简历不存在", 0);
  2316. }
  2317. $data['hunt_id'] = $hunt_id['hunt_id'];
  2318. // // 验证是否已投递过该职位
  2319. $apply = JobApply::where('user_id', $data['user_id'])
  2320. ->where('hunt_id', $data['hunt_id'])
  2321. ->where('website_id',$data['website_id'])
  2322. ->whereIn('recruit_id',$data['recruit_id'])
  2323. ->get(['recruit_id']);
  2324. if(!empty($apply->toArray())){
  2325. return Result::error("您已投递过该职位!");
  2326. }
  2327. $insertData = array_map(function($recruiting) use ($data) {
  2328. return [
  2329. 'user_id' => $data['user_id'],
  2330. 'hunt_id' => $data['hunt_id'],
  2331. 'website_id' => $data['website_id'],
  2332. 'recruit_id' => $recruiting['recruit_id'],
  2333. 'receiver_id' => $recruiting['receiver_id'],
  2334. 'status' => 1,
  2335. ];
  2336. }, $recruiting);
  2337. // 批量插入数据
  2338. $result = JobApply::insert($insertData);
  2339. if(empty($result)){
  2340. return Result::error("投递失败", 0);
  2341. }
  2342. return Result::success($result);
  2343. }
  2344. /**
  2345. * 招工招聘-沟通简历
  2346. * @param array $data
  2347. * @return array
  2348. * */
  2349. public function getWebsiteJobResume(array $data): array
  2350. {
  2351. // 首先验证网站是否存在
  2352. $web = Website::where('id', $data['website_id'])->first(['id','website_name']);
  2353. if(empty($web)){
  2354. return Result::error("该网站不存在", 0);
  2355. }
  2356. // return Result::success($data);
  2357. // 验证用户是否存在且为企业会员/管理员
  2358. $user = User::where('id', $data['user_id'])->first(['id','type_id']);
  2359. // 1:个人会员 2:政务会员 3:企业会员 4:调研员 10000:管理员 20000:游客(小程序)
  2360. if(empty($user) || ($user['type_id']!= 3 && $user['type_id']!= 10000)){
  2361. return Result::error("用户不存在", 0);
  2362. }
  2363. // 去除重复元素和空元素,并保持原始顺序
  2364. $data['hunt_id'] = array_values(array_filter(array_unique($data['hunt_id']), function($value) {
  2365. return !empty($value);
  2366. }));
  2367. // 验证简历是否存在
  2368. $hunting = JobHunting::where('status', 2)
  2369. ->where('website_id', $data['website_id'])
  2370. ->whereIn('id',$data['hunt_id'])
  2371. ->get(['id as hunt_id','user_id as receiver_id'])->all();
  2372. if(empty($hunting)){
  2373. return Result::error("该简历不存在", 0);
  2374. }
  2375. // 验证是否已沟通过该简历
  2376. $remuse = JobRemuse::where('user_id', $data['user_id'])
  2377. ->where('recruit_id', $data['recruit_id'])
  2378. ->where('website_id',$data['website_id'])
  2379. ->whereIn('hunt_id',$data['hunt_id'])
  2380. ->get(['hunt_id']);
  2381. if(!empty($remuse->toArray())){
  2382. return Result::error("您已沟通过该简历!");
  2383. }
  2384. // 准备要插入的数据数组
  2385. $insertData = array_map(function($hunting) use ($data) {
  2386. return [
  2387. 'user_id' => $data['user_id'],
  2388. 'recruit_id' => $data['recruit_id'],
  2389. 'website_id' => $data['website_id'],
  2390. 'hunt_id' => $hunting['hunt_id'],
  2391. 'receiver_id' => $hunting['receiver_id'],
  2392. 'status' => 1,
  2393. ];
  2394. }, $hunting);
  2395. // 批量插入数据
  2396. $result = JobRemuse::insert($insertData);
  2397. if(empty($result)){
  2398. return Result::error("沟通失败", 0);
  2399. }
  2400. return Result::success($result);
  2401. }
  2402. }