NewsService.php 210 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929
  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\WebsiteCategory;
  7. use App\Model\ArticleSurvey;
  8. use App\Model\District;
  9. use App\Model\Good;
  10. use App\Model\JobCompany;
  11. use App\Model\Website;
  12. use App\Model\JobRecruiting;
  13. use App\Model\JobIndustry;
  14. use App\Model\JobPosition;
  15. use App\Model\Notice;
  16. use App\Model\Book;
  17. use App\Model\JobNature;
  18. use App\Model\JobEnum;
  19. use App\Model\User;
  20. use App\Model\UserRole;
  21. use App\Model\News;
  22. use App\Model\UserInfo;
  23. use App\Model\WebsiteGroup;;
  24. use App\Model\jobResume;
  25. use Hyperf\DbConnection\Db;
  26. use Hyperf\RpcServer\Annotation\RpcService;
  27. use App\Tools\Result;
  28. use Directory;
  29. use Ramsey\Uuid\Uuid;
  30. use Hyperf\Utils\Random;
  31. use Fukuball\Jieba\Jieba;
  32. use Fukuball\Jieba\Finalseg;
  33. use Hyperf\Utils\Collection;
  34. use function Hyperf\Support\retry;
  35. use App\Tools\PublicData;
  36. use App\Model\ChatGroups;
  37. use App\Model\ChatGroupsMember;
  38. use App\Model\ChatRecords;
  39. use App\Model\Complaint;
  40. use Hamcrest\Arrays\IsArray;
  41. use Hyperf\Codec\Json;
  42. use App\Tools\buildMenuTree;
  43. use App\Model\JobApply;
  44. use App\Model\JobHunting;
  45. use App\Model\JobRemuse;
  46. #[RpcService(name: "NewsService", protocol: "jsonrpc-http", server: "jsonrpc-http")]
  47. class NewsService implements NewsServiceInterface
  48. {
  49. /**
  50. * 获取导航池列表
  51. * @param array $data
  52. * @return array
  53. */
  54. public function getCategoryList(array $data): array
  55. {
  56. $search = $data['name'] ?? '';
  57. $page = (int)($data['page'] ?? 1);
  58. $perPage = (int)($data['pageSize'] ?? 10);
  59. // 1. 查出所有匹配的分类id
  60. if ($search) {
  61. $matchedIds = Category::where('name', 'like', "%{$search}%")->pluck('id')->toArray();
  62. if (empty($matchedIds)) {
  63. return Result::success(['rows' => [], 'total' => 0]);
  64. }
  65. // 2. 递归查所有父级,直到一级分类
  66. $idsStr = implode(',', $matchedIds);
  67. $sql = "
  68. WITH RECURSIVE parents AS (
  69. SELECT * FROM category WHERE id IN ($idsStr)
  70. UNION ALL
  71. SELECT c.* FROM category c
  72. INNER JOIN parents p ON c.id = p.pid
  73. )
  74. SELECT * FROM parents
  75. ";
  76. $parents = Db::select($sql);
  77. $parentIds = [];
  78. foreach ($parents as $row) {
  79. if ($row->pid == 0) {
  80. $parentIds[] = $row->id;
  81. }
  82. }
  83. $parentIds = array_unique($parentIds);
  84. } else {
  85. // 没有搜索,一级分类就是根
  86. $parentIds = Category::where('pid', 0)->pluck('id')->toArray();
  87. }
  88. // 3. 一级分类分页
  89. $total = count($parentIds);
  90. $parentIds = array_slice($parentIds, ($page - 1) * $perPage, $perPage);
  91. if (empty($parentIds)) {
  92. return Result::success(['rows' => [], 'total' => $total]);
  93. }
  94. // 4. 递归查所有子孙
  95. $idsStr = implode(',', $parentIds);
  96. $sql = "
  97. WITH RECURSIVE subcategories AS (
  98. SELECT * FROM category WHERE id IN ($idsStr)
  99. UNION ALL
  100. SELECT c.* FROM category c
  101. INNER JOIN subcategories s ON c.pid = s.id
  102. )
  103. SELECT * FROM subcategories ORDER BY updated_at DESC
  104. ";
  105. $allCategories = Db::select($sql);
  106. // 5. 组装树结构
  107. $categoryMap = [];
  108. foreach ($allCategories as $cat) {
  109. $cat = (array)$cat;
  110. $cat['children'] = [];
  111. $categoryMap[$cat['id']] = $cat;
  112. }
  113. foreach ($categoryMap as $id => &$cat) {
  114. if ($cat['pid'] && isset($categoryMap[$cat['pid']])) {
  115. $categoryMap[$cat['pid']]['children'][] = &$cat;
  116. }
  117. }
  118. unset($cat);
  119. $categoryTree = [];
  120. foreach ($parentIds as $id) {
  121. if (isset($categoryMap[$id])) {
  122. $categoryTree[] = $categoryMap[$id];
  123. }
  124. }
  125. return Result::success([
  126. 'rows' => $categoryTree,
  127. 'total' => $total,
  128. ]);
  129. }
  130. private function findMatchedCategories($search)
  131. {
  132. if ($search) {
  133. return Category::where('name', 'like', "%{$search}%")
  134. ->orderBy('updated_at', 'desc')
  135. ->get();
  136. }
  137. return Category::orderBy('updated_at', 'desc') // 按 updated_at 字段倒序排序
  138. ->get();
  139. }
  140. private function findAllParents($categories)
  141. {
  142. $allCategories = [];
  143. foreach ($categories as $category) {
  144. $parentId = $category->pid;
  145. while ($parentId > 0) {
  146. $parent = Category::find($parentId);
  147. if ($parent) {
  148. $allCategories[$parent->id] = $parent;
  149. $parentId = $parent->pid;
  150. } else {
  151. break;
  152. }
  153. }
  154. $allCategories[$category->id] = $category;
  155. }
  156. return array_values($allCategories);
  157. }
  158. private function buildCategoryTree($category, $allRequiredCategories)
  159. {
  160. $categoryData = $category->toArray();
  161. $children = [];
  162. foreach ($allRequiredCategories as $c) {
  163. if ($c->pid === $category->id) {
  164. $children[] = $this->buildCategoryTree($c, $allRequiredCategories);
  165. }
  166. }
  167. if (!empty($children)) {
  168. $categoryData['children'] = $children;
  169. }
  170. return $categoryData;
  171. }
  172. public function myCategoryList(array $data): array
  173. {
  174. $sszq = $data['sszq'] ?? '';
  175. unset($data['sszq']);
  176. //1,2,3 根据这些webid,。从website_category表中取出对应的分类id,然后从category表中取出分类信息
  177. $catorytids = WebsiteCategory::whereIn('website_id', explode(',', $sszq))->get()->pluck('category_id')->toArray();
  178. $where[] = [
  179. 'pid',
  180. '=',
  181. $data['pid'],
  182. ];
  183. if (isset($data['name'])) {
  184. array_push($where, ['category.name', 'like', '%' . $data['name'] . '%']);
  185. }
  186. var_dump($where);
  187. //根据分类id,从category表中取出分类信息
  188. $result = Category::where($where)
  189. ->whereIn('category.id', $catorytids)
  190. ->select('category.*', 'category.id as category_id')->get();
  191. if (empty($result)) {
  192. return Result::error("没有栏目数据");
  193. }
  194. return Result::success($result);
  195. }
  196. /**
  197. * @param array $data
  198. * @return array
  199. */
  200. public function categoryList(array $data): array
  201. {
  202. $where[] = [
  203. 'pid',
  204. '=',
  205. $data['pid'],
  206. ];
  207. if (isset($data['name'])) {
  208. array_push($where, ['category.name', 'like', '%' . $data['name'] . '%']);
  209. }
  210. var_dump($where);
  211. $result = Category::where($where)->select('category.*', 'category.id as category_id')->get();
  212. if (empty($result)) {
  213. return Result::error("没有栏目数据");
  214. }
  215. return Result::success($result);
  216. }
  217. /**
  218. * @param array $data
  219. * @return array
  220. */
  221. public function addCategory(array $data): array
  222. {
  223. if (isset($data['id'])) {
  224. unset($data['id']);
  225. }
  226. $id = Category::insertGetId($data);
  227. if (empty($id)) {
  228. return Result::error("添加失败");
  229. }
  230. return Result::success(['id' => $id]);
  231. }
  232. /**
  233. * @param array $data
  234. * @return array
  235. */
  236. public function delCategory(array $data): array
  237. {
  238. Db::beginTransaction();
  239. try {
  240. $categoryList = Category::where(['pid' => $data['id']])->get();
  241. if ($categoryList->toArray()) {
  242. Db::rollBack();
  243. return Result::error("分类下面有子分类不能删除");
  244. }
  245. $articleList = Article::where(['catid' => $data['id']])->get();
  246. if ($articleList->toArray()) {
  247. Db::rollBack();
  248. return Result::error("分类下面有资讯不能删除");
  249. }
  250. $result = Category::where($data)->delete();
  251. WebsiteCategory::where(['category_id' => $data['id']])->delete();
  252. if (!$result) {
  253. return Result::error("删除失败");
  254. }
  255. return Result::success($result);
  256. Db::commit();
  257. } catch (\Exception $e) {
  258. Db::rollBack();
  259. return Result::error("删除失败");
  260. }
  261. }
  262. /**
  263. * @param array $data
  264. * @return array
  265. */
  266. public function updateCategory(array $data): array
  267. {
  268. $where = [
  269. 'id' => $data['id'],
  270. ];
  271. $result = Category::where($where)->update($data);
  272. if ($result) {
  273. return Result::success($result);
  274. } else {
  275. return Result::error("更新失败");
  276. }
  277. }
  278. /**
  279. * 获取导航池信息
  280. * @param array $data
  281. * @return array
  282. */
  283. public function getCategoryInfo(array $data): array
  284. {
  285. $where = [
  286. 'id' => $data['id'],
  287. ];
  288. $result = Category::where($where)->first();
  289. if ($result) {
  290. return Result::success($result);
  291. } else {
  292. return Result::error("更新失败");
  293. }
  294. }
  295. /**
  296. * @param array $data
  297. * @return array
  298. */
  299. public function getArticleList(array $data): array
  300. {
  301. //判断是否是管理员'1:个人会员 2:政务会员 3:企业会员 4:调研员 10000:管理员 20000:游客(小程序)'
  302. $type_id = $data['type_id'];
  303. unset($data['type_id']);
  304. $user_id = $data['user_id'];
  305. unset($data['user_id']);
  306. $where = [];
  307. $status1 = [];
  308. if (isset($data['id']) && $data['id']) {
  309. array_push($where, ['article.id', '=', $data['id']]);
  310. }
  311. if (isset($data['title']) && $data['title']) {
  312. array_push($where, ['article.title', 'like', '%' . $data['title'] . '%']);
  313. }
  314. if (isset($data['category_name']) && $data['category_name']) {
  315. array_push($where, ['category.name', 'like', '%' . $data['category_name'] . '%']);
  316. }
  317. if (isset($data['author']) && $data['author']) {
  318. array_push($where, ['article.author', '=', $data['author']]);
  319. }
  320. if (isset($data['islink']) && $data['islink'] !== "") {
  321. array_push($where, ['article.islink', '=', $data['islink']]);
  322. }
  323. if (isset($data['status']) && $data['status'] !== "") {
  324. array_push($where, ['article.status', '=', $data['status']]);
  325. }
  326. if (isset($data['status1'])) {
  327. $status1 = json_decode(($data['status1']));
  328. }
  329. //不是管理员展示个人数据;
  330. if ($type_id != 10000) {
  331. $where[] = ['article.admin_user_id', '=', $user_id];
  332. }
  333. $rep = Article::where($where)
  334. ->whereNotIn('article.status', [404])
  335. ->when($status1, function ($query) use ($status1) {
  336. if (isset($status1) && $status1) {
  337. $query->whereIn('article.status', $status1);
  338. }
  339. })
  340. ->leftJoin('category', 'article.catid', 'category.id')
  341. ->leftJoin('website_category', function ($join) {
  342. $join->on('article.web_site_id', '=', 'website_category.website_id')
  343. ->on('article.catid', '=', 'website_category.category_id');
  344. })
  345. ->select("article.*", "category.name as category_name", "website_category.alias")
  346. ->orderBy("article.updated_at", "desc")
  347. ->limit($data['pageSize'])
  348. ->offset(($data['page'] - 1) * $data['pageSize'])->get();
  349. $count = Article::where($where)->whereNotIn('article.status', [404])
  350. ->when($status1, function ($query) use ($status1) {
  351. if (isset($status1) && $status1) {
  352. $query->whereIn('article.status', $status1);
  353. }
  354. })
  355. ->leftJoin('category', 'article.catid', 'category.id')->count();
  356. $data = [
  357. 'rows' => $rep->toArray(),
  358. 'count' => $count,
  359. ];
  360. if (empty($rep)) {
  361. return Result::error("没有信息数据");
  362. }
  363. return Result::success($data);
  364. }
  365. /**
  366. * @param array $data
  367. * @return array
  368. */
  369. public function addArticle(array $data): array
  370. {
  371. var_dump($data, '----------12-----------1');
  372. unset($data['user_type']);
  373. unset($data['nav_add_pool_id']);
  374. // unset($data['commend_id']);
  375. // $data['cat_arr_id'] = is_string($data['cat_arr_id']) ? json_encode($data['cat_arr_id']) : '';
  376. Db::beginTransaction();
  377. try {
  378. //处理投票
  379. $is_survey = isset($data['is_survey']) ? $data['is_survey'] : 0;
  380. $survey_name = isset($data['survey_name']) ? $data['survey_name'] : '';
  381. $suvey_array = isset($data['suvey_array']) ? $data['suvey_array'] : '';
  382. $website_id = isset($data['website_id']) ? $data['website_id'] : 2;
  383. unset($data['is_survey']);
  384. unset($data['survey_name']);
  385. unset($data['suvey_array']);
  386. // unset($data['website_id']);
  387. // unset($data['web_site_id']);
  388. // $data['web_site_id'] = is_array($data['web_site_id']) ? json_encode($data['web_site_id']) : ($data['web_site_id']);
  389. if ($data['hits'] == '') {
  390. $data['hits'] = 0;
  391. }
  392. if ($data['is_original'] == '') {
  393. $data['is_original'] = 0;
  394. }
  395. if ($data['status'] == '') {
  396. $data['status'] = 0;
  397. }
  398. $articleData = $data;
  399. unset($articleData['content']);
  400. //自动处理缩略图、关键字、描述
  401. if ($articleData['imgurl'] == '') {
  402. //如果没有图,设置level=0
  403. $levelArr = json_decode($articleData['level'], true);
  404. var_dump($levelArr, '----------levelArr-----------1');
  405. //content中提取图片第一个图,正则提取
  406. $reg = '/<img.*?src=[\"|\']?(.*?)[\"|\']?\s.*?>/i';
  407. preg_match_all($reg, $data['content'], $matches);
  408. if (isset($matches[1][0])) {
  409. //截取varchar240
  410. $articleData['imgurl'] = substr($matches[1][0], 0, 240);
  411. //如果有图,设置level=3
  412. if (!in_array(3, $levelArr)) {
  413. $levelArr[] = 3;
  414. }
  415. $articleData['level'] = json_encode($levelArr);
  416. } else {
  417. if (!in_array(0, $levelArr)) {
  418. $levelArr[] = 0;
  419. }
  420. $articleData['level'] = json_encode($levelArr);
  421. }
  422. }
  423. var_dump($articleData['level'], '----------$articleData[level]----------1');
  424. if ($articleData['keyword'] == '') {
  425. //提取标题+内容中的关键词
  426. $articleData['keyword'] = $data['title'];
  427. // . substr(str_replace(' ', '', strip_tags($data['content'])), 0, 20);
  428. Jieba::init(); // 初始化 jieba-php
  429. Finalseg::init();
  430. $segList = Jieba::cut($articleData['keyword']);
  431. $segList1 = array_slice($segList, 0, 8);
  432. $articleData['keyword'] = implode(',', $segList1);
  433. }
  434. if ($articleData['introduce'] == '') {
  435. //提取内容中的描述
  436. $articleData['introduce'] = substr(str_replace(' ', '', strip_tags($data['content'])), 0, 100);
  437. }
  438. $id = Article::insertGetId($articleData);
  439. $articleDataContent = [
  440. 'article_id' => $id,
  441. 'content' => $data['content'],
  442. ];
  443. ArticleData::insertGetId($articleDataContent);
  444. //处理投票
  445. if ($is_survey == 1) {
  446. //生成年月日时分秒+8位随机数
  447. $uuid = date('YmdHis') . rand(10000000, 99999999);
  448. var_dump($suvey_array, 'suvey_array________');
  449. $suveys_array = is_array($suvey_array) ? $suvey_array : json_decode($suvey_array);
  450. var_dump($suveys_array, '---------------------1');
  451. var_dump($suvey_array, '---------------------2');
  452. $suvey_data = [];
  453. foreach ($suveys_array as $key => $value) {
  454. if ($value == '') {
  455. continue;
  456. }
  457. if (is_array($value)) {
  458. $suvey_data[] = [
  459. 'sur_id' => $uuid,
  460. 'art_id' => $id,
  461. 'website_id' => $website_id ?? 2,
  462. 'survey_name' => $survey_name,
  463. 'choice_name' => $value[1],
  464. 'is_other' => 1,
  465. 'other_id' => 0,
  466. 'results' => 0,
  467. ];
  468. } else {
  469. $suvey_data[] = [
  470. 'sur_id' => $uuid,
  471. 'art_id' => $id,
  472. 'website_id' => $website_id ?? 2,
  473. 'survey_name' => $survey_name,
  474. 'choice_name' => $value,
  475. 'is_other' => 0,
  476. 'other_id' => 0,
  477. 'results' => 0,
  478. ];
  479. }
  480. if (empty($suvey_data)) {
  481. throw new \Exception("投票数据为空");
  482. }
  483. }
  484. $result = ArticleSurvey::insert($suvey_data);
  485. if (!$result) {
  486. throw new \Exception("投票失败,ArticleSurvey插入失败");
  487. }
  488. $result = Article::where('id', $id)->update(['survey_id' => $uuid, 'survey_name' => $survey_name, 'is_survey' => $is_survey]);
  489. if (!$result) {
  490. throw new \Exception("投票失败,更新主表失败");
  491. }
  492. }
  493. Db::commit();
  494. return Result::success(['id' => $id]);
  495. } catch (\Throwable $ex) {
  496. Db::rollBack();
  497. var_dump($ex->getMessage());
  498. return Result::error("创建失败", 0);
  499. }
  500. }
  501. /**
  502. * @param array $data
  503. * @return array
  504. */
  505. public function delArticle(array $data): array
  506. {
  507. $result = Article::where($data)->delete();
  508. //survey投票删除
  509. articleSurvey::where(['art_id' => $data['id']])->delete();
  510. if (!$result) {
  511. return Result::error("删除失败");
  512. }
  513. return Result::success($result);
  514. }
  515. /**
  516. * @param array $data
  517. * @return array
  518. */
  519. public function updateArticle(array $data): array
  520. {
  521. var_dump($data, '----------12-----------1');
  522. Db::beginTransaction();
  523. unset($data['user_type']);
  524. // unset($data['web_site_id']);
  525. unset($data['nav_add_pool_id']);
  526. try {
  527. //处理投票
  528. $is_survey = isset($data['is_survey']) ? $data['is_survey'] : 0;
  529. $survey_name = isset($data['survey_name']) ? $data['survey_name'] : '';
  530. $suvey_array = isset($data['suvey_array']) ? $data['suvey_array'] : '';
  531. $website_id = isset($data['website_id']) ? $data['website_id'] : 2;
  532. unset($data['is_survey']);
  533. unset($data['survey_name']);
  534. unset($data['suvey_array']);
  535. unset($data['website_id']);
  536. $data['web_site_id'] = is_array($data['web_site_id']) ? json_encode($data['web_site_id']) : ($data['web_site_id']);
  537. if ($data['hits'] == '') {
  538. $data['hits'] = 0;
  539. }
  540. if ($data['is_original'] == '') {
  541. $data['is_original'] = 0;
  542. }
  543. if ($data['status'] == '') {
  544. $data['status'] = 0;
  545. }
  546. $data['cat_arr_id'] = is_array($data['cat_arr_id']) ? json_encode($data['cat_arr_id']) : $data['cat_arr_id'];
  547. $data['tag'] = isset($data['tag']) ? json_encode($data['tag']) : '';
  548. $articleData = $data;
  549. unset($articleData['content']);
  550. unset($articleData['status_name']);
  551. unset($articleData['name']);
  552. unset($articleData['content']);
  553. unset($articleData['pid_arr']);
  554. unset($articleData['pid']);
  555. //自动处理缩略图、关键字、描述
  556. if ($articleData['imgurl'] == '') {
  557. //如果没有图,设置level=0
  558. $levelArr = json_decode($articleData['level'], true);
  559. var_dump($levelArr, '----------levelArr-----------1');
  560. //content中提取图片第一个图,正则提取
  561. $reg = '/<img.*?src=[\"|\']?(.*?)[\"|\']?\s.*?>/i';
  562. preg_match_all($reg, $data['content'], $matches);
  563. if (isset($matches[1][0])) {
  564. //截取varchar240
  565. // 截取到第一个<
  566. $articleData['imgurl'] = $matches[1][0];
  567. var_dump($articleData['imgurl'], '----------imgurl-----------1');
  568. $pos = strpos($articleData['imgurl'], '"');
  569. if ($pos !== false) {
  570. $articleData['imgurl'] = substr($articleData['imgurl'], 0, $pos);
  571. }
  572. //$articleData['imgurl'] = substr($matches[1][0], 0, 240);
  573. //如果有图,设置level=3
  574. if (!in_array(3, $levelArr)) {
  575. $levelArr[] = 3;
  576. }
  577. $articleData['level'] = json_encode($levelArr);
  578. } else {
  579. if (!in_array(0, $levelArr)) {
  580. $levelArr[] = 0;
  581. }
  582. $articleData['level'] = json_encode($levelArr);
  583. }
  584. }
  585. var_dump($articleData['level'], '----------$articleData[level]----------1');
  586. if ($articleData['keyword'] == '') {
  587. //提取标题+内容中的关键词
  588. $articleData['keyword'] = $data['title'];
  589. // . substr(str_replace(' ', '', strip_tags($data['content'])), 0, 20);
  590. Jieba::init(); // 初始化 jieba-php
  591. Finalseg::init();
  592. $segList = Jieba::cut($articleData['keyword']);
  593. $segList1 = array_slice($segList, 0, 8);
  594. $articleData['keyword'] = implode(',', $segList1);
  595. }
  596. if ($articleData['introduce'] == '') {
  597. //提取内容中的描述
  598. $articleData['introduce'] = substr(preg_replace('/\s+/', '', strip_tags($data['content'])), 0, 100);
  599. // substr(str_replace(' ', '', strip_tags($data['content'])), 0, 100);
  600. }
  601. $id = Article::where(['id' => $data['id']])->update($articleData);
  602. $articleDataContent = [
  603. 'content' => $data['content'],
  604. ];
  605. ArticleData::where(['article_id' => $data['id']])->update($articleDataContent);
  606. //处理投票
  607. $id = $data['id'];
  608. $surveydata = ArticleSurvey::where(['art_id' => $data['id']])->delete();
  609. var_dump($suvey_array, 'suvey_array________delete');
  610. //处理投票
  611. if ($is_survey == 1) {
  612. //生成年月日时分秒+8位随机数
  613. $uuid = date('YmdHis') . rand(10000000, 99999999);
  614. $suveys_array = is_array($suvey_array) ? $suvey_array : json_decode($suvey_array);
  615. var_dump($suveys_array, '---------------------1');
  616. $suvey_data = [];
  617. if (is_array($suveys_array)) {
  618. foreach ($suveys_array as $key => $value) {
  619. if ($value == '') {
  620. continue;
  621. }
  622. if (is_array($value)) {
  623. $suvey_data[] = [
  624. 'sur_id' => $uuid,
  625. 'art_id' => $id,
  626. 'website_id' => $website_id ?? 2,
  627. 'survey_name' => $survey_name,
  628. 'choice_name' => $value[1],
  629. 'is_other' => 1,
  630. 'other_id' => 0,
  631. 'results' => 0,
  632. ];
  633. } else {
  634. $suvey_data[] = [
  635. 'sur_id' => $uuid,
  636. 'art_id' => $id,
  637. 'website_id' => $website_id ?? 2,
  638. 'survey_name' => $survey_name,
  639. 'choice_name' => $value,
  640. 'is_other' => 0,
  641. 'other_id' => 0,
  642. 'results' => 0,
  643. ];
  644. }
  645. if (empty($suvey_data)) {
  646. throw new \Exception("投票数据为空");
  647. }
  648. }
  649. }
  650. $result = ArticleSurvey::insert($suvey_data);
  651. if (!$result) {
  652. throw new \Exception("投票失败");
  653. }
  654. $result = Article::where('id', $id)->update(['survey_id' => $uuid, 'survey_name' => $survey_name, 'is_survey' => $is_survey]);
  655. if (!$result) {
  656. throw new \Exception("投票失败");
  657. }
  658. } else {
  659. $result = Article::where('id', $id)->update(['survey_id' => '', 'survey_name' => '', 'is_survey' => 0]);
  660. }
  661. Db::commit();
  662. return Result::success([]);
  663. } catch (\Throwable $ex) {
  664. Db::rollBack();
  665. var_dump($ex->getMessage());
  666. return Result::error("更新失败" . $ex->getMessage(), 0);
  667. }
  668. }
  669. /**
  670. * 更新资讯状态
  671. * @param array $data
  672. * @return array
  673. */
  674. public function upArticleStatus(array $data): array
  675. {
  676. $result = Article::where(['id' => $data['id']])->update($data);
  677. if ($result) {
  678. return Result::success();
  679. } else {
  680. return Result::error("更新状态失败", 0);
  681. }
  682. }
  683. /**
  684. * @param array $data
  685. * @return array
  686. */
  687. public function getArticleInfo(array $data): array
  688. {
  689. $where = [
  690. 'article.id' => $data['id'],
  691. // 'article.status' => 1,
  692. ];
  693. $result = Article::where($where)->leftJoin("article_data", "article.id", "article_data.article_id")->first();
  694. $articleSurvey = ArticleSurvey::where(['art_id' => $data['id']])->get();
  695. $info = $result;
  696. // var_dump($info, 'info');
  697. $info['survey_array'] = $articleSurvey;
  698. if ($result) {
  699. return Result::success($info);
  700. } else {
  701. return Result::error("查询失败", 0);
  702. }
  703. }
  704. /**
  705. * 获取新闻
  706. * @param array $data
  707. * @return array
  708. */
  709. public function getWebsiteArticlett(array $data): array
  710. {
  711. // return Result::success($data['website_id']);
  712. $category = WebsiteCategory::where('website_id', $data['website_id'])->pluck('category_id');
  713. $category = array_values(array_unique($category->toArray()));
  714. if ($category) {
  715. $placeid = isset($data['placeid']) && !empty($data['placeid']) ? $data['placeid'] - 1 : 0;
  716. $where = [
  717. 'status' => 1,
  718. ];
  719. var_dump($data, 'data-----------------');
  720. // level=7 根据文章key来匹配文章
  721. if (isset($data['level']) && $data['level'] == 7) {
  722. // 根据文章id获取key
  723. // $data['id'] = 50142;
  724. if (isset($data['id']) && !empty($data['id'])) {
  725. $keyword = Article::where('id', $data['id'])->value('keyword');
  726. $keywordArray = explode(',', $keyword);
  727. $whereL7 = [];
  728. foreach ($keywordArray as $k => $v) {
  729. $whereL7[] = ['keyword', 'like', '%' . $v . '%'];
  730. }
  731. // 原始查询
  732. $result['level7'] = Article::where($whereL7)
  733. ->when(!empty($data['imgnum']), function ($query) use ($data) {
  734. $query->where('article.imgurl', '!=', '')
  735. ->select('article.*')
  736. ->offset($data['placeid'])
  737. ->limit($data['imgnum']);
  738. })
  739. ->when(!empty($data['textnum']), function ($query) use ($data) {
  740. $query->select('article.*')
  741. ->offset($data['placeid'])
  742. ->limit($data['textnum']);
  743. })
  744. ->orderBy('updated_at', 'desc')
  745. ->get()
  746. ->map(function ($article) use ($data) {
  747. $catid = $article->catid;
  748. $pinyin = '';
  749. $category = WebsiteCategory::where('category_id', $catid)->where('website_category.website_id', $data['website_id'])->first();
  750. if (!empty($category->aLIas_pinyin) && $category->pid != 0) {
  751. $childCategory = WebsiteCategory::where('category_id', $category->pid)->where('website_category.website_id', $data['website_id'])->first();
  752. if ($childCategory && !empty($childCategory->aLIas_pinyin)) {
  753. $pinyin = $childCategory->aLIas_pinyin ? $childCategory->aLIas_pinyin . '/' . $category->aLIas_pinyin : null;
  754. }
  755. } else {
  756. $pinyin = $category->aLIas_pinyin ? $category->aLIas_pinyin : null;
  757. }
  758. $article->pinyin = $pinyin;
  759. return $article;
  760. });
  761. if (empty($result)) {
  762. return Result::success();
  763. }
  764. return Result::success($result);
  765. } else {
  766. return Result::error("参数错误level=7,id不能为空", 0);
  767. }
  768. }
  769. //如果是4:最新资讯(数据库已不存在) 5:资讯推荐(数据库已不存在);
  770. // 1:头条资讯;2:轮播图;6:热点资讯;(数据库)
  771. var_dump($where, 'where-----------------');
  772. // 初始化基础查询
  773. $query = Article::where($where)
  774. ->whereIn("catid", $category)
  775. ->where(function ($query) use ($data) {
  776. $query->whereRaw("JSON_CONTAINS(ignore_ids, '" . intval($data['website_id']) . "') = 0")
  777. ->orWhereNull("ignore_ids");
  778. });
  779. // 处理 level 相关查询条件
  780. $query->when($data['level'] == 5, function ($query) {
  781. $query->inRandomOrder()
  782. ->where('updated_at', '>', date("Y-m-d H:i:s", strtotime("-30 day")));
  783. })->when($data['level'] == 4, function ($query) {
  784. $query->orderBy("article.updated_at", "desc");
  785. })->when(!empty($data['level']), function ($query) use ($data) {
  786. if ($data['level'] != 4 && $data['level'] != 5) {
  787. $query->whereRaw("JSON_CONTAINS(level, '" . intval($data['level']) . "') = 1")
  788. ->orderBy("article.updated_at", "desc");
  789. }
  790. });
  791. // 初始化结果数组
  792. $result = [];
  793. // $input = $data['website_id'];
  794. // 处理图片新闻查询
  795. if (!empty($data['imgnum'])) {
  796. // 原错误提示表明 cleanBindings 方法需要传入数组类型的参数,而实际传入了 null。
  797. // 这里克隆查询构建器,确保绑定参数为数组,避免该错误。
  798. $imgQuery = clone $query;
  799. if ($imgQuery->getBindings() === null) {
  800. $imgQuery->setBindings([]);
  801. }
  802. $result['img'] = $imgQuery->where('article.imgurl', '!=', '')
  803. ->select(
  804. 'article.id',
  805. 'article.title',
  806. 'article.imgurl',
  807. 'article.author',
  808. 'article.updated_at',
  809. 'article.introduce',
  810. 'article.islink',
  811. 'article.linkurl',
  812. 'article.copyfrom',
  813. 'article.catid'
  814. )
  815. ->offset($data['placeid'])
  816. ->limit($data['imgnum'])
  817. ->get()
  818. ->map(function ($article) use ($data) {
  819. $catid = $article->catid;
  820. $pinyin = '';
  821. $category = WebsiteCategory::where('category_id', $catid)->where('website_category.website_id', $data['website_id'])->first();
  822. if (!empty($category->aLIas_pinyin) && $category->pid != 0) {
  823. $childCategory = WebsiteCategory::where('category_id', $category->pid)->where('website_category.website_id', $data['website_id'])->first();
  824. if ($childCategory && !empty($childCategory->aLIas_pinyin)) {
  825. $pinyin = $childCategory->aLIas_pinyin ? $childCategory->aLIas_pinyin . '/' . $category->aLIas_pinyin : null;
  826. }
  827. } else {
  828. $pinyin = $category->aLIas_pinyin ? $category->aLIas_pinyin : null;
  829. }
  830. $article->pinyin = $pinyin;
  831. return $article;
  832. });
  833. // $result['img'] = $this->processArticles($img_article, $input);
  834. }
  835. // 处理文字新闻查询
  836. if (!empty($data['textnum'])) {
  837. $textQuery = clone $query;
  838. $result['text'] = $textQuery
  839. ->select(
  840. 'article.id',
  841. 'article.title',
  842. 'article.imgurl',
  843. 'article.author',
  844. 'article.updated_at',
  845. 'article.introduce',
  846. 'article.islink',
  847. 'article.linkurl',
  848. 'article.copyfrom',
  849. 'article.catid'
  850. )
  851. ->offset($data['placeid'])
  852. ->limit($data['textnum'])
  853. ->get()
  854. ->map(function ($article) use ($data) {
  855. $catid = $article->catid;
  856. $pinyin = '';
  857. $category = WebsiteCategory::where('category_id', $catid)->where('website_category.website_id', $data['website_id'])->first();
  858. if (!empty($category->aLIas_pinyin) && $category->pid != 0) {
  859. $childCategory = WebsiteCategory::where('category_id', $category->pid)->where('website_category.website_id', $data['website_id'])->first();
  860. if ($childCategory && !empty($childCategory->aLIas_pinyin)) {
  861. $pinyin = $childCategory->aLIas_pinyin ? $childCategory->aLIas_pinyin . '/' . $category->aLIas_pinyin : null;
  862. }
  863. } else {
  864. $pinyin = $category->aLIas_pinyin ? $category->aLIas_pinyin : null;
  865. }
  866. $article->pinyin = $pinyin;
  867. return $article;
  868. });
  869. // $result['text'] = $this->processArticles($text_article, $input);
  870. }
  871. if (empty($result) || count($result) == 0) {
  872. return Result::error("暂无头条新闻");
  873. }
  874. return Result::success($result);
  875. } else {
  876. return Result::error("本网站下暂无相关栏目", 0);
  877. }
  878. }
  879. /**
  880. * 获取模块新闻
  881. * @param array $data
  882. * @return array
  883. */
  884. public function getWebsiteModelArticles(array $data): array
  885. {
  886. $catid = $data['catid'];
  887. $category = WebsiteCategory::where('website_id', $data['website_id'])->where('category_id', $catid)->select('category_id')->get();
  888. $category = $category->toArray();
  889. if (!empty($category)) {
  890. $where = [
  891. 'status' => 1,
  892. 'catid' => $catid,
  893. ];
  894. $placeid = isset($data['placeid']) && !empty($data['placeid']) ? $data['placeid'] - 1 : 0;
  895. // 1:文字新闻;2:轮播图;3:图文;
  896. // 级别:0:未分类
  897. // 3:推荐图片
  898. if ($data['level'] == 1) {
  899. $data['level'] = 0;
  900. }
  901. $result = Article::where($where)
  902. ->where(function ($query) use ($data) {
  903. $query->whereRaw("JSON_CONTAINS(level, '" . intval($data['level']) . "') = 1")
  904. ->orWhereNull("level")
  905. ->orWhereRaw("level = '[]'");
  906. })
  907. ->where(function ($query) use ($data) {
  908. $query->whereRaw("JSON_CONTAINS(ignore_ids, '" . intval($data['website_id']) . "') = 0")
  909. ->orWhereNull("ignore_ids");
  910. })
  911. ->orderBy("updated_at", "desc")
  912. ->offset($placeid)
  913. ->limit($data['pagesize'])
  914. ->get();
  915. if (empty($result)) {
  916. return Result::error("此栏目暂无相关新闻", 0);
  917. }
  918. } else {
  919. return Result::error("此网站暂无此栏目", 0);
  920. }
  921. return Result::success($result);
  922. }
  923. /**
  924. *获取新闻列表
  925. * @param array $data
  926. * @return array
  927. */
  928. public function getWebsiteArticleList(array $data): array
  929. {
  930. // return Result::success($data);
  931. $where[] = ['status', '=', 1];
  932. if (isset($data['catid']) && !empty($data['catid'])) {
  933. if (is_array($data['catid'])) {
  934. $category = WebsiteCategory::where('website_id', $data['website_id'])->whereIn('category_id', $data['catid'])->pluck('category_id');
  935. array_push($where, ['catid', 'in', $data['catid']]);
  936. } else {
  937. $category = WebsiteCategory::where('website_id', $data['website_id'])->where('category_id', $data['catid'])->pluck('category_id');
  938. array_push($where, ['catid', '=', $data['catid']]);
  939. }
  940. if (empty($category)) {
  941. return Result::error("此网站暂无此栏目", 0);
  942. }
  943. }
  944. // return Result::success($where);
  945. $rep = Article::where(function ($query) use ($where) {
  946. foreach ($where as $condition) {
  947. if ($condition[1] === 'in') {
  948. $query->whereIn($condition[0], $condition[2]);
  949. } else {
  950. $query->where($condition[0], $condition[1], $condition[2]);
  951. }
  952. }
  953. })
  954. ->where(function ($query) use ($data) {
  955. $query->whereRaw("JSON_CONTAINS(ignore_ids, '" . intval($data['website_id']) . "') = 0")
  956. ->orWhereNull("ignore_ids");
  957. })
  958. ->select(
  959. 'article.id',
  960. 'article.title',
  961. 'article.imgurl',
  962. 'article.author',
  963. 'article.updated_at',
  964. 'article.introduce',
  965. 'article.islink',
  966. 'article.linkurl',
  967. 'article.copyfrom',
  968. 'article.catid'
  969. )
  970. ->orderBy("updated_at", "desc")
  971. ->offset(($data['page'] - 1) * $data['pageSize'])
  972. ->limit($data['pageSize'])
  973. ->get()
  974. ->map(function ($article) use ($data) {
  975. $catid = $article->catid ?? 0;
  976. $pinyin = '';
  977. $category = WebsiteCategory::where('category_id', $catid)->where('website_category.website_id', $data['website_id'])->first();
  978. $pinyin = $category->aLIas_pinyin ? $category->aLIas_pinyin : null;
  979. if ($category->pid != 0 && !empty($category->aLIas_pinyin)) {
  980. $childCategory = WebsiteCategory::where('category_id', $category->pid)->where('website_category.website_id', $data['website_id'])->first();
  981. $pinyin = $childCategory->aLIas_pinyin ? $childCategory->aLIas_pinyin . '/' . $category->aLIas_pinyin : null;
  982. }
  983. $article->pinyin = $pinyin;
  984. return $article;
  985. });
  986. $count = Article::where(function ($query) use ($where) {
  987. foreach ($where as $condition) {
  988. if ($condition[1] === 'in') {
  989. $query->whereIn($condition[0], $condition[2]);
  990. } else {
  991. $query->where($condition[0], $condition[1], $condition[2]);
  992. }
  993. }
  994. })->count();
  995. $data = [
  996. 'rows' => $rep->toArray(),
  997. 'count' => $count,
  998. ];
  999. if (empty($rep)) {
  1000. return Result::error("没有信息数据");
  1001. }
  1002. return Result::success($data);
  1003. }
  1004. /**
  1005. * 前端-获取新闻详情
  1006. * @param array $data
  1007. * @return array
  1008. */
  1009. public function selectWebsiteArticleInfo(array $data): array
  1010. {
  1011. $where = [
  1012. 'article.id' => $data['id'],
  1013. 'article.status' => 1,
  1014. ];
  1015. $result = Article::where($where)->leftJoin("article_data", "article.id", "article_data.article_id")
  1016. ->where(function ($query) use ($data) {
  1017. $query->whereRaw("JSON_CONTAINS(ignore_ids, '" . intval($data['website_id']) . "') = 0")
  1018. ->orWhereNull("ignore_ids");
  1019. })
  1020. ->first();
  1021. if (empty($result)) {
  1022. return Result::error("暂无此新闻!", 0);
  1023. }
  1024. $category = WebsiteCategory::leftJoin('website', 'website.id', '=', 'website_category.website_id')
  1025. ->select('website_category.*', 'website.website_name', 'website.suffix')
  1026. ->where('website_category.website_id', $data['website_id'])
  1027. ->where(['website_category.category_id' => $result['catid']])
  1028. ->first();
  1029. if (empty($category)) {
  1030. return Result::error("查询失败", 0);
  1031. }
  1032. //手动推荐文章
  1033. $commend_ids = $result['commend_id'] ? json_decode($result['commend_id']) : [];
  1034. $commendArticle = Article::whereIn('id', $commend_ids)
  1035. ->where('status', 1)
  1036. ->select('id', 'title', 'catid', 'imgurl', 'hits', 'created_at')
  1037. ->orderBy('updated_at', 'desc')
  1038. ->limit(5)
  1039. ->get();
  1040. $result['category_id'] = $category['category_id'];
  1041. $result['cat_name'] = $category['alias'];
  1042. $result['website_name'] = $category['website_name'] ?? "";
  1043. $result['suffix'] = $category['suffix'] ?? "";
  1044. $result['commendArticle'] = $commendArticle;
  1045. return Result::success($result);
  1046. }
  1047. /**
  1048. * 前端-获取网站调查问卷
  1049. * @param array $data
  1050. * @return array
  1051. */
  1052. public function getWebsiteSurvey(array $data): array
  1053. {
  1054. if (isset($data['website_id']) && !empty($data['website_id'])) {
  1055. $website = Website::where('id', $data['website_id'])->first();
  1056. if (empty($website)) {
  1057. return Result::error("暂无此网站", 0);
  1058. }
  1059. }
  1060. if (isset($data['art_id']) && !empty($data['art_id'])) {
  1061. $article = Article::where('id', $data['art_id'])->where('status', 1)->first();
  1062. if (empty($article)) {
  1063. return Result::error("暂无此文章", 0);
  1064. }
  1065. // return Result::error($data,0);
  1066. $where['art_id'] = $data['art_id'];
  1067. // $query = ArticleSurvey::where('art_id',$data['art_id']);
  1068. } else {
  1069. $survey = Article::where(function ($query) {
  1070. $query->whereRaw("JSON_CONTAINS(cat_arr_id, '28')")
  1071. ->orWhereRaw("JSON_CONTAINS(cat_arr_id, '\"28\"')");
  1072. })
  1073. ->where('status', 1)
  1074. ->where('is_survey', 1)
  1075. ->select('survey_id')
  1076. ->orderBy('updated_at', 'desc')
  1077. ->first();
  1078. if (empty($survey)) {
  1079. return Result::error("暂无调查问卷", 0);
  1080. }
  1081. $where['sur_id'] = $survey['survey_id'];
  1082. // $query = ArticleSurvey::where('sur_id',$survey['sur_id']);
  1083. }
  1084. // return Result::success($where);
  1085. $result = ArticleSurvey::where($where)
  1086. ->where(function ($query) {
  1087. $query->where('is_other', 0)
  1088. ->orWhere(function ($subQuery) {
  1089. $subQuery->where('is_other', 1)
  1090. ->where('other_id', 0);
  1091. });
  1092. })
  1093. ->leftJoin('article', 'article_survey.art_id', 'article.id')
  1094. ->select('article_survey.*', 'article.survey_type')
  1095. ->get()->all();
  1096. if (empty($result)) {
  1097. return Result::error("此文章暂无调查问卷", 0);
  1098. }
  1099. return Result::success($result);
  1100. }
  1101. /**
  1102. * 前端-添加网站调查问卷选项
  1103. * @param array $data
  1104. * @return array
  1105. */
  1106. public function addWebsiteSurveyOption(array $data): array
  1107. {
  1108. if (isset($data['website_id']) && !empty($data['website_id'])) {
  1109. $website = Website::where('id', $data['website_id'])->first();
  1110. if (empty($website)) {
  1111. return Result::error("暂无此网站", 0);
  1112. }
  1113. if (isset($data['sur_id']) && !empty($data['sur_id'])) {
  1114. $survey = ArticleSurvey::where('sur_id', $data['sur_id'])->where('is_other', 1)->where('other_id', 0)->first();
  1115. if (empty($survey)) {
  1116. return Result::error("此调查问卷不可添加选项", 0);
  1117. }
  1118. if (isset($data['choice_name']) && !empty($data['choice_name'])) {
  1119. $choice = [
  1120. 'art_id' => $survey['art_id'],
  1121. 'website_id' => $data['website_id'],
  1122. 'survey_name' => $survey['survey_name'],
  1123. 'choice_name' => $data['choice_name'],
  1124. 'sur_id' => $survey['sur_id'],
  1125. 'is_other' => 1,
  1126. 'other_id' => $survey['id'],
  1127. ];
  1128. $result = ArticleSurvey::insertGetId($choice);
  1129. if (empty($result)) {
  1130. return Result::error("添加失败", 0);
  1131. }
  1132. return Result::success($result);
  1133. }
  1134. }
  1135. return Result::error("添加失败", 0);
  1136. }
  1137. return Result::error("添加失败", 0);
  1138. }
  1139. /**
  1140. * 前端-调查问卷投票
  1141. * @param array $data
  1142. * @return array
  1143. */
  1144. public function addWebsiteSurveyVote(array $data): array
  1145. {
  1146. // return Result::success($data);
  1147. if (isset($data['website_id']) && !empty($data['website_id'])) {
  1148. $website = Website::where('id', $data['website_id'])->first();
  1149. if (empty($website)) {
  1150. return Result::error("暂无此网站", 0);
  1151. }
  1152. if (isset($data['sur_id']) && !empty($data['sur_id'])) {
  1153. $is_survey = ArticleSurvey::where('sur_id', $data['sur_id'])->first();
  1154. // return Result::success($survey);
  1155. if (empty($is_survey)) {
  1156. return Result::error("此调查问卷不存在", 0);
  1157. }
  1158. // return Result::success($survey);
  1159. // 调查问卷类型
  1160. if (isset($data['choice_id']) && !empty($data['choice_id'])) {
  1161. //多选 若是json型则转化成数组类型
  1162. if (strpos($data['choice_id'], '[') === 0) {
  1163. $data['choice_id'] = json_decode($data['choice_id'], true);
  1164. } else {
  1165. // 单选 也转换成数组
  1166. $data['choice_id'] = [$data['choice_id']];
  1167. }
  1168. $data['choice_id'] = array_map('intval', $data['choice_id']);
  1169. $other = ArticleSurvey::whereIn('id', $data['choice_id'])
  1170. // ->where('website_id',$data['website_id'])
  1171. ->where('is_other', 1)
  1172. ->where('other_id', 0)
  1173. ->first();
  1174. if (!empty($other)) {
  1175. return Result::error("请选择已有的选项!", 0);
  1176. }
  1177. $choice['other'] = ArticleSurvey::whereIn('id', $data['choice_id'])
  1178. // ->where('website_id',$data['website_id'])
  1179. ->where('is_other', 1)
  1180. ->where('other_id', '!=', 0)
  1181. ->first();
  1182. // return Result::success($choice['other']);
  1183. $choice_id = $data['choice_id'];
  1184. if (!empty($choice['other'])) {
  1185. // array_push($data['choice_id'],$choice['other']['other_id']);
  1186. if (!empty($choice_id)) {
  1187. $key = array_search($choice['other']['id'], $choice_id);
  1188. if ($key !== false) {
  1189. unset($choice_id[$key]);
  1190. $choice_id = array_values($choice_id);
  1191. }
  1192. array_push($choice_id, $choice['other']['other_id']);
  1193. } else {
  1194. $choice_id[0] = $choice['other']['other_id'];
  1195. }
  1196. array_push($data['choice_id'], $choice['other']['other_id']);
  1197. }
  1198. // return Result::success($data);
  1199. $choice = ArticleSurvey::whereIn('id', $data['choice_id'])
  1200. // ->where('website_id',$data['website_id'])
  1201. ->increment('results', 1);
  1202. if (empty($choice)) {
  1203. return Result::error("请选择已有的选项!", 0);
  1204. }
  1205. $survey['data'] = ArticleSurvey::where('sur_id', $data['sur_id'])
  1206. // ->where('website_id',$data['website_id'])
  1207. ->where('other_id', 0)
  1208. ->get();
  1209. $survey['choice'] = $choice_id;
  1210. return Result::success($survey);
  1211. }
  1212. return Result::error("参数必填!");
  1213. }
  1214. return Result::error("此调查问卷不存在", 0);
  1215. }
  1216. return Result::error("参数必填!");
  1217. }
  1218. /**
  1219. * 后端-获取网站调查问卷列表
  1220. * @param array $data
  1221. * @return array
  1222. */
  1223. public function getSurveyList(array $data): array
  1224. {
  1225. $where = [];
  1226. if (isset($data['survey_name']) && !empty($data['survey_name'])) {
  1227. array_push($where, ['survey_name', 'like', '%' . $data['survey_name'] . '%']);
  1228. }
  1229. if (isset($data['survey_type']) && $data['survey_type'] != null) {
  1230. array_push($where, ['survey_type', '=', $data['survey_type']]);
  1231. }
  1232. if (isset($data['is_survey']) && $data['is_survey'] != null) {
  1233. array_push($where, ['is_survey', '=', $data['is_survey']]);
  1234. }
  1235. // return Result::success($where);
  1236. if (!empty($where)) {
  1237. $query = Article::where($where)->where(function ($q) {
  1238. $q->whereNotNull('survey_name')->where('survey_name', '!=', '');
  1239. });
  1240. } else {
  1241. $query = Article::where(function ($q) {
  1242. $q->whereNotNull('survey_name')->where('survey_name', '!=', '');
  1243. });
  1244. }
  1245. $count = $query->count();
  1246. $survey = $query->orderByDesc('id')
  1247. ->limit($data['pageSize'])
  1248. ->offset(($data['page'] - 1) * $data['pageSize'])
  1249. ->get();
  1250. if (empty($survey->toArray())) {
  1251. return Result::error("暂无调查问卷!", 0);
  1252. }
  1253. $result = [
  1254. 'rows' => $survey,
  1255. 'count' => $count,
  1256. ];
  1257. return Result::success($result);
  1258. }
  1259. /**
  1260. * 后端-获取网站调查问卷详情
  1261. * @param array $data
  1262. * @return array
  1263. */
  1264. public function getSurveyInfo(array $data): array
  1265. {
  1266. if (isset($data['sur_id']) && !empty($data['sur_id'])) {
  1267. $where = ['sur_id' => $data['sur_id']];
  1268. $choose = ArticleSurvey::where($where)->where('is_other', 0)
  1269. ->leftJoin('article', 'article_survey.art_id', 'article.id')
  1270. ->select('article_survey.*', 'article.survey_type')
  1271. ->get()->all();
  1272. if (empty($choose)) {
  1273. return Result::error("此调查问卷不存在", 0);
  1274. }
  1275. $resultsArray = array_column($choose, 'results');
  1276. $total = array_sum($resultsArray);
  1277. $other = ArticleSurvey::where($where)->where('is_other', 1)->where('other_id', 0)->first();
  1278. $others = ArticleSurvey::where($where)->where('is_other', 1)->where('other_id', '!=', 0)->orderByDesc('created_at')->get()->all();
  1279. // $total = 0;
  1280. if (!empty($other)) {
  1281. $total = $total + $other['results'];
  1282. $other['choice_name'] = '(其他)';
  1283. if (!empty($others)) {
  1284. $other['hasChildren'] = true;
  1285. // array_push($other,['hasChildren','=',true]);
  1286. $other['children'] = $others;
  1287. $other_choices = [$other->toArray()];
  1288. $mer_choice = array_merge($choose, $other_choices);
  1289. $value_choice = array_values($mer_choice);
  1290. } else {
  1291. // return Result::error('1111');
  1292. $other_choices = [$other->toArray()];
  1293. $other_choices = array_merge($choose, $other_choices);
  1294. $value_choice = array_values($other_choices);
  1295. // return Result::success($result);
  1296. }
  1297. } else {
  1298. $value_choice = $choose;
  1299. }
  1300. $result = [
  1301. 'choose' => $value_choice,
  1302. 'total' => $total,
  1303. ];
  1304. }
  1305. return Result::success($result);
  1306. }
  1307. /**
  1308. * 前端-搜索新闻列表
  1309. * @param array $data
  1310. * @return array
  1311. */
  1312. public function selectWebsiteArticle(array $data): array
  1313. {
  1314. $where = [];
  1315. // 初始化查询构造器
  1316. $category = WebsiteCategory::where('website_id', $data['website_id'])->pluck('category_id');
  1317. $query = Article::where('status', 1)
  1318. ->whereIn('catid', $category)
  1319. ->where(function ($query) use ($data) {
  1320. $query->where(function ($subQuery) use ($data) {
  1321. $subQuery->whereRaw("JSON_CONTAINS(ignore_ids, '" . intval($data['website_id']) . "') = 0");
  1322. })->orWhereNull("ignore_ids");
  1323. });
  1324. // return Result::success($all_articles);
  1325. // 检查是否存在 cityid 参数
  1326. if (isset($data['cityid']) && !empty($data['cityid'])) {
  1327. $query->whereRaw("JSON_CONTAINS(city_arr_id, '" . intval($data['cityid']) . "')");
  1328. }
  1329. // 检查是否存在 department_id 参数
  1330. if (isset($data['department_id']) && !empty($data['department_id'])) {
  1331. $query->whereRaw("JSON_CONTAINS(department_arr_id, '" . intval($data['department_id']) . "')");
  1332. }
  1333. // 检查是否存在 keyword 参数
  1334. if (isset($data['keyword']) && !empty($data['keyword'])) {
  1335. $query->where('title', 'like', '%' . $data['keyword'] . '%');
  1336. }
  1337. // 计算总数
  1338. $count = $query->count();
  1339. // 分页查询
  1340. $articles = $query
  1341. ->select(
  1342. 'article.id',
  1343. 'article.title',
  1344. 'article.imgurl',
  1345. 'article.author',
  1346. 'article.updated_at',
  1347. 'article.introduce',
  1348. 'article.islink',
  1349. 'article.linkurl',
  1350. 'article.copyfrom',
  1351. 'article.catid',
  1352. 'article.department_arr_id',
  1353. 'article.city_arr_id',
  1354. )
  1355. ->orderBy("updated_at", "desc")
  1356. ->offset(($data['page'] - 1) * $data['pageSize'])
  1357. ->limit($data['pageSize'])
  1358. ->get()
  1359. ->map(function ($article) use ($data) {
  1360. $catid = $article->catid ?? 0;
  1361. $pinyin = '';
  1362. $category = WebsiteCategory::where('category_id', $catid)->where('website_category.website_id', $data['website_id'])->first();
  1363. $pinyin = $category->aLIas_pinyin ? $category->aLIas_pinyin : null;
  1364. if ($category->pid != 0 && !empty($category->aLIas_pinyin)) {
  1365. $childCategory = WebsiteCategory::where('category_id', $category->pid)->where('website_category.website_id', $data['website_id'])->first();
  1366. $pinyin = $childCategory->aLIas_pinyin ? $childCategory->aLIas_pinyin . '/' . $category->aLIas_pinyin : null;
  1367. }
  1368. $article->pinyin = $pinyin;
  1369. return $article;
  1370. });
  1371. if (empty($articles)) {
  1372. return Result::error("没有符合条件的资讯数据");
  1373. }
  1374. $data = [
  1375. 'rows' => $articles,
  1376. 'count' => $count,
  1377. ];
  1378. return Result::success($data);
  1379. }
  1380. /**
  1381. * 模块新闻加强版
  1382. * @param array $data
  1383. * @return array
  1384. */
  1385. public function getWebsiteCatidArticle(array $data): array
  1386. {
  1387. // return Result::success($data);
  1388. $where = [
  1389. // 'category.status' => 1,
  1390. 'website_category.category_id' => $data['catid'],
  1391. 'website_category.website_id' => $data['website_id'],
  1392. // 'article.status' => 1,
  1393. ];
  1394. // $category = WebsiteCategory::where($where);
  1395. if (isset($data['child_catnum']) && !empty($data['child_catnum'])) {
  1396. $child_catnum = $data['child_catnum'] ?? 1;
  1397. $category['child'] = WebsiteCategory::where('pid', $data['catid'])->where('website_id', $data['website_id'])->select('category_id', 'alias')->limit($child_catnum)->get()->toArray();
  1398. $childCategoryIds = array_column($category['child'], 'category_id');
  1399. if (empty($childCategoryIds)) {
  1400. return Result::error("暂无子栏目", 0);
  1401. }
  1402. $imgArticles = [];
  1403. $textArticles = [];
  1404. // return Result::success($childCategoryIds);
  1405. if (isset($data['child_imgnum']) && !empty($data['child_imgnum']) && $data['child_imgnum'] != 0) {
  1406. // 初始化子分类图片新闻和文字新闻数组
  1407. // 查询所有子级栏目的图文新闻
  1408. $imgArticles = Article::where('catid', $childCategoryIds[0])
  1409. ->where(function ($query) use ($data) {
  1410. $query->where(function ($subQuery) use ($data) {
  1411. $subQuery->whereRaw("JSON_CONTAINS(ignore_ids, '" . intval($data['website_id']) . "') = 0");
  1412. })->orWhereNull("ignore_ids");
  1413. })
  1414. ->where('status', 1)
  1415. ->where('imgurl', '!=', '')
  1416. ->select('*')
  1417. ->orderBy('updated_at', 'desc')
  1418. ->limit($data['child_imgnum'])
  1419. ->get();
  1420. }
  1421. if (isset($data['child_textnum']) && !empty($data['child_textnum']) && $data['child_textnum'] != 0) {
  1422. // 查询所有子级栏目的文字新闻
  1423. $textArticles = Article::where('catid', $childCategoryIds[0])
  1424. ->where('status', 1)
  1425. ->where(function ($query) use ($data) {
  1426. $query->where(function ($subQuery) use ($data) {
  1427. $subQuery->whereRaw("JSON_CONTAINS(ignore_ids, '" . intval($data['website_id']) . "') = 0");
  1428. })->orWhereNull("ignore_ids");
  1429. })
  1430. // ->where(function ($query) {
  1431. // $query->whereNull('imgurl')
  1432. // ->orWhere('imgurl', '');
  1433. // })
  1434. ->select('*')
  1435. ->orderBy('updated_at', 'desc')
  1436. ->limit($data['child_textnum'])
  1437. ->get();
  1438. }
  1439. // 遍历子分类,将图文新闻和文字新闻分别添加到子分类中
  1440. $category['child'] = array_map(function ($child) use ($imgArticles, $textArticles) {
  1441. $child['img'] = $imgArticles ? $imgArticles->where('catid', $child['category_id']) : [];
  1442. $child['text'] = $textArticles ? $textArticles->where('catid', $child['category_id']) : [];
  1443. return $child;
  1444. }, $category['child']);
  1445. }
  1446. // }
  1447. if (isset($data['img_num']) && !empty($data['img_num'])) {
  1448. $category['img'] = WebsiteCategory::where($where)
  1449. ->leftJoin('article', 'article.catid', 'website_category.category_id')
  1450. ->where('article.status', 1)
  1451. ->where('article.imgurl', '!=', '')
  1452. ->select('article.*', 'website_category.category_id', 'website_category.alias')
  1453. ->orderBy('article.updated_at', 'desc')
  1454. ->limit($data['img_num'])
  1455. ->get();
  1456. }
  1457. if (isset($data['text_num']) && !empty($data['text_num'])) {
  1458. $category['text'] = WebsiteCategory::where($where)
  1459. ->leftJoin('article', 'article.catid', 'website_category.category_id')
  1460. ->where('article.status', 1)
  1461. // ->where(function ($query) {
  1462. // $query->whereNull('article.imgurl')
  1463. // ->orWhere('article.imgurl', '');
  1464. // })
  1465. ->select('article.*', 'website_category.category_id', 'website_category.alias')
  1466. ->orderBy('article.updated_at', 'desc')
  1467. ->limit($data['text_num'])
  1468. ->get();
  1469. }
  1470. // $category = $category->get();
  1471. if (empty($category)) {
  1472. return Result::error("查询失败", 0);
  1473. }
  1474. return Result::success($category);
  1475. }
  1476. /**
  1477. * 模块新闻加强plus版
  1478. * @param array $data
  1479. * @return array
  1480. */
  1481. public function getWebsiteAllArticle(array $data): array
  1482. {
  1483. // 修正传入的字符串,将单引号替换为双引号
  1484. $input['id'] = $data['id'];
  1485. $input['website_id'] = $data['website_id'];
  1486. // 将 JSON 字符串转换为 PHP 数组
  1487. $data = json_decode($input['id'], true);
  1488. // 使用 array_map 处理每个元素
  1489. $result = array_map(function ($item) use ($input) {
  1490. // 检查parent元素是否存在且不是undefined
  1491. if (isset($item['parent']) && $item['parent'] != 'undefined' && $item['parent'] != "") {
  1492. list($parentCatId, $parentImgNum, $parentTextNum) = explode(',', $item['parent']);
  1493. $website = [
  1494. 'website_id' => $input['website_id'],
  1495. ];
  1496. // 查询栏目名称
  1497. $category = WebsiteCategory::where('category_id', $parentCatId)->where($website)->first(['alias', 'category_id', 'aLIas_pinyin']);
  1498. if (empty($category)) {
  1499. $parent_alias = '';
  1500. $parent_pinyin = null;
  1501. $imgArticles = [];
  1502. $textArticles = [];
  1503. } else {
  1504. $parent_alias = $category->alias ?? '';
  1505. $parent_pinyin = $category->aLIas_pinyin ? $category->aLIas_pinyin : null;
  1506. // 查找子分类ID数组
  1507. $childCategoryIds = WebsiteCategory::where('pid', $parentCatId)->where($website)->pluck('category_id')->toArray();
  1508. array_push($childCategoryIds, $parentCatId);
  1509. $childCategoryIds = json_encode(array_values(array_unique($childCategoryIds)));
  1510. if ($parentImgNum != 0) {
  1511. // 查询图片新闻
  1512. $imgArticles = Article::where('article.status', 1)
  1513. ->where(function ($query) use ($parentCatId) {
  1514. $query->whereRaw("JSON_CONTAINS(cat_arr_id, '\"$parentCatId\"')")
  1515. ->orWhereRaw("JSON_CONTAINS(cat_arr_id, '$parentCatId')");
  1516. })
  1517. ->where(function ($query) use ($website) {
  1518. $query->where(function ($subQuery) use ($website) {
  1519. $subQuery->whereRaw("JSON_CONTAINS(ignore_ids, '" . intval($website['website_id']) . "') = 0")
  1520. ->orWhereNull("ignore_ids");
  1521. });
  1522. })
  1523. ->where('imgurl', '!=', '')
  1524. ->leftJoin('website_category', function ($join) use ($website) {
  1525. $join->on('article.catid', '=', 'website_category.category_id')
  1526. ->where('website_category.website_id', '=', $website['website_id']);
  1527. })
  1528. ->select(
  1529. 'article.id',
  1530. 'article.title',
  1531. 'article.imgurl',
  1532. 'article.author',
  1533. 'article.updated_at',
  1534. 'article.introduce',
  1535. 'article.islink',
  1536. 'article.linkurl',
  1537. 'article.copyfrom',
  1538. 'article.catid',
  1539. 'website_category.alias as category_name',
  1540. DB::raw("CASE WHEN article.catid = $parentCatId THEN '$parent_pinyin'
  1541. ELSE CONCAT('$parent_pinyin', '/', website_category.aLIas_pinyin) END as pinyin")
  1542. )
  1543. ->orderBy('updated_at', 'desc')
  1544. ->limit($parentImgNum)
  1545. ->get()->all();
  1546. // 查询文字新闻
  1547. }
  1548. if ($parentTextNum != 0) {
  1549. $textArticles = [];
  1550. $textArticles = Article::where('article.status', 1)
  1551. ->where(function ($query) use ($parentCatId) {
  1552. $query->whereRaw("JSON_CONTAINS(cat_arr_id, '\"$parentCatId\"')")
  1553. ->orWhereRaw("JSON_CONTAINS(cat_arr_id, '$parentCatId')");
  1554. })
  1555. ->where(function ($query) use ($website) {
  1556. $query->where(function ($subQuery) use ($website) {
  1557. $subQuery->whereRaw("JSON_CONTAINS(ignore_ids, '" . intval($website['website_id']) . "') = 0")
  1558. ->orWhereNull("ignore_ids");
  1559. });
  1560. })
  1561. ->leftJoin('website_category', function ($join) use ($website) {
  1562. $join->on('article.catid', '=', 'website_category.category_id')
  1563. ->where('website_category.website_id', '=', $website['website_id']);
  1564. })
  1565. ->select(
  1566. 'article.id',
  1567. 'article.title',
  1568. 'article.imgurl',
  1569. 'article.author',
  1570. 'article.updated_at',
  1571. 'article.introduce',
  1572. 'article.islink',
  1573. 'article.linkurl',
  1574. 'article.copyfrom',
  1575. 'article.catid',
  1576. 'website_category.alias as category_name',
  1577. DB::raw("CASE WHEN article.catid = $parentCatId THEN '$parent_pinyin'
  1578. ELSE CONCAT('$parent_pinyin', '/', website_category.aLIas_pinyin) END as pinyin")
  1579. )
  1580. ->orderBy('updated_at', 'desc')
  1581. ->limit($parentTextNum)
  1582. ->get()->all();
  1583. }
  1584. }
  1585. }
  1586. $resultItem = [
  1587. 'alias' => $parent_alias ?? '',
  1588. 'category_id' => $parentCatId ?? 0,
  1589. 'pinyin' => $parent_pinyin ?? null,
  1590. 'imgnum' => $imgArticles ?? [],
  1591. 'textnum' => $textArticles ?? [],
  1592. ];
  1593. if (isset($item['child']) && $item['child'] != 'undefined' && $item['child'] != "") {
  1594. $parent_pinyin_str = is_string($parent_pinyin) ? $parent_pinyin . '/' : '';
  1595. $childCategory = WebsiteCategory::where('pid', $parentCatId)->where($website)
  1596. ->selectRaw("category_id, alias, CONCAT( ?, aLIas_pinyin) as aLIas_pinyin", [$parent_pinyin_str])
  1597. ->get()->all();
  1598. if (!empty($childCategory)) {
  1599. list($childCatId, $childImgNum, $childTextNum) = explode(',', $item['child']);
  1600. // 查询子栏目名称
  1601. $childCategoryInfo = WebsiteCategory::where('category_id', $childCatId)->where($website)
  1602. ->selectRaw("category_id, alias, CONCAT( ?, aLIas_pinyin) as aLIas_pinyin", [$parent_pinyin_str])
  1603. ->first();
  1604. if (empty($childCategoryInfo) || ($childImgNum == 0 && $childTextNum == 0)) {
  1605. $childImgArticles = [];
  1606. $childTextArticles = [];
  1607. $resultItem['child'] = [];
  1608. } else {
  1609. $child_pinyin = $childCategoryInfo->aLIas_pinyin ? $childCategoryInfo->aLIas_pinyin : null;
  1610. // 查询子栏目图片新闻
  1611. $childImgArticles = Article::where('catid', $childCatId)
  1612. ->where('status', 1)
  1613. ->where(function ($query) use ($website) {
  1614. $query->where(function ($subQuery) use ($website) {
  1615. $subQuery->whereRaw("JSON_CONTAINS(ignore_ids, '" . intval($website['website_id']) . "') = 0");
  1616. })->orWhereNull("ignore_ids");
  1617. })
  1618. ->select(
  1619. 'article.id',
  1620. 'article.title',
  1621. 'article.imgurl',
  1622. 'article.author',
  1623. 'article.updated_at',
  1624. 'article.introduce',
  1625. 'article.islink',
  1626. 'article.linkurl',
  1627. 'article.copyfrom',
  1628. DB::raw("'$child_pinyin' as pinyin")
  1629. )
  1630. ->where('imgurl', '!=', '')
  1631. ->orderBy('updated_at', 'desc')
  1632. ->limit($childImgNum)
  1633. ->get()->all();
  1634. // 查询子栏目文字新闻
  1635. $childTextArticles = Article::where('catid', $childCatId)
  1636. ->where('status', 1)
  1637. ->where(function ($query) use ($website) {
  1638. $query->where(function ($subQuery) use ($website) {
  1639. $subQuery->whereRaw("JSON_CONTAINS(ignore_ids, '" . intval($website['website_id']) . "') = 0");
  1640. })->orWhereNull("ignore_ids");
  1641. })
  1642. ->select(
  1643. 'article.id',
  1644. 'article.title',
  1645. 'article.author',
  1646. 'article.updated_at',
  1647. 'article.introduce',
  1648. 'article.islink',
  1649. 'article.linkurl',
  1650. 'article.copyfrom',
  1651. DB::raw("'$child_pinyin' as pinyin")
  1652. )
  1653. ->orderBy('updated_at', 'desc')
  1654. ->limit($childTextNum)
  1655. ->get()->all();
  1656. $resultItem['child'] = [
  1657. 'alias' => $childCategoryInfo ? $childCategoryInfo->alias : null,
  1658. 'category_id' => $childCatId,
  1659. 'pinyin' => $childCategoryInfo->aLIas_pinyin ?? '',
  1660. 'all_childcat' => $childCategory,
  1661. 'imgnum' => $childImgArticles,
  1662. 'textnum' => $childTextArticles,
  1663. ];
  1664. }
  1665. // $resultItem['pinyin'] = $childCategoryInfo->aLIas_pinyin ?? '';
  1666. }
  1667. } else {
  1668. $resultItem['child'] = [];
  1669. }
  1670. return $resultItem;
  1671. }, $data);
  1672. return Result::success($result);
  1673. // return Result::success($data);
  1674. }
  1675. /**
  1676. * 乡村网-获取特殊新闻模块
  1677. * @param array $data
  1678. * @return array
  1679. */
  1680. public function getWebsiteArticles(array $data): array
  1681. {
  1682. $input['id'] = $data['id'];
  1683. $input['website_id'] = $data['website_id'];
  1684. $data = json_decode($input['id'], true);
  1685. // 使用 array_map 处理每个元素
  1686. $result = array_map(function ($item) use ($input) {
  1687. list($parentCatId, $parentImgNum, $parentTextNum) = explode(',', $item['parent']);
  1688. $website = [
  1689. 'website_id' => $input['website_id']
  1690. ];
  1691. // 查询栏目名称
  1692. $category = WebsiteCategory::where('category_id', $parentCatId)->where($website)->first(['alias', 'category_id', 'aLIas_pinyin']);
  1693. $pinyin = $category->aLIas_pinyin ? $category->aLIas_pinyin : null;
  1694. if (empty($category)) {
  1695. $imgArticles = [];
  1696. $textArticles = [];
  1697. // return Result::error("暂无此栏目",0);
  1698. } else {
  1699. $child_category = WebsiteCategory::where('pid', $parentCatId)->where($website)->pluck('category_id')->toArray();
  1700. $parent_alias = $category->aLIas_pinyin ? $category->aLIas_pinyin . '/' : null;
  1701. // return Result::success($website);
  1702. // 查询图片新闻
  1703. // 合并查询条件
  1704. $baseQuery = Article::where(function ($query) use ($website) {
  1705. $query->where(function ($subQuery) use ($website) {
  1706. $subQuery->whereRaw("JSON_CONTAINS(ignore_ids, '" . intval($website['website_id']) . "') = 0");
  1707. })->orWhereNull("ignore_ids");
  1708. })
  1709. ->where('article.status', 1)
  1710. ->leftJoin('website_category', 'website_category.category_id', 'article.catid')
  1711. ->where('website_category.website_id', $website['website_id']);
  1712. // 查询文字新闻
  1713. $textArticles = clone $baseQuery;
  1714. $textArticles = $textArticles->whereIn('catid', $child_category)
  1715. ->select(
  1716. 'article.id',
  1717. 'article.title',
  1718. // 'article.imgurl',
  1719. 'article.author',
  1720. 'article.updated_at',
  1721. 'article.introduce',
  1722. 'article.islink',
  1723. 'article.linkurl',
  1724. 'article.copyfrom',
  1725. 'website_category.category_id',
  1726. 'website_category.alias',
  1727. 'website_category.aLIas_pinyin'
  1728. )
  1729. ->selectRaw("CONCAT(?, aLIas_pinyin) as aLIas_pinyin", [$parent_alias])
  1730. ->orderBy('article.updated_at', 'desc')
  1731. ->limit($parentTextNum)
  1732. ->get()
  1733. ->all();
  1734. if (empty($textArticles)) {
  1735. $textArticles = clone $baseQuery;
  1736. $textArticles = $textArticles->where('catid', $parentCatId)
  1737. ->select(
  1738. 'article.id',
  1739. 'article.title',
  1740. // 'article.imgurl',
  1741. 'article.author',
  1742. 'article.updated_at',
  1743. 'article.introduce',
  1744. 'article.islink',
  1745. 'article.linkurl',
  1746. 'article.copyfrom',
  1747. 'website_category.category_id',
  1748. 'website_category.alias',
  1749. 'website_category.aLIas_pinyin'
  1750. )
  1751. ->selectRaw("CONCAT(?, aLIas_pinyin) as aLIas_pinyin", [$parent_alias])
  1752. ->orderBy('article.updated_at', 'desc')
  1753. ->limit($parentTextNum)
  1754. ->get()
  1755. ->all();
  1756. }
  1757. // 查询图片新闻
  1758. $imgArticles = clone $baseQuery;
  1759. $imgArticles = $imgArticles->where('imgurl', '!=', '')->whereIn('catid', $child_category)
  1760. ->select(
  1761. 'article.id',
  1762. 'article.title',
  1763. 'article.imgurl',
  1764. 'article.author',
  1765. 'article.updated_at',
  1766. 'article.introduce',
  1767. 'article.islink',
  1768. 'article.linkurl',
  1769. 'article.copyfrom',
  1770. 'website_category.category_id',
  1771. 'website_category.alias',
  1772. 'website_category.aLIas_pinyin'
  1773. )
  1774. ->selectRaw("CONCAT(?, aLIas_pinyin) as aLIas_pinyin", [$parent_alias])
  1775. ->orderBy('article.updated_at', 'desc')
  1776. ->limit($parentImgNum)
  1777. ->get()
  1778. ->all();
  1779. if (empty($imgArticles)) {
  1780. $imgArticles = clone $baseQuery;
  1781. $imgArticles = $imgArticles->where('imgurl', '!=', '')->where('catid', $parentCatId)
  1782. ->select(
  1783. 'article.id',
  1784. 'article.title',
  1785. 'article.imgurl',
  1786. 'article.author',
  1787. 'article.updated_at',
  1788. 'article.introduce',
  1789. 'article.islink',
  1790. 'article.linkurl',
  1791. 'article.copyfrom',
  1792. 'website_category.category_id',
  1793. 'website_category.alias',
  1794. 'website_category.aLIas_pinyin'
  1795. )
  1796. ->selectRaw("CONCAT(?, aLIas_pinyin) as aLIas_pinyin", [$parent_alias])
  1797. ->orderBy('article.updated_at', 'desc')
  1798. ->limit($parentImgNum)
  1799. ->get()
  1800. ->all();
  1801. }
  1802. }
  1803. $resultItem = [
  1804. 'alias' => $category ? $category->alias : null,
  1805. 'category_id' => $parentCatId,
  1806. 'pinyin' => $pinyin ? $pinyin : null,
  1807. 'imgnum' => $imgArticles ?? [],
  1808. 'textnum' => $textArticles ?? [],
  1809. ];
  1810. return $resultItem;
  1811. }, $data);
  1812. return Result::success($result);
  1813. }
  1814. // 封装处理商品的路由问题
  1815. function processGoods($goods, $data)
  1816. {
  1817. return $goods->map(function ($good) use ($data) {
  1818. $catid = $good->catid ?? 0;
  1819. // $pinyin = '';
  1820. $category = WebsiteCategory::where('category_id', $catid)->where('website_id', $data['website_id'])->first();
  1821. if (!empty($category->pid) && $category->pid != 0) {
  1822. $level = json_decode($category->category_arr_id);
  1823. $pinyin = WebsiteCategory::where('website_id', $data['website_id'])
  1824. ->whereIn('category_id', $level)
  1825. ->orderByRaw('FIELD(category_id, ' . implode(',', $level) . ')')
  1826. ->get(['aLIas_pinyin'])
  1827. ->pluck('aLIas_pinyin')
  1828. ->implode('/');
  1829. } else {
  1830. $pinyin = $category->aLIas_pinyin ?? '';
  1831. }
  1832. if (isset($good->city_id) && !empty($good->city_id)) {
  1833. $city = District::where('id', $good->city_id)->first(['name']);
  1834. $good->city_name = $city->name ?? '';
  1835. }
  1836. // 解析imgurl JSON并取第一条数据
  1837. $imgUrls = json_decode($good->imgurl, true);
  1838. $good->imgurl = !empty($imgUrls) ? $imgUrls[0] : null;
  1839. $good->pinyin = $pinyin;
  1840. return $good;
  1841. });
  1842. }
  1843. /**
  1844. * 获取商品模块
  1845. * @param array $data
  1846. * @return array
  1847. * */
  1848. public function getWebsiteshop(array $data): array
  1849. {
  1850. $input['id'] = $data['id'];
  1851. $input['website_id'] = $data['website_id'];
  1852. $catid = $data['catid'];
  1853. $data = json_decode($input['id'] ?? '', true) ?? [];
  1854. $result['goods'] = array_map(function ($item) use ($input) {
  1855. // 检查parent元素是否存在且不是undefined
  1856. if (isset($item['level']) && $item['level'] != 'undefined' && $item['level'] != "") {
  1857. list($Levelid, $goodStart, $goodNum) = explode(',', $item['level']);
  1858. $website = $input['website_id'];
  1859. $query = Good::where('good.status', 2)
  1860. ->where('good.website_id', $website);
  1861. switch ($Levelid) {
  1862. case 1:
  1863. case 2:
  1864. case 3:
  1865. $goods = $query->where(function ($q) use ($Levelid) {
  1866. $q->whereRaw("JSON_CONTAINS(good.level, '" . intval($Levelid) . "') = 1")
  1867. ->orWhereRaw("JSON_CONTAINS(good.level, '\"" . intval($Levelid) . "\"') = 1");
  1868. });
  1869. break;
  1870. case 4:
  1871. $goods = $query;
  1872. break;
  1873. case 5:
  1874. $goods = $query->where('type_id', 1);
  1875. break;
  1876. case 6:
  1877. $goods = $query->where('type_id', 2);
  1878. break;
  1879. default:
  1880. return [];
  1881. }
  1882. $all_goods = $goods
  1883. ->select(
  1884. 'good.id',
  1885. 'good.name',
  1886. 'good.imgurl',
  1887. 'good.description',
  1888. 'good.updated_at',
  1889. 'good.catid',
  1890. 'good.type_id',
  1891. 'good.price',
  1892. 'good.level',
  1893. 'good.website_id'
  1894. )
  1895. ->orderBy('updated_at', 'desc')
  1896. ->offset($goodStart)
  1897. ->limit($goodNum)
  1898. ->get();
  1899. $web['website_id'] = $website;
  1900. $all_goods = $this->processGoods($all_goods, $web);
  1901. }
  1902. return $all_goods;
  1903. }, $data);
  1904. $website = $input['website_id'];
  1905. $result['article'] = Article::where(function ($query) use ($website) {
  1906. $query->where(function ($subQuery) use ($website) {
  1907. $subQuery->whereRaw("JSON_CONTAINS(ignore_ids, '" . intval($website) . "') = 0");
  1908. })->orWhereNull("ignore_ids");
  1909. })
  1910. ->where('catid', $catid)
  1911. ->where('article.status', 1)
  1912. ->leftJoin('article_data', 'article_data.article_id', 'article.id')
  1913. ->select('article.id', 'article.title', 'article.updated_at', 'introduce', 'islink', 'linkurl', 'article_data.content')
  1914. ->orderBy('article.updated_at', 'desc')
  1915. ->first();
  1916. return Result::success($result);
  1917. }
  1918. /**
  1919. * 获取商品分类
  1920. * @param array $data
  1921. * @return array
  1922. * */
  1923. public function getWebsiteshopCat(array $data): array
  1924. {
  1925. $website = $data['website_id'];
  1926. $category = WebsiteCategory::where('website_id', $website)
  1927. ->whereRaw("JSON_CONTAINS(category_arr_id, '" . intval($data['id']) . "') = 1")
  1928. ->orWhereRaw("JSON_CONTAINS(category_arr_id, '\"" . intval($data['id']) . "\"') = 1")
  1929. ->select('category_id', 'alias', 'aLIas_pinyin', 'pid', 'category_arr_id')
  1930. ->orderBy('sort')
  1931. ->get();
  1932. $cat = $category->map(function ($item) use ($website) {
  1933. $cat_arr_id = json_decode($item->category_arr_id, true) ?? [];
  1934. $pid = $item->pid ?? 0;
  1935. if (!empty($cat_arr_id) && is_array($cat_arr_id) && $pid != 0) {
  1936. $pinyin = WebsiteCategory::whereIn('category_id', $cat_arr_id)
  1937. ->where('website_id', $website)
  1938. ->orderByRaw('FIELD(category_id, ' . implode(',', $cat_arr_id) . ')')
  1939. ->get(['aLIas_pinyin'])
  1940. ->pluck('aLIas_pinyin')
  1941. ->implode('/');
  1942. } else {
  1943. $pinyin = $item->aLIas_pinyin ?? '';
  1944. }
  1945. $item->pinyin = $pinyin;
  1946. });
  1947. if (empty($category)) {
  1948. return Result::error("栏目查询失败", 0);
  1949. }
  1950. $cat_tree = Result::buildMenuTree($category);
  1951. $web['website_id'] = $website;
  1952. $goods = Good::where('website_id', $website)
  1953. ->where('status', 2)
  1954. ->select('good.id as good_id', 'name', 'imgurl', 'description', 'updated_at', 'catid', 'type_id', 'website_id')
  1955. ->latest('updated_at')
  1956. ->offset(($data['page'] - 1) * $data['pageSize'])
  1957. ->limit($data['pageSize'])
  1958. ->get();
  1959. if ($goods->isEmpty()) {
  1960. return Result::error("商品查询失败", 0);
  1961. }
  1962. if ($goods->count() > 1) {
  1963. $goods = $this->processGoods($goods, $web);
  1964. } else {
  1965. $catid = $goods[0]['catid'] ?? 0;
  1966. $good_category = WebsiteCategory::where('category_id', $catid)->where('website_id', $data['website_id'])->first();
  1967. if (!empty($good_category->pid) && $good_category->pid != 0) {
  1968. $level = json_decode($good_category->category_arr_id);
  1969. $pinyin = WebsiteCategory::whereIn('category_id', $level)
  1970. ->orderByRaw('FIELD(category_id, ' . implode(',', $level) . ')')
  1971. ->get(['aLIas_pinyin'])
  1972. ->pluck('aLIas_pinyin')
  1973. ->implode('/');
  1974. } else {
  1975. $pinyin = $good_category->aLIas_pinyin ?? '';
  1976. }
  1977. $goods[0]['pinyin'] = $pinyin;
  1978. }
  1979. $result = [
  1980. 'category' => $cat_tree,
  1981. 'goods' => $goods,
  1982. ];
  1983. // $resul['goods'] = $goods;
  1984. if (empty($result)) {
  1985. return Result::error("查询失败", 0);
  1986. }
  1987. return Result::success($result);
  1988. }
  1989. /*
  1990. * 获取商品列表
  1991. * @param array $data
  1992. * @return array
  1993. * */
  1994. public function getWebsiteshopList(array $data): array
  1995. {
  1996. // return Result::success($data);
  1997. $where = [
  1998. 'status' => 2,
  1999. 'website_id' => $data['website_id'],
  2000. ];
  2001. if ((empty($data['catid']) || !isset($data['catid'])) && (empty($data['keyword']) || !isset($data['keyword'])) && (empty($data['city_id']) || !isset($data['city_id']))) {
  2002. return Result::error("查询失败", 0);
  2003. }
  2004. if ((empty($data['catid']) || !isset($data['catid'])) && (!empty($data['city_id']) || isset($data['city_id']))) {
  2005. $category = WebsiteCategory::where('website_id', $data['website_id'])->where('pid', $data['id'])->orderBy('sort')->first(['category_id']);
  2006. $data['catid'] = $category->category_id ?? 0;
  2007. }
  2008. if (isset($data['keyword']) && !empty($data['keyword'])) {
  2009. array_push($where, ['name', 'like', '%' . $data['keyword'] . '%']);
  2010. }
  2011. if (isset($data['type_id']) && !empty($data['type_id'])) {
  2012. array_push($where, ['type_id', $data['type_id']]);
  2013. }
  2014. $query = Good::where($where)
  2015. ->when(isset($data['catid']) && !empty($data['catid']), function ($query) use ($data) {
  2016. $query->where(function ($q) use ($data) {
  2017. $q->WhereRaw("JSON_CONTAINS(good.cat_arr_id, '" . intval($data['catid']) . "') = 1")
  2018. ->orWhereRaw("JSON_CONTAINS(good.cat_arr_id, '\"" . intval($data['catid']) . "\"') = 1");
  2019. });
  2020. })
  2021. ->when(isset($data['city_id']) && !empty($data['city_id']), function ($query) use ($data) {
  2022. $query->where(function ($q) use ($data) {
  2023. $q->WhereRaw("JSON_CONTAINS(good.city_arr_id, '" . intval($data['city_id']) . "') = 1")
  2024. ->orWhereRaw("JSON_CONTAINS(good.city_arr_id, '\"" . intval($data['city_id']) . "\"') = 1");
  2025. });
  2026. })
  2027. ->select(
  2028. 'good.id',
  2029. 'good.name',
  2030. 'good.imgurl',
  2031. 'good.description',
  2032. 'good.updated_at',
  2033. 'good.catid',
  2034. 'good.type_id',
  2035. 'good.website_id',
  2036. 'good.cat_arr_id',
  2037. 'good.created_at',
  2038. 'good.city_id'
  2039. )
  2040. ->latest('updated_at');
  2041. // 获取 type_id 为 1 的数据
  2042. $result['type1'] = $this->processGoods(
  2043. $query->clone()
  2044. ->where('type_id', 1)
  2045. ->offset(($data['page'] - 1) * $data['pageSize'])
  2046. ->limit($data['pageSize'])
  2047. ->get(),
  2048. $data
  2049. );
  2050. // 获取 type_id 为 2 的数据
  2051. $result['type2'] = $this->processGoods(
  2052. $query->clone()
  2053. ->where('type_id', 2)
  2054. ->offset(($data['page'] - 1) * $data['pageSize'])
  2055. ->limit($data['pageSize'])
  2056. ->get(),
  2057. $data
  2058. );
  2059. if (empty($result)) {
  2060. return Result::error("查询失败", 0);
  2061. }
  2062. return Result::success($result);
  2063. }
  2064. /**
  2065. * 获取商品详情
  2066. * @param array $data
  2067. * @return array
  2068. * */
  2069. public function getWebsiteshopInfo(array $data): array
  2070. {
  2071. $where = [
  2072. 'good.status' => 2,
  2073. 'good.website_id' => $data['website_id'],
  2074. 'good.id' => $data['id'],
  2075. ];
  2076. $goods = Good::where($where)
  2077. ->where('good.id', $data['id'])
  2078. ->leftJoin('website_category', 'website_category.category_id', 'good.catid')
  2079. ->select('good.*', 'website_category.alias', 'website_category.category_id')
  2080. ->first();
  2081. if (empty($goods)) {
  2082. return Result::error("查询失败", 0);
  2083. }
  2084. $goods->imgurl = json_decode($goods->imgurl, true);
  2085. return Result::success($goods);
  2086. }
  2087. /**
  2088. * 封装处理文章的路由问题
  2089. * */
  2090. function processArticles($articles, $data)
  2091. {
  2092. if (!is_array($data)) {
  2093. // 可以根据实际情况进行日志记录或抛出异常
  2094. // 这里简单输出错误信息
  2095. echo "Error: \$data is not an array in processArticles. It is of type " . gettype($data) . PHP_EOL;
  2096. return $articles;
  2097. }
  2098. return $articles->map(function ($article) use ($data) {
  2099. $catid = $article->cat_arr_id ?? '';
  2100. $level = json_decode($catid, true);
  2101. $pinyin = '';
  2102. $category = WebsiteCategory::where('category_id', $catid)->where('website_id', $data['website_id'])->first();
  2103. if (!empty($category->pid) && $category->pid != 0) {
  2104. $pinyin = WebsiteCategory::whereIn('category_id', $level)
  2105. ->orderByRaw('FIELD(category_id, ' . implode(',', $level) . ')')
  2106. ->get(['aLIas_pinyin'])
  2107. ->pluck('aLIas_pinyin')
  2108. ->implode('/');
  2109. } else {
  2110. $pinyin = $category->aLIas_pinyin ?? '';
  2111. }
  2112. $article->pinyin = $pinyin;
  2113. return $article;
  2114. });
  2115. }
  2116. // 封装处理由问题
  2117. function processJob($job, $data)
  2118. {
  2119. return $job->map(function ($job) use ($data) {
  2120. $category = $job->cat_arr_id ?? '';
  2121. $cityid = $job->city_arr_id ?? '';
  2122. $city = json_decode($cityid, true);
  2123. $pinyin = '';
  2124. $level = json_decode($category, true);
  2125. // 路由
  2126. if (!empty($level) && is_array($level)) {
  2127. $pinyin = WebsiteCategory::whereIn('category_id', $level)
  2128. ->where('website_id', $data['website_id']) // 添加网站ID条件
  2129. ->orderByRaw('FIELD(category_id, ' . implode(',', $level) . ')')
  2130. ->get(['aLIas_pinyin'])
  2131. ->pluck('aLIas_pinyin')
  2132. ->implode('/');
  2133. if (empty($pinyin)) {
  2134. $pinyin = $pinyin->aLIas_pinyin ?? '';
  2135. }
  2136. $job->pinyin = $pinyin;
  2137. }
  2138. // 取城市-市??省
  2139. if (!empty($city) && is_array($city)) {
  2140. if (isset($city[1]) && !empty($city[1])) {
  2141. $city = District::where('id', $city[1])->first(['name']);
  2142. $job->city_name = $city->name ?? '';
  2143. } else if (isset($city[0]) && !empty($city[0])) {
  2144. $city = District::where('id', $city[0])->first(['name']);
  2145. $job->city_name = $city->name ?? '';
  2146. } else {
  2147. $job->city_name = '全国';
  2148. }
  2149. }
  2150. // 取公司地址
  2151. if (isset($job->address_arr_id) && !empty($job->address_arr_id)) {
  2152. $address_id = json_decode($job->address_arr_id, true) ?? [];
  2153. if (is_array($address_id) && !empty($address_id)) {
  2154. $address = District::whereIn('id', $address_id)
  2155. ->orderBy('level', 'asc')
  2156. ->get(['name'])
  2157. ->pluck('name')
  2158. ->implode('');
  2159. // $job->address_name = $address ?? '';
  2160. $job->address_name = ($address ?? '') . ($job->address ?? '');
  2161. }
  2162. }
  2163. // 取行业
  2164. if (!empty($job->hy_id) || !empty($job->industry) || !empty($job->company_hy_id)) {
  2165. $hy_name = JobIndustry::when($job, function ($query) use ($job) {
  2166. if (!empty($job->industry)) {
  2167. $query->where('hyid', $job->industry);
  2168. } else if (!empty($job->hy_id)) {
  2169. $query->where('hyid', $job->hy_id);
  2170. } else {
  2171. $query->where('hyid', $job->company_hy_id);
  2172. }
  2173. })->first(['hyname']);
  2174. $job->hy_name = $hy_name->hyname ?? '';
  2175. }
  2176. // 取职位
  2177. if ((isset($job->zw_id) && !empty($job->zw_id)) || (isset($job->job) && !empty($job->job))) {
  2178. $zwid = $job->job ?? $job->zw_id;
  2179. $zw_name = JobPosition::where('zwid', $zwid)->first(['zwname']);
  2180. $job->zw_name = $zw_name->zwname ?? '';
  2181. }
  2182. // 取具体职位
  2183. if ((isset($job->jtzw_id) && !empty($job->jtzw_id)) || (isset($job->job_name_get) && !empty($job->job_name_get))) {
  2184. $jtzwid = $job->job_name_get ?? $job->jtzw_id;
  2185. $jtzw_name = JobPosition::where('zwid', $jtzwid)->first(['zwname']);
  2186. $job->jtzw_name = $jtzw_name->zwname ?? '';
  2187. }
  2188. // 取工作经验
  2189. if (isset($job->experience) && !empty($job->experience)) {
  2190. $experience = JobEnum::where('egroup', 'years')->where('evalue', $job->experience)->first(['ename']);
  2191. $job->experience_name = $experience->ename ?? '';
  2192. }
  2193. // 取学历
  2194. if (isset($job->educational) && !empty($job->educational)) {
  2195. $education = JobEnum::where('egroup', 'education')->where('evalue', $job->educational)->first(['ename']);
  2196. $job->education_name = $education->ename ?? '';
  2197. }
  2198. // 语言
  2199. if (isset($job->language) && !empty($job->language)) {
  2200. $language = JobEnum::where('egroup', 'language')->where('evalue', $job->language)->first(['ename']);
  2201. $job->language_name = $language->ename ?? '';
  2202. }
  2203. // 薪资
  2204. if (isset($job->salary) && !empty($job->salary)) {
  2205. $salary = JobEnum::where('egroup', 'income')->where('evalue', $job->salary)->first(['ename']);
  2206. $job->salary_name = $salary->ename ?? '';
  2207. }
  2208. // 职位性质
  2209. if (isset($job->nature_id) && !empty($job->nature_id)) {
  2210. $job_nature = JobEnum::where('egroup', 'nature')->where('evalue', $job->nature_id)->first(['ename']);
  2211. $job->job_nature_name = $job_nature->ename ?? '';
  2212. }
  2213. // 公司规模
  2214. if (isset($job->company_size) && !empty($job->company_size)) {
  2215. $company_size = JobEnum::where('egroup', 'cosize')->where('evalue', $job->company_size)->first(['ename']);
  2216. $job->company_size_name = $company_size->ename ?? '';
  2217. }
  2218. // 公司性质
  2219. if (isset($job->company_nature) && !empty($job->company_nature)) {
  2220. $company_nature = JobNature::where('id', $job->company_nature)->first(['nature_name']);
  2221. $job->company_nature_name = $company_nature->nature_name ?? '';
  2222. }
  2223. // $job->pinyin = $pinyin;
  2224. return $job;
  2225. });
  2226. }
  2227. /**
  2228. * 获取书籍模块
  2229. * @param array $data
  2230. * @return array
  2231. * */
  2232. public function getWebsiteBook(array $data): array
  2233. {
  2234. $input['id'] = $data['id'];
  2235. $input['website_id'] = $data['website_id'];
  2236. // 将 JSON 字符串转换为 PHP 数组
  2237. $data = json_decode($input['id'], true);
  2238. // 使用 array_map 处理每个元素
  2239. $result = array_map(function ($item) use ($input) {
  2240. // 检查parent元素是否存在且不是undefined
  2241. if (isset($item['parent']) && $item['parent'] != 'undefined' && $item['parent'] != "") {
  2242. list($parentCatId, $parentImgNum, $parentTextNum) = explode(',', $item['parent']);
  2243. $website = [
  2244. 'website_id' => $input['website_id'],
  2245. ];
  2246. // 查询栏目名称
  2247. $category = WebsiteCategory::where('category_id', $parentCatId)->where($website)->first(['alias', 'category_id', 'aLIas_pinyin']);
  2248. if (empty($category)) {
  2249. $parent_alias = '';
  2250. $parent_pinyin = null;
  2251. $imgBooks = [];
  2252. $textBooks = [];
  2253. } else {
  2254. $parent_alias = $category->alias ?? '';
  2255. $parent_pinyin = $category->aLIas_pinyin ? $category->aLIas_pinyin : null;
  2256. // 查找子分类ID数组
  2257. $childCategoryIds = WebsiteCategory::where('pid', $parentCatId)->where($website)->pluck('category_id')->toArray();
  2258. array_push($childCategoryIds, $parentCatId);
  2259. $childCategoryIds = json_encode(array_values(array_unique($childCategoryIds)));
  2260. if ($parentImgNum != 0) {
  2261. // 查询图片新闻
  2262. $imgBooks = Book::where(function ($query) use ($parentCatId) {
  2263. $query->whereRaw("JSON_CONTAINS(cat_arr_id, '\"$parentCatId\"')")
  2264. ->orWhereRaw("JSON_CONTAINS(cat_arr_id, '$parentCatId')");
  2265. })
  2266. ->where('book.status', 2)
  2267. ->where('book.img_url', '!=', '')
  2268. ->leftJoin('website_category', function ($join) use ($website) {
  2269. $join->on('book.cat_id', '=', 'website_category.category_id')
  2270. ->where('website_category.website_id', '=', $website['website_id']);
  2271. })
  2272. ->select(
  2273. 'book.id',
  2274. 'book.title',
  2275. 'book.img_url',
  2276. 'book.price',
  2277. 'book.market_price',
  2278. 'book.description',
  2279. 'book.cat_id',
  2280. 'book.description',
  2281. 'book.updated_at',
  2282. 'website_category.alias as category_name',
  2283. DB::raw("CASE WHEN book.cat_id = $parentCatId THEN '$parent_pinyin'
  2284. ELSE CONCAT('$parent_pinyin', '/', website_category.aLIas_pinyin) END as pinyin")
  2285. )
  2286. ->orderBy('updated_at', 'desc')
  2287. ->limit($parentImgNum)
  2288. ->get()->all();
  2289. // 查询文字新闻
  2290. }
  2291. if ($parentTextNum != 0) {
  2292. $textBooks = [];
  2293. $textBooks = Book::where(function ($query) use ($parentCatId) {
  2294. $query->whereRaw("JSON_CONTAINS(cat_arr_id, '\"$parentCatId\"')")
  2295. ->orWhereRaw("JSON_CONTAINS(cat_arr_id, '$parentCatId')");
  2296. })
  2297. ->where('book.status', 2)
  2298. ->leftJoin('website_category', function ($join) use ($website) {
  2299. $join->on('book.cat_id', '=', 'website_category.category_id')
  2300. ->where('website_category.website_id', '=', $website['website_id']);
  2301. })
  2302. ->select(
  2303. 'book.id',
  2304. 'book.title',
  2305. 'book.img_url',
  2306. 'book.price',
  2307. 'book.market_price',
  2308. 'book.description',
  2309. 'book.cat_id',
  2310. 'book.description',
  2311. 'book.updated_at',
  2312. 'website_category.alias as category_name',
  2313. DB::raw("CASE WHEN book.cat_id = $parentCatId THEN '$parent_pinyin'
  2314. ELSE CONCAT('$parent_pinyin', '/', website_category.aLIas_pinyin) END as pinyin")
  2315. )
  2316. ->orderBy('updated_at', 'desc')
  2317. ->limit($parentTextNum)
  2318. ->get()->all();
  2319. }
  2320. }
  2321. }
  2322. $resultItem = [
  2323. 'alias' => $parent_alias ?? '',
  2324. 'category_id' => $parentCatId ?? 0,
  2325. 'pinyin' => $parent_pinyin ?? null,
  2326. 'imgnum' => $imgBooks ?? [],
  2327. 'textnum' => $textBooks ?? [],
  2328. ];
  2329. if (isset($item['child']) && $item['child'] != 'undefined' && $item['child'] != "") {
  2330. $parent_pinyin_str = is_string($parent_pinyin) ? $parent_pinyin . '/' : '';
  2331. $childCategory = WebsiteCategory::where('pid', $parentCatId)->where($website)
  2332. ->selectRaw("category_id, alias, CONCAT( ?, aLIas_pinyin) as aLIas_pinyin", [$parent_pinyin_str])
  2333. ->get()->all();
  2334. if (!empty($childCategory)) {
  2335. list($childCatId, $childImgNum, $childTextNum) = explode(',', $item['child']);
  2336. // 查询子栏目名称
  2337. $childCategoryInfo = WebsiteCategory::where('category_id', $childCatId)->where($website)
  2338. ->selectRaw("category_id, alias, CONCAT( ?, aLIas_pinyin) as aLIas_pinyin", [$parent_pinyin_str])
  2339. ->first();
  2340. if (empty($childCategoryInfo) || ($childImgNum == 0 && $childTextNum == 0)) {
  2341. $childImgArticles = [];
  2342. $childTextArticles = [];
  2343. $resultItem['child'] = [];
  2344. } else {
  2345. $child_pinyin = $childCategoryInfo->aLIas_pinyin ? $childCategoryInfo->aLIas_pinyin : null;
  2346. // 查询子栏目图片新闻
  2347. $childImgArticles = Book::where('cat_id', $childCatId)
  2348. ->where('status', 2)
  2349. ->where('img_url', '!=', '')
  2350. ->leftJoin('website_category', function ($join) use ($website) {
  2351. $join->on('book.cat_id', '=', 'website_category.category_id')
  2352. ->where('website_category.website_id', '=', $website['website_id']);
  2353. })
  2354. ->select(
  2355. 'book.id',
  2356. 'book.title',
  2357. 'book.img_url',
  2358. 'book.price',
  2359. 'book.market_price',
  2360. 'book.description',
  2361. 'book.cat_id',
  2362. 'book.description',
  2363. 'book.updated_at',
  2364. DB::raw("'$child_pinyin' as pinyin")
  2365. )
  2366. ->orderBy('updated_at', 'desc')
  2367. ->limit($childImgNum)
  2368. ->get()->all();
  2369. // 查询子栏目文字新闻
  2370. $childTextArticles = Book::where('cat_id', $childCatId)
  2371. ->where('status', 2)
  2372. ->leftJoin('website_category', function ($join) use ($website) {
  2373. $join->on('book.cat_id', '=', 'website_category.category_id')
  2374. ->where('website_category.website_id', '=', $website['website_id']);
  2375. })
  2376. ->select(
  2377. 'book.id',
  2378. 'book.title',
  2379. 'book.img_url',
  2380. 'book.price',
  2381. 'book.market_price',
  2382. 'book.description',
  2383. 'book.cat_id',
  2384. 'book.description',
  2385. 'book.updated_at',
  2386. DB::raw("'$child_pinyin' as pinyin")
  2387. )
  2388. ->orderBy('updated_at', 'desc')
  2389. ->limit($childTextNum)
  2390. ->get()->all();
  2391. $resultItem['child'] = [
  2392. 'alias' => $childCategoryInfo ? $childCategoryInfo->alias : null,
  2393. 'category_id' => $childCatId,
  2394. 'pinyin' => $childCategoryInfo->aLIas_pinyin ?? '',
  2395. 'all_childcat' => $childCategory,
  2396. 'imgnum' => $childImgArticles,
  2397. 'textnum' => $childTextArticles,
  2398. ];
  2399. }
  2400. }
  2401. } else {
  2402. $resultItem['child'] = [];
  2403. }
  2404. return $resultItem;
  2405. }, $data);
  2406. return Result::success($result);
  2407. }
  2408. /**
  2409. * 获取书刊列表
  2410. * @param array $data
  2411. * @return array
  2412. * */
  2413. public function getWebsiteBookList(array $data): array
  2414. {
  2415. $web = Website::where('id', $data['website_id'])->first(['id', 'website_name']);
  2416. if (empty($web)) {
  2417. return Result::error("查询失败", 0);
  2418. }
  2419. $catid = $data['id'];
  2420. $category = WebsiteCategory::where('website_id', $data['website_id'])->where('category_id', $catid)->orderBy('sort')->first(['pid', 'category_id', 'aLias_pinyin']);
  2421. $parent_categpory = WebsiteCategory::where('website_id', $data['website_id'])->where('category_id', $category['pid'])->orderBy('sort')->first(['aLias_pinyin']);
  2422. $parent_pinyin = $parent_categpory ? $parent_categpory->aLias_pinyin ?? '' : '';
  2423. $category_pinyin = $category ? $category->aLias_pinyin : '';
  2424. $pinyin = $category_pinyin ? $parent_pinyin . '/' . $category_pinyin ?? '' : '';
  2425. $categorys = WebsiteCategory::where('website_id', $data['website_id'])
  2426. ->where('pid', $category['pid'])
  2427. ->select(
  2428. 'category_id',
  2429. 'alias',
  2430. 'aLIas_pinyin',
  2431. 'pid',
  2432. 'sort',
  2433. 'is_url',
  2434. 'web_url',
  2435. 'seo_title',
  2436. 'seo_keywords',
  2437. 'seo_description',
  2438. DB::raw("CONCAT('$parent_pinyin', '/', aLIas_pinyin) as pinyin")
  2439. )
  2440. ->orderBy('sort')
  2441. ->get()->all();
  2442. if (empty($category)) {
  2443. return Result::error("查询失败", 0);
  2444. }
  2445. $query = Book::where('book.status', 2)
  2446. ->where('book.website_id', $data['website_id'])
  2447. ->where('book.cat_id', $catid)
  2448. ->select(
  2449. 'book.id',
  2450. 'book.title',
  2451. 'book.img_url',
  2452. 'book.description',
  2453. 'book.updated_at',
  2454. 'book.cat_id',
  2455. DB::raw("'$pinyin' as pinyin")
  2456. )
  2457. ->orderBy('book.updated_at', 'desc');
  2458. $count = $query->count();
  2459. $query = clone $query;
  2460. $Book = $query
  2461. ->limit($data['pageSize'])
  2462. ->offset(($data['page'] - 1) * $data['pageSize'])
  2463. ->get()->all();
  2464. $result = [
  2465. 'category' => $categorys,
  2466. 'books' => $Book,
  2467. 'count' => $count,
  2468. ];
  2469. // if(empty($result)){
  2470. // return Result::error("查询失败", 0);
  2471. // }
  2472. return Result::success($result);
  2473. }
  2474. /**
  2475. * 获取书刊详情
  2476. * @param array $data
  2477. * @return array
  2478. * */
  2479. public function getWebsiteBookInfo(array $data): array
  2480. {
  2481. $web = Website::where('id', $data['website_id'])->first(['id', 'website_name']);
  2482. if (empty($web)) {
  2483. return Result::error("查询失败", 0);
  2484. }
  2485. $book = Book::where('status', 2)
  2486. ->where('website_id', $data['website_id'])
  2487. ->where('id', $data['id'])
  2488. ->select(
  2489. 'book.*',
  2490. )
  2491. ->orderBy('updated_at', 'desc')
  2492. ->first();
  2493. if (empty($book)) {
  2494. return Result::error("查询失败", 0);
  2495. }
  2496. // 先查询当前分类的 pid
  2497. $carpid = WebsiteCategory::where('website_id', $data['website_id'])
  2498. ->where('category_id', $book['cat_id'])
  2499. ->first(['pid', 'category_id']);
  2500. $query = WebsiteCategory::where('website_id', $data['website_id']);
  2501. if (!empty($carpid)) {
  2502. if ($carpid->pid != 0) {
  2503. $pid = $carpid['pid'];
  2504. // $parent_pinyin = '';
  2505. } else {
  2506. $pid = $carpid['category_id'];
  2507. // $parent_pinyin = $currentCategory->aLias_pinyin?? '';
  2508. }
  2509. }
  2510. $categorys = $query->where('pid', $pid)
  2511. ->select(
  2512. 'category_id',
  2513. 'alias',
  2514. 'aLIas_pinyin',
  2515. 'pid',
  2516. 'sort',
  2517. 'is_url',
  2518. 'web_url',
  2519. 'category_arr_id as cat_arr_id',
  2520. )
  2521. ->orderBy('sort')
  2522. ->get();
  2523. $category = $this->processArticle($categorys, $data);
  2524. $result = [
  2525. 'category' => $category,
  2526. 'books' => $book,
  2527. ];
  2528. return Result::success($result);
  2529. }
  2530. /**
  2531. * 尝试
  2532. * @param array $data
  2533. * @return array
  2534. * */
  2535. public function test(array $data): array
  2536. {
  2537. $input['id'] = $data['id'];
  2538. $input['website_id'] = $data['website_id'];
  2539. // 将 JSON 字符串转换为 PHP 数组
  2540. $data = json_decode($input['id'], true);
  2541. $result = [];
  2542. $article = $data;
  2543. $result = array_map(function ($item) use ($input) {
  2544. $website = [
  2545. 'website_id' => $input['website_id'],
  2546. ];
  2547. list($parentCatId, $parentImgNum, $parentTextNum) = explode(',', $item['parent']);
  2548. $category = WebsiteCategory::where('pid', $parentCatId)->where($website)->first(['alias', 'category_id', 'aLIas_pinyin']);
  2549. $parent = [
  2550. 0 => $category['category_id'] ?? [],
  2551. 1 => $parentImgNum ?? [],
  2552. 2 => $parentTextNum ?? [],
  2553. ];
  2554. list($parentCatId, $parentImgNum, $parentTextNum) = explode(',', $item['child']);
  2555. $child = [];
  2556. $resultItem = [
  2557. // 'alias' => $parent_alias ?? '',
  2558. 'category_id' => $parentCatId ?? 0,
  2559. 'pinyin' => $parentImgNum ?? null,
  2560. 'imgnum' => $parentTextNum ?? [],
  2561. // 'textnum' => $textArticles ?? [],
  2562. ];
  2563. return $parent;
  2564. }, $data);
  2565. return Result::success($result);
  2566. // });
  2567. }
  2568. /**
  2569. * 封装处理文章的路由问题
  2570. * */
  2571. function processArticle($article, $data)
  2572. {
  2573. return $article->map(function ($article) use ($data) {
  2574. $catid = $article->cat_arr_id ?? '';
  2575. $level = json_decode($catid, true);
  2576. $pinyin = '';
  2577. // $category = WebsiteCategory::where('category_id', $catid)->where('website_id', $data['website_id'])->first();
  2578. if (!empty($level) && is_array($level)) {
  2579. $pinyin = WebsiteCategory::whereIn('category_id', $level)
  2580. ->where('website_id', $data['website_id'])
  2581. ->orderByRaw('FIELD(category_id, ' . implode(',', $level) . ')')
  2582. ->get(['aLIas_pinyin'])
  2583. ->pluck('aLIas_pinyin')
  2584. ->implode('/');
  2585. } else {
  2586. $pinyin = '';
  2587. }
  2588. $article->pinyin = $pinyin;
  2589. return $article;
  2590. });
  2591. }
  2592. /**
  2593. * c端-获取招工招聘
  2594. * @param array $data
  2595. * @return array
  2596. * */
  2597. public function getWebsiteJob(array $data): array
  2598. {
  2599. $web = Website::where('id', $data['website_id'])->first();
  2600. if (empty($web)) {
  2601. return Result::error("该网站不存在", 0);
  2602. }
  2603. $job_hunting = JobHunting::where('job_hunting.status', 2)
  2604. ->where('job_hunting.website_id', $data['website_id'])
  2605. ->when(isset($data['city_id']) && !empty($data['city_id']), function ($query) use ($data) {
  2606. $query->where(function ($q) use ($data) {
  2607. $q->WhereRaw("JSON_CONTAINS(job_hunting.city_arr_id, '" . intval($data['city_id']) . "') = 1");
  2608. });
  2609. })
  2610. ->select(
  2611. 'job_hunting.id',
  2612. 'job_hunting.cat_arr_id',
  2613. 'job_hunting.job',
  2614. 'job_hunting.industry',
  2615. 'job_hunting.city_arr_id',
  2616. 'job_hunting.experience',
  2617. 'job_hunting.updated_at'
  2618. )
  2619. ->orderBy('updated_at', 'desc')
  2620. ->limit($data['job1_num'])
  2621. ->get();
  2622. $web['website_id'] = $data['website_id'];
  2623. if (empty($job_hunting)) {
  2624. $job_huntings = "未查询到相关简历信息";
  2625. } else {
  2626. $job_huntings = $this->processJob($job_hunting, $web);
  2627. }
  2628. $job_recruiting = JobRecruiting::where('job_recruiting.status', 1)
  2629. ->where('job_recruiting.website_id', $data['website_id'])
  2630. ->when(isset($data['city_id']) && !empty($data['city_id']), function ($query) use ($data) {
  2631. $query->where(function ($q) use ($data) {
  2632. $q->WhereRaw("JSON_CONTAINS(job_recruiting.city_arr_id, '" . intval($data['city_id']) . "') = 1");
  2633. });
  2634. })
  2635. ->leftJoin('job_company', 'job_recruiting.id', '=', 'job_company.job_id')
  2636. ->select(
  2637. 'job_recruiting.id',
  2638. 'job_recruiting.cat_arr_id',
  2639. 'job_recruiting.title',
  2640. 'job_recruiting.jtzw_id',
  2641. 'job_recruiting.hy_id',
  2642. 'job_recruiting.city_arr_id',
  2643. 'job_recruiting.due_data',
  2644. 'job_recruiting.updated_at',
  2645. 'job_recruiting.experience',
  2646. 'job_recruiting.educational',
  2647. 'job_company.business_name',
  2648. )
  2649. ->orderBy('updated_at', 'desc')
  2650. ->limit($data['job2_num'])
  2651. ->get();
  2652. if (empty($job_recruiting->toArray())) {
  2653. $job_recruitings = "未查询到相关职位信息";
  2654. } else {
  2655. $job_recruitings = $this->processJob($job_recruiting, $web);
  2656. }
  2657. $hy = JobIndustry::get()->all();
  2658. $zw = JobPosition::where('zwpid', 0)->get()->all();
  2659. $jtzw = JobPosition::where('zwpid', '!=', 0)->get()->all();
  2660. $result = [
  2661. 'job_hunting' => $job_huntings,
  2662. 'job_recuiting' => $job_recruitings,
  2663. 'hy' => $hy,
  2664. 'zw' => $zw,
  2665. 'jtzw' => $jtzw,
  2666. ];
  2667. return Result::success($result);
  2668. }
  2669. /**
  2670. * c端-获取招工招聘列表
  2671. * @param array $data
  2672. * @return array
  2673. * */
  2674. public function getWebsiteJobList(array $data): array
  2675. {
  2676. $where = [];
  2677. $web = Website::where('id', $data['website_id'])->first(['id', 'website_name']);
  2678. if (empty($web)) {
  2679. return Result::error("此网站不存在", 0);
  2680. }
  2681. $website_id['website_id'] = $data['website_id'];
  2682. if (isset($data['hy_id']) && !empty($data['hy_id'])) {
  2683. array_push($where, ['hy_id', $data['hy_id']]);
  2684. }
  2685. if (isset($data['zw_id']) && !empty($data['zw_id'])) {
  2686. array_push($where, ['zw_id', $data['zw_id']]);
  2687. }
  2688. if (isset($data['jtzw_id']) && !empty($data['jtzw_id'])) {
  2689. array_push($where, ['jtzw_id', $data['jtzw_id']]);
  2690. }
  2691. $query = JobRecruiting::where('job_recruiting.status', 1)
  2692. ->where('job_recruiting.website_id', $data['website_id'])
  2693. ->where($where)
  2694. ->when(isset($data['city_id']) && !empty($data['city_id']), function ($query) use ($data) {
  2695. $query->where(function ($q) use ($data) {
  2696. $q->WhereRaw("JSON_CONTAINS(job_recruiting.city_arr_id, '" . intval($data['city_id']) . "') = 1");
  2697. });
  2698. })
  2699. ->when(isset($data['catid_id']) && !empty($data['catid_id']), function ($query) use ($data) {
  2700. $query->where(function ($q) use ($data) {
  2701. $q->WhereRaw("JSON_CONTAINS(job_recruiting.cat_arr_id, '" . intval($data['catid_id']) . "') = 1");
  2702. });
  2703. })
  2704. ->leftJoin('job_company', 'job_recruiting.id', '=', 'job_company.job_id')
  2705. ->select(
  2706. 'job_recruiting.id',
  2707. 'job_recruiting.hy_id',
  2708. 'job_recruiting.title',
  2709. 'job_recruiting.zw_id',
  2710. 'job_recruiting.jtzw_id',
  2711. 'job_recruiting.city_arr_id',
  2712. 'job_recruiting.due_data',
  2713. 'job_recruiting.cat_arr_id',
  2714. 'job_recruiting.updated_at'
  2715. )
  2716. ->orderBy('updated_at', 'desc');
  2717. $recruit_count = $query->count();
  2718. $query = clone $query;
  2719. $JobRecruiting = $query
  2720. ->offset(($data['page'] - 1) * $data['pageSize'])
  2721. ->limit($data['pageSize'])
  2722. ->get();
  2723. if (empty($JobRecruiting)) {
  2724. $JobRecruiting = "暂无相关职位信息";
  2725. } else {
  2726. $JobRecruiting = $this->processJob($JobRecruiting, $website_id);
  2727. }
  2728. $query = JobHunting::where('status', 2)
  2729. ->where('job_hunting.website_id', $data['website_id'])
  2730. ->where($where)
  2731. ->when(isset($data['city_id']) && !empty($data['city_id']), function ($query) use ($data) {
  2732. $query->where(function ($q) use ($data) {
  2733. $q->WhereRaw("JSON_CONTAINS(job_hunting.city_arr_id, '" . intval($data['city_id']) . "') = 1");
  2734. });
  2735. })
  2736. ->when(isset($data['catid_id']) && !empty($data['catid_id']), function ($query) use ($data) {
  2737. $query->where(function ($q) use ($data) {
  2738. $q->WhereRaw("JSON_CONTAINS(job_hunting.cat_arr_id, '" . intval($data['catid_id']) . "') = 1");
  2739. });
  2740. })
  2741. ->select('id', 'sexy', 'experience', 'origin', 'industry', 'name', 'job', 'job_name_get', 'city_arr_id', 'cat_arr_id', 'created_at', 'updated_at')
  2742. ->orderBy('updated_at', 'desc');
  2743. $hunt_count = $query->count();
  2744. $query = clone $query;
  2745. $JobHunting = $query
  2746. ->offset(($data['page'] - 1) * $data['pageSize'])
  2747. ->limit($data['pageSize'])
  2748. ->get();
  2749. if (empty($JobHunting)) {
  2750. $JobRecruiting = "暂无相关简历信息";
  2751. } else {
  2752. $JobHunting = $this->processJob($JobHunting, $website_id);
  2753. }
  2754. $result = [
  2755. 'JobRecruiting' => $JobRecruiting,
  2756. 'recruit_count' => $recruit_count,
  2757. 'JobHunting' => $JobHunting,
  2758. 'hunt_count' => $hunt_count,
  2759. ];
  2760. return Result::success($result);
  2761. }
  2762. /**
  2763. * c端-获取招工招聘详情
  2764. * @param array $data
  2765. * @return array
  2766. * */
  2767. public function getWebsiteJobInfo(array $data): array
  2768. {
  2769. $web = Website::where('id', $data['website_id'])->first(['id', 'website_name']);
  2770. if (empty($web)) {
  2771. return Result::error("该网站不存在", 0);
  2772. }
  2773. $webid = [
  2774. 'website_id' => $data['website_id'],
  2775. ];
  2776. // 职位相关信息
  2777. if ($data['type'] == 1) {
  2778. $query = JobRecruiting::where('status', 1)
  2779. ->where('website_id', $data['website_id'])
  2780. ->select('*');
  2781. $job = $query->where('job_recruiting.id', $data['id'])->get();
  2782. $company = JobCompany::where('job_id', $data['id'])->select('id', 'business_name', 'company_hy_id', 'company_size', 'company_nature', 'address_arr_id', 'address')->get();
  2783. if (!empty($company)) {
  2784. $result['company'] = $this->processJob($company, $webid);
  2785. }
  2786. $other_job = JobRecruiting::where('status', 1)
  2787. ->where('website_id', $data['website_id'])
  2788. ->select('title', 'id', 'updated_at', 'cat_arr_id', 'user_id')
  2789. ->where('id', '!=', $data['id'])
  2790. ->where('user_id', '=', $job[0]['user_id'])
  2791. ->limit($data['pageSize'])
  2792. ->get();
  2793. if (!empty($other_job)) {
  2794. $result['other_job'] = $this->processJob($other_job, $webid);
  2795. }
  2796. } else {
  2797. $job = JobHunting::where('job_hunting.status', 2)
  2798. ->where('job_hunting.website_id', $data['website_id'])
  2799. ->where('job_hunting.id', $data['id'])
  2800. ->leftJoin('user', 'user.id', '=', 'job_hunting.user_id')
  2801. ->select('job_hunting.*', 'user_name')
  2802. ->get();
  2803. $resume = JobRemuse::where('hunt_id', $data['id'])->get();
  2804. if (!empty($resume->toArray())) {
  2805. $result['resume'] = 1;
  2806. } else {
  2807. $result['resume'] = 0;
  2808. }
  2809. }
  2810. if (empty($job->toArray())) {
  2811. return Result::error("id参数错误", 0);
  2812. }
  2813. $result['job'] = $this->processJob($job, $webid);
  2814. // 返现对应的栏目
  2815. $catid = json_decode($job[0]['cat_arr_id'], true) ?? '';
  2816. $category = WebsiteCategory::where('website_id', $data['website_id'])
  2817. ->whereIn('category_id', $catid)
  2818. ->select('category_id', 'alias', 'aLIas_pinyin', 'pid')
  2819. ->orderBy('pid')->get()->all();
  2820. if (!empty($category)) {
  2821. $result['category'] = $category;
  2822. }
  2823. if (empty($result)) {
  2824. return Result::error("参数错误", 0);
  2825. }
  2826. return Result::success($result);
  2827. }
  2828. /**
  2829. * c端-申请职位
  2830. * @param array $data
  2831. * @return array
  2832. * */
  2833. public function getWebsiteJobApply(array $data): array
  2834. {
  2835. // 首先验证网站是否存在
  2836. // return Result::success($data);
  2837. $web = Website::where('id', $data['website_id'])->first(['id', 'website_name']);
  2838. if (empty($web)) {
  2839. return Result::error("该网站不存在", 0);
  2840. }
  2841. // 验证用户是否存在且为个人会员/管理员
  2842. $user = User::where('id', $data['user_id'])->first(['id', 'type_id']);
  2843. // 1:个人会员 2:政务会员 3:企业会员 4:调研员 10000:管理员 20000:游客(小程序)
  2844. if (empty($user) || ($user['type_id'] != 1 && $user['type_id'] != 10000)) {
  2845. return Result::error("用户不存在", 0);
  2846. }
  2847. // 去除重复元素和空元素,并保持原始顺序
  2848. $data['recruit_id'] = array_values(array_filter(array_unique($data['recruit_id']), function ($value) {
  2849. return !empty($value);
  2850. }));
  2851. // 验证职位是否存在 1:审核通过
  2852. $recruiting = JobRecruiting::where('status', 1)
  2853. ->where('website_id', $data['website_id'])
  2854. ->whereIn('id', $data['recruit_id'])
  2855. ->get(['id as recruit_id', 'user_id as receiver_id'])->all();
  2856. if (empty($recruiting)) {
  2857. return Result::error("该职位不存在", 0);
  2858. }
  2859. // 简历是否存在
  2860. $hunt_id = JobHunting::where('user_id', $data['user_id'])->where('status', 2)->first(['id as hunt_id']);
  2861. if (empty($hunt_id)) {
  2862. return Result::error("该简历不存在", 0);
  2863. }
  2864. $data['hunt_id'] = $hunt_id['hunt_id'];
  2865. // // 验证是否已投递过该职位
  2866. $apply = JobApply::where('user_id', $data['user_id'])
  2867. ->where('hunt_id', $data['hunt_id'])
  2868. ->where('website_id', $data['website_id'])
  2869. ->whereIn('recruit_id', $data['recruit_id'])
  2870. ->get(['recruit_id']);
  2871. if (!empty($apply->toArray())) {
  2872. return Result::error("您已投递过该职位!");
  2873. }
  2874. $insertData = array_map(function ($recruiting) use ($data) {
  2875. return [
  2876. 'user_id' => $data['user_id'],
  2877. 'hunt_id' => $data['hunt_id'],
  2878. 'website_id' => $data['website_id'],
  2879. 'recruit_id' => $recruiting['recruit_id'],
  2880. 'receiver_id' => $recruiting['receiver_id'],
  2881. 'status' => 1,
  2882. ];
  2883. }, $recruiting);
  2884. // 批量插入数据
  2885. $result = JobApply::insert($insertData);
  2886. if (empty($result)) {
  2887. return Result::error("投递失败", 0);
  2888. }
  2889. return Result::success($result);
  2890. }
  2891. /**
  2892. * 招工招聘-沟通简历
  2893. * @param array $data
  2894. * @return array
  2895. * */
  2896. public function getWebsiteJobResume(array $data): array
  2897. {
  2898. // 首先验证网站是否存在
  2899. $web = Website::where('id', $data['website_id'])->first(['id', 'website_name']);
  2900. if (empty($web)) {
  2901. return Result::error("该网站不存在", 0);
  2902. }
  2903. // return Result::success($data);
  2904. // 验证用户是否存在且为企业会员/管理员
  2905. $user = User::where('id', $data['user_id'])->first(['id', 'type_id']);
  2906. // 1:个人会员 2:政务会员 3:企业会员 4:调研员 10000:管理员 20000:游客(小程序)
  2907. if (empty($user) || ($user['type_id'] != 3 && $user['type_id'] != 10000)) {
  2908. return Result::error("用户不存在", 0);
  2909. }
  2910. // 去除重复元素和空元素,并保持原始顺序
  2911. $data['hunt_id'] = array_values(array_filter(array_unique($data['hunt_id']), function ($value) {
  2912. return !empty($value);
  2913. }));
  2914. // 验证简历是否存在
  2915. $hunting = JobHunting::where('status', 2)
  2916. ->where('website_id', $data['website_id'])
  2917. ->whereIn('id', $data['hunt_id'])
  2918. ->get(['id as hunt_id', 'user_id as receiver_id'])->all();
  2919. if (empty($hunting)) {
  2920. return Result::error("该简历不存在", 0);
  2921. }
  2922. // 验证是否已沟通过该简历
  2923. $remuse = JobRemuse::where('user_id', $data['user_id'])
  2924. ->where('recruit_id', $data['recruit_id'])
  2925. ->where('website_id', $data['website_id'])
  2926. ->whereIn('hunt_id', $data['hunt_id'])
  2927. ->get(['hunt_id']);
  2928. if (!empty($remuse->toArray())) {
  2929. return Result::error("您已沟通过该简历!");
  2930. }
  2931. // 准备要插入的数据数组
  2932. $insertData = array_map(function ($hunting) use ($data) {
  2933. return [
  2934. 'user_id' => $data['user_id'],
  2935. 'recruit_id' => $data['recruit_id'],
  2936. 'website_id' => $data['website_id'],
  2937. 'hunt_id' => $hunting['hunt_id'],
  2938. 'receiver_id' => $hunting['receiver_id'],
  2939. 'status' => 1,
  2940. ];
  2941. }, $hunting);
  2942. // 批量插入数据
  2943. $result = JobRemuse::insert($insertData);
  2944. if (empty($result)) {
  2945. return Result::error("沟通失败", 0);
  2946. }
  2947. return Result::success($result);
  2948. }
  2949. /**
  2950. * 验证导航名称是否重复
  2951. * @return void
  2952. */
  2953. public function checkCategoryName(array $data): array
  2954. {
  2955. $result = Category::when($data, function ($query) use ($data) {
  2956. if (isset($data['name']) && $data['name']) {
  2957. $query->where("name", $data['name']);
  2958. }
  2959. if (isset($data['id']) && $data['id']) {
  2960. $query->where("id", "!=", $data['id']);
  2961. }
  2962. })->first();
  2963. if ($result) {
  2964. return Result::error("已存在");
  2965. } else {
  2966. return Result::success();
  2967. }
  2968. }
  2969. //20250226 产品列表
  2970. public function getGoodList(array $data): array
  2971. {
  2972. $type_id = isset($data['type_id']) ? $data['type_id'] : '';
  2973. unset($data['type_id']);
  2974. $user_id = isset($data['user_id']) ? $data['user_id'] : '';
  2975. $where = [];
  2976. if ($type_id != '10000') {
  2977. $where = [
  2978. 'good.user_id' => $user_id,
  2979. ];
  2980. }
  2981. //类型
  2982. if (isset($data['type_id']) && $data['type_id']) {
  2983. $where = [
  2984. 'type_id' => $data['type_id'],
  2985. ];
  2986. }
  2987. //名称
  2988. if (isset($data['name']) && $data['name']) {
  2989. $where = [
  2990. 'good.name' => $data['name'],
  2991. ];
  2992. }
  2993. //status
  2994. if (isset($data['status']) && $data['status'] != '') {
  2995. $where = [
  2996. 'good.status' => $data['status'],
  2997. ];
  2998. }
  2999. //status1
  3000. // if (isset($data['status1']) && $data['status1'] == 1) {
  3001. // $status1 = 1;
  3002. // }
  3003. $where1 = [];
  3004. //website_id
  3005. // if (isset($data['website_id']) && $data['website_id']) {
  3006. // $where1 = [
  3007. // 'good.website_id', 'like', '%' . $data['website_id'] . '%',
  3008. // ];
  3009. // }
  3010. // website_name
  3011. if (isset($data['website_name']) && $data['website_name']) {
  3012. $where1[] = ['website.website_name', 'like', '%' . $data['website_name'] . '%'];
  3013. }
  3014. // catid
  3015. if (isset($data['category_name']) && $data['category_name']) {
  3016. $where1[] = ['category.name', 'like', '%' . $data['category_name'] . '%'];
  3017. }
  3018. // $result = Good::where($where)
  3019. // ->orderBy("updated_at", "desc")->paginate($data['pige_size'], ['*'], 'page', $data['page']);
  3020. $result = Good::where($where)
  3021. ->when(!empty($where1), function ($query) use ($where1) {
  3022. return $query->where($where1);
  3023. })
  3024. //status 1待审核2已审核3已拒绝
  3025. ->when(isset($data['status1']), function ($query) {
  3026. return $query->whereIn('good.status', [1, 3]);
  3027. })
  3028. ->leftJoin('district', 'good.city_id', '=', 'district.id')
  3029. ->leftJoin('website', 'good.website_id', '=', 'website.id')
  3030. ->leftJoin('category', 'good.catid', '=', 'category.id')
  3031. ->select('good.*', 'district.name as cityname', 'website.website_name as website_name', 'category.name as category_name')
  3032. ->orderBy("updated_at", "desc")
  3033. ->limit($data['page_size'])
  3034. ->offset(($data['page'] - 1) * $data['page_size'])
  3035. ->get();
  3036. $count = Good::where($where)
  3037. ->leftJoin('district', 'good.city_id', '=', 'district.id')
  3038. ->leftJoin('website', 'good.website_id', '=', 'website.id')
  3039. ->leftJoin('category', 'good.catid', '=', 'category.id')
  3040. ->select('good.*', 'district.name as cityname', 'website.website_name as website_name', 'category.name as category_name')
  3041. ->orderBy("updated_at", "desc")->count();
  3042. $data = [
  3043. 'rows' => $result->toArray(),
  3044. 'count' => $count,
  3045. ];
  3046. if (empty($result)) {
  3047. return Result::error("此栏目暂无相关产品", 0);
  3048. }
  3049. return Result::success($data);
  3050. }
  3051. public function getGoodInfo(array $data): array
  3052. {
  3053. $result = Good::where('id', $data['id'])->first();
  3054. if (empty($result)) {
  3055. return Result::error("此产品不存在", 0);
  3056. }
  3057. return Result::success($result);
  3058. }
  3059. public function addGood(array $data): array
  3060. {
  3061. // unset($data['city_arr_id']);
  3062. // unset($data['cat_arr_id']);
  3063. $data['city_id'] = end($data['city_arr_id']);
  3064. $data['catid'] = end($data['cat_arr_id']);
  3065. $data['city_arr_id'] = isset($data['city_arr_id']) ? json_encode($data['city_arr_id']) : '';
  3066. $data['cat_arr_id'] = isset($data['cat_arr_id']) ? json_encode($data['cat_arr_id']) : '';
  3067. $data['imgurl'] = isset($data['imgurl']) ? json_encode($data['imgurl']) : '';
  3068. unset($data['imgUrl']);
  3069. if (isset($data['price']) && $data['price'] == '') {
  3070. $data['price'] = 0;
  3071. }
  3072. $result = Good::insert($data);
  3073. if (empty($result)) {
  3074. return Result::error("添加失败", 0);
  3075. }
  3076. return Result::success($result);
  3077. }
  3078. public function updateGood(array $data): array
  3079. {
  3080. $data['city_id'] = end($data['city_arr_id']);
  3081. $data['catid'] = end($data['cat_arr_id']);
  3082. $data['city_arr_id'] = isset($data['city_arr_id']) ? json_encode($data['city_arr_id']) : '';
  3083. $data['cat_arr_id'] = isset($data['cat_arr_id']) ? json_encode($data['cat_arr_id']) : '';
  3084. $data['imgurl'] = isset($data['imgurl']) ? json_encode($data['imgurl']) : '';
  3085. //设置东八区
  3086. date_default_timezone_set('Asia/Shanghai');
  3087. $data['updated_at'] = date('Y-m-d H:i:s');
  3088. if (isset($data['price']) && $data['price'] == '') {
  3089. $data['price'] = 0;
  3090. }
  3091. $result = Good::where('id', $data['id'])->update($data);
  3092. if (empty($result)) {
  3093. return Result::error("更新失败", 0);
  3094. }
  3095. return Result::success($result);
  3096. }
  3097. public function delGood(array $data): array
  3098. {
  3099. $result = Good::where('id', $data['id'])->delete();
  3100. if (empty($result)) {
  3101. return Result::error("删除失败", 0);
  3102. }
  3103. return Result::success($result);
  3104. }
  3105. //20250226 产品列表
  3106. //20250306 求职信息
  3107. public function getJobHuntingList(array $data): array
  3108. {
  3109. $where = [];
  3110. if (isset($data['username']) && !empty($data['username'])) {
  3111. $where[] = ['user.user_name', 'like', '%' . $data['username'] . '%'];
  3112. }
  3113. //status 1待审核2已审核3已拒绝
  3114. if (isset($data['status']) && $data['status'] != '') {
  3115. $where = [
  3116. 'job_hunting.status' => $data['status'],
  3117. ];
  3118. }
  3119. $type_id = isset($data['type_id']) ? $data['type_id'] : '';
  3120. $user_id = isset($data['user_id']) ? $data['user_id'] : '';
  3121. unset($data['type_id']);
  3122. if ($type_id != '10000') {
  3123. $where[] = ['job_hunting.user_id', '=', $user_id];
  3124. }
  3125. $result = JobHunting::where($where)
  3126. ->when(!empty($data['status1']), function ($query) use ($data) {
  3127. return $query->whereIn('job_hunting.status', [1, 3]); //1待审核2已审核3已拒绝
  3128. })
  3129. ->leftJoin('user', 'user.id', '=', 'job_hunting.user_id')
  3130. ->leftJoin('website', 'website.id', '=', 'job_hunting.website_id')
  3131. ->select('job_hunting.*', 'user.nickname as nickname', 'user.user_name as username', 'website.website_name as website_name')
  3132. ->orderBy("updated_at", "desc")
  3133. ->limit($data['page_size'])
  3134. ->offset(($data['page'] - 1) * $data['page_size'])
  3135. ->get();
  3136. if (empty($result)) {
  3137. return Result::error("查询失败", 0);
  3138. }
  3139. $count = JobHunting::where($where)
  3140. ->leftJoin('user', 'user.id', '=', 'job_hunting.user_id')
  3141. ->leftJoin('website', 'website.id', '=', 'job_hunting.website_id')
  3142. ->count();
  3143. $data = [
  3144. 'rows' => $result->toArray(),
  3145. 'count' => $count,
  3146. ];
  3147. return Result::success($data);
  3148. }
  3149. public function getJobHuntingApply(array $data): array
  3150. {
  3151. $where = [];
  3152. if (isset($data['username']) && !empty($data['username'])) {
  3153. $where[] = ['user.user_name', 'like', '%' . $data['username'] . '%'];
  3154. }
  3155. if (isset($data['salary']) && !empty($data['salary'])) {
  3156. $where = [
  3157. 'job_hunting.salary' => $data['salary'],
  3158. ];
  3159. }
  3160. $type_id = isset($data['type_id']) ? $data['type_id'] : '';
  3161. $user_id = isset($data['user_id']) ? $data['user_id'] : '';
  3162. unset($data['type_id']);
  3163. if ($type_id != '10000') {
  3164. $where[] = ['job_apply.user_id', '=', $user_id];
  3165. }
  3166. $result = jobApply::where($where)
  3167. // ->when(!empty($data['status1']), function ($query) use ($data) {
  3168. // return $query->whereIn('job_hunting.status', [1, 3]); //1待审核2已审核3已拒绝
  3169. // })
  3170. // ->leftJoin('user', 'user.id', '=', 'job_hunting.user_id') 'user.nickname as nickname', , 'user.user_name as username'
  3171. ->where('job_enum.egroup', '=', 'income')
  3172. ->where('job_hunting.status', 2) //已审核
  3173. ->leftJoin('job_hunting', 'job_hunting.id', '=', 'job_apply.hunt_id')
  3174. ->leftJoin('district', 'district.id', '=', 'job_hunting.city_id')
  3175. ->leftJoin('job_enum', 'job_enum.evalue', '=', 'job_hunting.salary')
  3176. ->leftJoin('user', 'job_hunting.user_id', '=', 'user.id')
  3177. //职位----是申请职位
  3178. ->leftJoin('job_position', 'job_hunting.job_name_get', '=', 'job_position.zwid')
  3179. ->select('job_apply.*', 'job_position.zwname as job_name', 'job_hunting.salary as salary', 'district.name as cityname', 'job_enum.ename as salary_name', 'user.nickname as nickname', 'user.user_name as username')
  3180. ->orderBy("job_hunting.updated_at", "desc")
  3181. ->limit($data['page_size'])
  3182. ->offset(($data['page'] - 1) * $data['page_size'])
  3183. ->get();
  3184. if (empty($result)) {
  3185. return Result::error("查询失败", 0);
  3186. }
  3187. $count = jobApply::where($where)
  3188. ->leftJoin('job_hunting', 'job_hunting.id', '=', 'job_apply.hunt_id')
  3189. ->leftJoin('district', 'district.id', '=', 'job_hunting.city_id')
  3190. ->leftJoin('job_enum', 'job_enum.evalue', '=', 'job_hunting.salary')
  3191. ->leftJoin('user', 'job_hunting.user_id', '=', 'user.id')
  3192. ->select('job_apply.*', 'job_hunting.job_name_get as job_name', 'job_hunting.salary as salary', 'district.name as cityname', 'job_enum.ename as salary_name', 'user.nickname as nickname', 'user.user_name as username')
  3193. ->count();
  3194. $data = [
  3195. 'rows' => $result->toArray(),
  3196. 'count' => $count,
  3197. ];
  3198. return Result::success($data);
  3199. }
  3200. public function addJobHunting(array $data): array
  3201. {
  3202. date_default_timezone_set('Asia/Shanghai');
  3203. unset($data['company_name']);
  3204. unset($data['job_industry']);
  3205. unset($data['job_name']);
  3206. unset($data['department']);
  3207. unset($data['job_timeList']);
  3208. unset($data['job_content']);
  3209. $data['created_at'] = date('Y-m-d H:i:s');
  3210. $data['updated_at'] = date('Y-m-d H:i:s');
  3211. var_dump($data, '-----------------test---------');
  3212. $result = JobHunting::create($data);
  3213. if (empty($result)) {
  3214. return Result::error("添加失败", 0);
  3215. }
  3216. return Result::success($result);
  3217. }
  3218. public function delJobHunting(array $data): array
  3219. {
  3220. $result = JobHunting::where('id', $data['id'])->delete();
  3221. if (empty($result)) {
  3222. return Result::error("删除失败", 0);
  3223. }
  3224. return Result::success($result);
  3225. }
  3226. public function updateJobHunting(array $data): array
  3227. {
  3228. //设置东八区
  3229. date_default_timezone_set('Asia/Shanghai');
  3230. unset($data['company_name']);
  3231. unset($data['job_industry']);
  3232. unset($data['job_name']);
  3233. unset($data['department']);
  3234. unset($data['job_timeList']);
  3235. unset($data['job_content']);
  3236. $data['created_at'] = date('Y-m-d H:i:s');
  3237. $data['updated_at'] = date('Y-m-d H:i:s');
  3238. $result = JobHunting::where('id', $data['id'])->update($data);
  3239. if (empty($result)) {
  3240. return Result::error("更新失败", 0);
  3241. }
  3242. return Result::success($result);
  3243. }
  3244. public function getJobHuntingInfo(array $data): array
  3245. {
  3246. $result = JobHunting::where('id', $data['id'])->first();
  3247. if (empty($result)) {
  3248. return Result::error("查询失败", 0);
  3249. }
  3250. return Result::success($result);
  3251. }
  3252. public function getJobHuntingData(array $data): array
  3253. {
  3254. $jobEnum = JobEnum::get();
  3255. $jobIndustry = JobIndustry::get();
  3256. $jobNature = JobNature::get();
  3257. $jobPosition = JobPosition::get();
  3258. $data = [
  3259. 'jobEnum' => $jobEnum,
  3260. 'jobIndustry' => $jobIndustry,
  3261. 'jobNature' => $jobNature,
  3262. 'jobPosition' => $jobPosition,
  3263. ];
  3264. return Result::success($data);
  3265. }
  3266. public function delJobHuntingInfo(array $data): array
  3267. {
  3268. $result = JobHunting::where('id', $data['id'])->delete();
  3269. return Result::success();
  3270. }
  3271. //20250324 通知,公告,消息
  3272. public function delNotice(array $data): array
  3273. {
  3274. $result = Notice::where('id', $data['id'])->delete();
  3275. if ($result) {
  3276. return Result::success();
  3277. } else {
  3278. return Result::error("删除失败", 0);
  3279. }
  3280. }
  3281. public function getNoticeInfo(array $data): array
  3282. {
  3283. $result = Notice::where('id', $data['id'])->first();
  3284. if (empty($result)) {
  3285. return Result::error("查询失败", 0);
  3286. }
  3287. return Result::success($result);
  3288. }
  3289. public function addNotice(array $data): array
  3290. {
  3291. date_default_timezone_set('Asia/Shanghai');
  3292. $data['created_at'] = date('Y-m-d H:i:s');
  3293. $data['updated_at'] = date('Y-m-d H:i:s');
  3294. $user_id = UserInfo::
  3295. //city_id不是null
  3296. whereNotNull('city_id')
  3297. ->whereNotNull('department_id')
  3298. ->where(function ($query) use ($data) {
  3299. $query->where(function ($subQuery) use ($data) {
  3300. $subQuery->whereRaw("JSON_VALID(city_arr_id) AND JSON_CONTAINS(city_arr_id, '" . intval($data['city_id']) . "') = 1");
  3301. });
  3302. })
  3303. ->where(function ($query) use ($data) {
  3304. $query->where(function ($subQuery) use ($data) {
  3305. $subQuery->whereRaw("JSON_VALID(department_arr_id) AND JSON_CONTAINS(department_arr_id, '" . intval($data['department_id']) . "') = 1");
  3306. });
  3307. })
  3308. ->pluck('user_id')->toArray();
  3309. $user_id = array_unique($user_id);
  3310. $chat_ids = $user_id;
  3311. $user_id = json_encode($user_id);
  3312. $data['re_user_ids'] = $user_id;
  3313. $result = Notice::insertGetId($data);
  3314. if ($result && $data['is_group'] == 1) {
  3315. //chat_group
  3316. $group_id = PublicData::uuid();
  3317. $groupData = [
  3318. 'id' => $group_id,
  3319. 'creator_id' => $data['user_id'],
  3320. 'group_name' => $data['group_name'] ?? '',
  3321. 'profile' => $data['profile'] ?? 0,
  3322. ];
  3323. $groupResult = ChatGroups::insertGetId($groupData);
  3324. var_dump($groupResult, '-----------------groupid-------');
  3325. $groupMemberData = [
  3326. 'id' => PublicData::uuid(),
  3327. 'user_id' => $data['user_id'],
  3328. 'group_id' => $group_id,
  3329. 'leader' => 2,
  3330. ];
  3331. $groupMemberResult = ChatGroupsMember::insertGetId($groupMemberData);
  3332. //$chat_ids 去除掉$data['user_id']
  3333. $chat_ids = array_diff($chat_ids, [$data['user_id']]);
  3334. //插入群成员表
  3335. $groupMemberDataUser = [];
  3336. foreach ($chat_ids as $key => $value) {
  3337. $groupMemberDataUser[] = [
  3338. 'id' => PublicData::uuid(),
  3339. 'user_id' => $value,
  3340. 'group_id' => $group_id,
  3341. 'leader' => 1,
  3342. ];
  3343. }
  3344. ChatGroupsMember::insert($groupMemberDataUser);
  3345. //更新result的 group_id
  3346. $data['group_id'] = $group_id;
  3347. Notice::where(['id' => $result])->update($data);
  3348. }
  3349. if (empty($result)) {
  3350. return Result::error("添加失败", 0);
  3351. }
  3352. return Result::success($result);
  3353. }
  3354. public function updateNotice(array $data): array
  3355. {
  3356. date_default_timezone_set('Asia/Shanghai');
  3357. //根据city_id 和department_id 查询出对应的user_id,放到 re_user_ids
  3358. $user_id = UserInfo::
  3359. //city_id不是null
  3360. whereNotNull('city_id')
  3361. ->whereNotNull('department_id')
  3362. ->where(function ($query) use ($data) {
  3363. $query->where(function ($subQuery) use ($data) {
  3364. $subQuery->whereRaw("JSON_VALID(city_arr_id) AND JSON_CONTAINS(city_arr_id, '" . intval($data['city_id']) . "') = 1");
  3365. });
  3366. })
  3367. ->where(function ($query) use ($data) {
  3368. $query->where(function ($subQuery) use ($data) {
  3369. $subQuery->whereRaw("JSON_VALID(department_arr_id) AND JSON_CONTAINS(department_arr_id, '" . intval($data['department_id']) . "') = 1");
  3370. });
  3371. })
  3372. ->pluck('user_id')->toArray();
  3373. $user_id = array_unique($user_id);
  3374. $user_id = json_encode($user_id);
  3375. $data['re_user_ids'] = $user_id;
  3376. $data['updated_at'] = date('Y-m-d H:i:s');
  3377. $result = Notice::where('id', $data['id'])->update($data);
  3378. return Result::success($result);
  3379. }
  3380. public function getNoticeList(array $data): array
  3381. {
  3382. $where = [];
  3383. //title
  3384. if (isset($data['title']) && !empty($data['title'])) {
  3385. $where[] = ['notice.title', 'like', '%' . $data['title'] . '%'];
  3386. }
  3387. //level
  3388. if (isset($data['level']) && !empty($data['level'])) {
  3389. $where[] = ['notice.level', '=', $data['level']];
  3390. }
  3391. //status
  3392. if (isset($data['status']) && !empty($data['status'])) {
  3393. $where[] = ['notice.status', '=', $data['status']];
  3394. }
  3395. var_dump($data['type_id'], '-----------------test---------');
  3396. if ($data['type_id'] == 10000) {
  3397. $result = Notice::when(!empty($data['status1']), function ($query) use ($data) {
  3398. return $query->whereIn('notice.status', [1, 3]); //1待审核2已审核3已拒绝
  3399. })
  3400. ->where($where)
  3401. ->orderBy('updated_at', 'desc')
  3402. ->limit($data['page_size'])
  3403. ->offset(($data['page'] - 1) * $data['page_size'])
  3404. ->get();
  3405. } else {
  3406. $result = Notice::where('status', 1)
  3407. ->where($where)
  3408. ->where('user_id', $data['user_id'])
  3409. ->orWhere(function ($query) use ($data) {
  3410. $query->where('re_user_ids', 'like', '%' . $data['user_id'] . '%');
  3411. })
  3412. ->orderBy('updated_at', 'desc')
  3413. ->limit($data['page_size'])
  3414. ->offset(($data['page'] - 1) * $data['page_size'])
  3415. ->get();
  3416. }
  3417. if (empty($result)) {
  3418. return Result::error("查询失败", 0);
  3419. }
  3420. $count = Notice::where('status', 1)->count();
  3421. $data = [
  3422. 'rows' => $result,
  3423. 'count' => $count,
  3424. ];
  3425. return Result::success($data);
  3426. }
  3427. public function getNoticeDetail(array $data): array
  3428. {
  3429. $result = Notice::where('id', $data['id'])->first();
  3430. if (empty($result)) {
  3431. return Result::error("查询失败", 0);
  3432. }
  3433. return Result::success($result);
  3434. }
  3435. public function deleteNotice(array $data): array
  3436. {
  3437. $notice = Notice::where('id', $data['id'])->first();
  3438. if (empty($notice)) {
  3439. return Result::error("删除失败", 0);
  3440. }
  3441. $chat_group_id = $notice->group_id;
  3442. if ($chat_group_id) {
  3443. //删除群聊
  3444. ChatGroups::where('id', $chat_group_id)->delete();
  3445. //删除群成员
  3446. ChatGroupsMember::where('group_id', $chat_group_id)->delete();
  3447. //删除群聊记录
  3448. ChatRecords::where('receiver_id', $chat_group_id)->delete();
  3449. }
  3450. $result = Notice::where('id', $data['id'])->delete();
  3451. return Result::success($result);
  3452. }
  3453. public function getMSG(array $data): array
  3454. {
  3455. $type_id = isset($data['type_id']) ? $data['type_id'] : 1;
  3456. // '1:个人会员 2:政务会员 3:企业会员 4:调研员 10000:管理员 20000:游客(小程序)
  3457. $user_id = isset($data['user_id']) ? $data['user_id'] : 0; //用户id
  3458. $result = [];
  3459. if ($type_id == 1) {
  3460. //最近的5篇已审的文章
  3461. $apply_articale = Article::where('status', 1)
  3462. ->where('admin_user_id', $user_id)
  3463. ->orderBy('updated_at', 'desc')
  3464. ->limit(5)->get();
  3465. //获取5条单聊未读聊天消息
  3466. $chat = ChatRecords::where('is_read', 0)
  3467. ->where('user_id', $user_id)
  3468. ->where('talk_type', 1)
  3469. ->orderBy('created_at', 'desc')
  3470. ->limit(5)->get();
  3471. //获取5条未读群聊信息
  3472. $chat_group = ChatRecords::where('is_read', 0)
  3473. ->where('user_id', $user_id)
  3474. ->where('talk_type', 2)
  3475. ->orderBy('created_at', 'desc')
  3476. ->limit(5)->get();
  3477. //获取5条用户的已审核商品
  3478. $good = Good::where('status', 2)
  3479. ->where('user_id', $user_id)
  3480. ->orderBy('updated_at', 'desc')
  3481. ->limit(5)->get();
  3482. //获取5条用户待审核的公告
  3483. $notice = Notice::where('status', 2)
  3484. ->where('user_id', $user_id)
  3485. ->orderBy('updated_at', 'desc')
  3486. ->limit(5)->get();
  3487. //获取5条用户的待审核投诉
  3488. $complaint = Complaint::where('status', 2)
  3489. ->where('user_id', $user_id)
  3490. ->orderBy('updated_at', 'desc')
  3491. ->limit(5)->get();
  3492. //获取5条用户的book
  3493. $book = Book::where('status', 2)
  3494. ->where('user_id', $user_id)
  3495. ->orderBy('updated_at', 'desc')
  3496. ->limit(5)->get();
  3497. //获取5条用户的求职
  3498. //获取5条用户的求职 1
  3499. $job_hunting = JobHunting::where('job_hunting.status', 1)
  3500. ->where('job_hunting.user_id', $user_id)
  3501. ->leftJoin('user', 'job_hunting.user_id', '=', 'user.id')
  3502. ->leftJoin('website', 'job_hunting.website_id', '=', 'website.id')
  3503. ->select('job_hunting.*', 'user.nickname as nickname', 'user.user_name as user_name', 'website.website_name as website_name')
  3504. ->orderBy('updated_at', 'desc')
  3505. ->limit(5)->get();
  3506. //获取5条用户的求职 2
  3507. $job_recruiting = JobRecruiting::where('job_recruiting.status', 1)
  3508. ->where('job_recruiting.user_id', $user_id)
  3509. ->leftJoin('user', 'job_recruiting.user_id', '=', 'user.id')
  3510. ->leftJoin('website', 'job_recruiting.website_id', '=', 'website.id')
  3511. ->select('job_recruiting.*', 'user.nickname as nickname', 'user.user_name as user_name', 'website.website_name as website_name')
  3512. ->orderBy('updated_at', 'desc')
  3513. ->limit(5)->get();
  3514. //人才库 1
  3515. $job_apply = JobApply::where('job_apply.status', 1)
  3516. ->where('job_apply.receiver_id', $user_id)
  3517. ->leftJoin('user', 'job_apply.user_id', '=', 'user.id')
  3518. ->leftJoin('website', 'job_apply.website_id', '=', 'website.id')
  3519. ->leftJoin('job_company', 'job_company.job_id', '=', 'job_apply.recruit_id')
  3520. ->leftJoin('job_recruiting', 'job_recruiting.id', '=', 'job_apply.recruit_id')
  3521. ->select('job_recruiting', 'job_recruiting.', '', '')
  3522. ->select('job_apply.*', 'user.nickname as nickname', 'user.user_name as user_name', 'website.website_name as website_name', 'job_company.business_name as business_name', 'job_recruiting.title as job_name')
  3523. ->orderBy('updated_at', 'desc')
  3524. ->limit(5)->get();
  3525. // 职场机会 2
  3526. $job_resume = JobResume::where('job_resume.status', 1)
  3527. ->where('job_resume.receiver_id', $user_id)
  3528. ->leftJoin('user', 'job_resume.receiver_id', '=', 'user.id')
  3529. ->leftJoin('website', 'job_resume.website_id', '=', 'website.id')
  3530. ->leftJoin('job_company', 'job_company.job_id', '=', 'job_resume.recruit_id')
  3531. ->select('job_resume.*', 'user.nickname as nickname', 'user.user_name as user_name', 'website.website_name as website_name', 'job_company.business_name as business_name')
  3532. ->orderBy('updated_at', 'desc')
  3533. ->limit(5)->get();
  3534. $count = count($chat) + count($chat_group) + count($apply_articale) + count($good) + count($notice) + count($complaint) + count($book) + count($job_hunting) + count($job_recruiting) + count($job_apply) + count($job_resume);
  3535. $result = [
  3536. 'apply_articale' => $apply_articale,
  3537. 'chat' => $chat,
  3538. 'chat_group' => $chat_group,
  3539. 'good' => $good,
  3540. 'notice' => $notice,
  3541. 'complaint' => $complaint,
  3542. 'book' => $book,
  3543. 'job_hunting' => $job_hunting,
  3544. 'job_recruiting' => $job_recruiting,
  3545. 'job_apply' => $job_apply,
  3546. 'job_resume' => $job_resume,
  3547. 'count' => $count,
  3548. ];
  3549. } elseif ($type_id == 2) {
  3550. //最近的5篇已审的文章
  3551. $apply_articale = Article::where('status', 1)
  3552. ->where('admin_user_id', $user_id)
  3553. ->limit(5)->get();
  3554. //获取5条单聊未读聊天消息
  3555. $chat = ChatRecords::where('is_read', 0)
  3556. ->where('user_id', $user_id)
  3557. ->where('talk_type', 1)
  3558. ->orderBy('created_at', 'desc')
  3559. ->limit(5)->get();
  3560. //获取5条未读群聊信息
  3561. $chat_group = ChatRecords::where('is_read', 0)
  3562. ->where('user_id', $user_id)
  3563. ->where('talk_type', 2)
  3564. ->orderBy('created_at', 'desc')
  3565. ->limit(5)->get();
  3566. //获取5条用户的已审核商品
  3567. $good = Good::where('status', 2)
  3568. ->where('user_id', $user_id)
  3569. ->orderBy('updated_at', 'desc')
  3570. ->limit(5)->get();
  3571. $count = count($chat) + count($chat_group) + count($apply_articale) + count($good);
  3572. $result = [
  3573. 'apply_articale' => $apply_articale,
  3574. 'chat' => $chat,
  3575. 'chat_group' => $chat_group,
  3576. 'good' => $good,
  3577. 'count' => $count,
  3578. ];
  3579. } elseif ($type_id == 3) {
  3580. //最近的5篇已审的文章
  3581. $apply_articale = Article::where('status', 1)
  3582. ->where('admin_user_id', $user_id)
  3583. ->limit(5)->get();
  3584. //获取5条单聊未读聊天消息
  3585. $chat = ChatRecords::where('is_read', 0)
  3586. ->where('user_id', $user_id)
  3587. ->where('talk_type', 1)
  3588. ->orderBy('created_at', 'desc')
  3589. ->limit(5)->get();
  3590. //获取5条未读群聊信息
  3591. $chat_group = ChatRecords::where('is_read', 0)
  3592. ->where('user_id', $user_id)
  3593. ->where('talk_type', 2)
  3594. ->orderBy('created_at', 'desc')
  3595. ->limit(5)->get();
  3596. //获取5条用户的已审核商品
  3597. $good = Good::where('status', 2)
  3598. ->where('user_id', $user_id)
  3599. ->orderBy('updated_at', 'desc')
  3600. ->limit(5)->get();
  3601. $count = count($chat) + count($chat_group) + count($apply_articale) + count($good);
  3602. $result = [
  3603. 'apply_articale' => $apply_articale,
  3604. 'chat' => $chat,
  3605. 'chat_group' => $chat_group,
  3606. 'good' => $good,
  3607. 'count' => $count,
  3608. ];
  3609. } elseif ($type_id == 4) {
  3610. //最近的5篇已审的文章
  3611. $apply_articale = Article::where('status', 1)
  3612. ->where('admin_user_id', $user_id)
  3613. ->limit(5)->get();
  3614. //获取5条用户的已审核商品
  3615. $good = Good::where('status', 2)
  3616. ->where('user_id', $user_id)
  3617. ->orderBy('updated_at', 'desc')
  3618. ->limit(5)->get();
  3619. $count = count($apply_articale) + count($good);
  3620. $result = [
  3621. 'apply_articale' => $apply_articale,
  3622. 'chat' => '',
  3623. 'chat_group' => '',
  3624. 'good' => $good,
  3625. 'count' => $count,
  3626. ];
  3627. } elseif ($type_id == 10000) {
  3628. //获取未审核的5篇文章
  3629. $apply_articale = Article::where('status', 0)
  3630. ->orderBy('updated_at', 'desc')
  3631. ->limit(5)->get();
  3632. //获取5条单聊未读聊天消息
  3633. $chat = ChatRecords::where('is_read', 0)
  3634. ->where('user_id', $user_id)
  3635. ->where('talk_type', 1)
  3636. ->orderBy('created_at', 'desc')
  3637. ->limit(5)->get();
  3638. //获取5条未读群聊信息
  3639. $chat_group = ChatRecords::where('is_read', 0)
  3640. ->where('user_id', $user_id)
  3641. ->where('talk_type', 2)
  3642. ->orderBy('created_at', 'desc')
  3643. ->limit(5)->get();
  3644. //获取5条用户的已审核商品
  3645. $good = Good::where('status', 1)
  3646. // ->where('user_id', $user_id)
  3647. ->orderBy('updated_at', 'desc')
  3648. ->limit(5)->get();
  3649. //获取5条用户待审核的公告
  3650. $notice = Notice::where('status', 1)
  3651. ->orderBy('updated_at', 'desc')
  3652. ->limit(5)->get();
  3653. //获取5条用户的待审核投诉
  3654. $complaint = Complaint::where('status', 1)
  3655. ->orderBy('updated_at', 'desc')
  3656. ->limit(5)->get();
  3657. //获取5条用户的book
  3658. $book = Book::where('status', 1)
  3659. ->orderBy('updated_at', 'desc')
  3660. ->limit(5)->get();
  3661. //获取5条用户的求职 1
  3662. $job_hunting = JobHunting::where('job_hunting.status', 1)
  3663. ->leftJoin('user', 'job_hunting.user_id', '=', 'user.id')
  3664. ->leftJoin('website', 'job_hunting.website_id', '=', 'website.id')
  3665. ->select('job_hunting.*', 'user.nickname as nickname', 'user.user_name as user_name', 'website.website_name as website_name')
  3666. ->orderBy('updated_at', 'desc')
  3667. ->limit(5)->get();
  3668. //获取5条用户的求职 2
  3669. $job_recruiting = JobRecruiting::where('job_recruiting.status', 1)
  3670. ->leftJoin('user', 'job_recruiting.user_id', '=', 'user.id')
  3671. ->leftJoin('website', 'job_recruiting.website_id', '=', 'website.id')
  3672. ->select('job_recruiting.*', 'user.nickname as nickname', 'user.user_name as user_name', 'website.website_name as website_name')
  3673. ->orderBy('updated_at', 'desc')
  3674. ->limit(5)->get();
  3675. //人才库 1
  3676. $job_apply = JobApply::where('job_apply.status', 1)
  3677. ->leftJoin('user', 'job_apply.user_id', '=', 'user.id')
  3678. ->leftJoin('website', 'job_apply.website_id', '=', 'website.id')
  3679. ->leftJoin('job_company', 'job_company.job_id', '=', 'job_apply.recruit_id')
  3680. ->leftJoin('job_recruiting', 'job_recruiting.id', '=', 'job_apply.recruit_id')
  3681. ->select('job_apply.*', 'user.nickname as nickname', 'user.user_name as user_name', 'website.website_name as website_name', 'job_company.business_name as business_name', 'job_recruiting.title as job_name')
  3682. ->orderBy('updated_at', 'desc')
  3683. ->limit(5)->get();
  3684. // 职场机会 2
  3685. $job_resume = JobResume::where('job_resume.status', 1)
  3686. ->leftJoin('user', 'job_resume.receiver_id', '=', 'user.id')
  3687. ->leftJoin('website', 'job_resume.website_id', '=', 'website.id')
  3688. ->leftJoin('job_company', 'job_company.job_id', '=', 'job_resume.recruit_id')
  3689. ->select('job_resume.*', 'user.nickname as nickname', 'user.user_name as user_name', 'website.website_name as website_name', 'job_company.business_name as business_name')
  3690. ->orderBy('updated_at', 'desc')
  3691. ->limit(5)->get();
  3692. $count = count($chat) + count($chat_group) + count($apply_articale) + count($good) + count($notice) + count($complaint) + count($book) + count($job_hunting) + count($job_recruiting) + count($job_apply) + count($job_resume);
  3693. $result = [
  3694. 'apply_articale' => $apply_articale,
  3695. 'chat' => $chat,
  3696. 'chat_group' => $chat_group,
  3697. 'good' => $good,
  3698. 'notice' => $notice,
  3699. 'complaint' => $complaint,
  3700. 'book' => $book,
  3701. 'job_hunting' => $job_hunting,
  3702. 'job_recruiting' => $job_recruiting,
  3703. 'job_apply' => $job_apply,
  3704. 'job_resume' => $job_resume,
  3705. 'count' => $count,
  3706. ];
  3707. } elseif ($type_id == 20000) {
  3708. }
  3709. var_dump($type_id, '-----------------test---------');
  3710. return Result::success($result);
  3711. }
  3712. public function getComplaintList(array $data): array
  3713. {
  3714. var_dump($data, '00000001000000000000');
  3715. $type_id = isset($data['type_id']) ? $data['type_id'] : '';
  3716. unset($data['type_id']);
  3717. $user_id = isset($data['user_id']) ? $data['user_id'] : '';
  3718. $where = [];
  3719. if ($type_id != 10000) {
  3720. $where['complaint.user_id'] = $user_id;
  3721. }
  3722. if (!empty($data['title'])) {
  3723. $where['complaint.title'] = ['like', '%' . $data['title'] . '%'];
  3724. }
  3725. if (!empty($data['deal'])) {
  3726. $where['complaint.deal'] = $data['deal'];
  3727. }
  3728. if (!empty($data['status'])) {
  3729. $where['complaint.status'] = $data['status'];
  3730. }
  3731. var_dump(!empty($data['deal_user']), '----------1');
  3732. $result = Complaint::where($where)
  3733. ->when(!empty($data['status1']), function ($query) use ($data) {
  3734. $query->whereIn('complaint.status', [1, 3]); //1待审核2已审核3已拒绝
  3735. })
  3736. ->when(!empty($data['deal_user']) && $type_id != 10000, function ($query) use ($data) {
  3737. //json re_user_ids data[user_id]是不是在里面
  3738. $query->whereRaw('JSON_CONTAINS(complaint.re_user_ids, \'' . $data['user_id'] . '\')');
  3739. })
  3740. ->leftJoin('department', 'complaint.department_id', '=', 'department.id')
  3741. // ->leftJoin('user', 'complaint.user_id', '=', 'user.id')
  3742. ->leftJoin('district', 'district.id', '=', 'complaint.city_id')
  3743. ->select('complaint.*', 'department.name as department_name', 'district.name as cityname')
  3744. ->orderBy('updated_at', 'desc')
  3745. ->paginate($data['page_size'], ['*'], 'page', $data['page']);
  3746. //sql输出
  3747. if (empty($result)) {
  3748. return Result::error("暂无投诉信息", 0);
  3749. }
  3750. // 取出数据
  3751. $rows = $result->items();
  3752. $count = $result->total();
  3753. $responseData = [
  3754. 'rows' => $rows,
  3755. 'count' => $count,
  3756. ];
  3757. return Result::success($responseData);
  3758. }
  3759. public function getComplaintInfo(array $data): array
  3760. {
  3761. $result = Complaint::where('id', $data['id'])->first();
  3762. if (empty($result)) {
  3763. return Result::error("查询失败", 0);
  3764. }
  3765. return Result::success($result);
  3766. }
  3767. public function addComplaint(array $data): array
  3768. {
  3769. date_default_timezone_set('Asia/Shanghai');
  3770. $data['created_at'] = date('Y-m-d H:i:s');
  3771. $data['updated_at'] = date('Y-m-d H:i:s');
  3772. $result = Complaint::create($data);
  3773. return Result::success($result);
  3774. }
  3775. public function updateComplaint(array $data): array
  3776. {
  3777. date_default_timezone_set('Asia/Shanghai');
  3778. $data['updated_at'] = date('Y-m-d H:i:s');
  3779. $user_id = $data['user_id'] ?? 0;
  3780. $type_id = $data['type_id'] ?? 0;
  3781. unset($data['user_id']);
  3782. unset($data['type_id']);
  3783. $result = Complaint::where('id', $data['id'])->update($data);
  3784. return Result::success($result);
  3785. }
  3786. public function deleteComplaint(array $data): array
  3787. {
  3788. $result = Complaint::where('id', $data['id'])->delete();
  3789. return Result::success($result);
  3790. }
  3791. public function getComplainInfo(array $data): array
  3792. {
  3793. $result = Complaint::where('id', $data['id'])->first();
  3794. if (empty($result)) {
  3795. return Result::error("查询失败", 0);
  3796. }
  3797. return Result::success($result);
  3798. }
  3799. public function updateComplaintStatus(array $data): array
  3800. {
  3801. date_default_timezone_set('Asia/Shanghai');
  3802. $data['updated_at'] = date('Y-m-d H:i:s');
  3803. $user_id = $data['user_id'] ?? 0;
  3804. $type_id = $data['type_id'] ?? 0;
  3805. unset($data['user_id']);
  3806. unset($data['type_id']);
  3807. //处理, 写入处理人
  3808. if (isset($data['deal']) && ($data['deal'] == 1 || $data['deal'] == 4)) {
  3809. $data['real_deal_user'] = $user_id;
  3810. }
  3811. //如果是deal 23,则判断是不是处理人
  3812. if (isset($data['deal']) && ($data['deal'] == 2 || $data['deal'] == 3) && $type_id != 10000) {
  3813. $complaintInof = Complaint::where('id', $data['id'])
  3814. ->where('real_deal_user', $user_id)
  3815. ->first();
  3816. if (empty($complaintInof)) {
  3817. return Result::error("处理人错误", 0);
  3818. }
  3819. }
  3820. $result = complaint::where('id', $data['id'])->update($data);
  3821. return Result::success($result);
  3822. }
  3823. public function updateGoodStatus(array $data): array
  3824. {
  3825. $user_id = $data['user_id'] ?? 0;
  3826. $type_id = $data['type_id'] ?? 0;
  3827. unset($data['user_id']);
  3828. unset($data['type_id']);
  3829. $result = Good::where('id', $data['id'])->update($data);
  3830. return Result::success($result);
  3831. }
  3832. public function updateJobHuntingStatus(array $data): array
  3833. {
  3834. $user_id = $data['user_id'] ?? 0;
  3835. $type_id = $data['type_id'] ?? 0;
  3836. unset($data['user_id']);
  3837. unset($data['type_id']);
  3838. $result = JobHunting::where('id', $data['id'])->update($data);
  3839. return Result::success($result);
  3840. }
  3841. public function updateNoticeStatus(array $data): array
  3842. {
  3843. $user_id = $data['user_id'] ?? 0;
  3844. $type_id = $data['type_id'] ?? 0;
  3845. unset($data['user_id']);
  3846. unset($data['type_id']);
  3847. $result = Notice::where('id', $data['id'])->update($data);
  3848. return Result::success($result);
  3849. }
  3850. public function getDUser(array $data): array
  3851. {
  3852. if (!empty($data['ids'])) {
  3853. $user = User::whereIn('id', $data['ids'])->getall();
  3854. if (empty($user)) {
  3855. return Result::error('无数据', 0);
  3856. }
  3857. return Result::success($user);
  3858. }
  3859. $where = [];
  3860. if (!empty($data['department_id'])) {
  3861. $where['department_id'] = $data['department_id'];
  3862. }
  3863. if (!empty($data['city_id'])) {
  3864. $where['city_id'] = $data['city_id'];
  3865. }
  3866. $result = User::where('type_id', 2)
  3867. ->where('status', 1)
  3868. ->where($where)
  3869. ->leftJoin('user_info', 'user.id', '=', 'user_info.user_id')
  3870. ->get();
  3871. if (empty($result)) {
  3872. return Result::error("查询失败", 0);
  3873. }
  3874. return Result::success($result);
  3875. }
  3876. //20250324 通知,公告,消息
  3877. // 20250306 -------招聘--------fr
  3878. /*
  3879. * 招聘列表
  3880. * */
  3881. public function getJobRecruitingList(array $data): array
  3882. {
  3883. $where = [];
  3884. // 状态 0:待审核;1:已审核通过;(只有企业会员需要审核);2:已拒绝;3;已撤回;
  3885. if ($data['checkout'] == 0) {
  3886. $job_status = [0, 2];
  3887. } else {
  3888. $job_status = [1];
  3889. }
  3890. if (isset($data['keyword']) && !empty($data['keyword'])) {
  3891. array_push($where, ['job_recruiting.title', 'like', '%' . $data['keyword'] . '%']);
  3892. }
  3893. $user = User::where('id', $data['user_id'])->first();
  3894. if (empty($user)) {
  3895. return Result::error("用户不存在", 0);
  3896. }
  3897. // 3:企业会员
  3898. if ($user['type_id'] == 3) {
  3899. array_push($where, ['job_recruiting.user_id', $data['user_id']]);
  3900. array_push($where, ['job_recruiting.website_id', $data['website_id']]);
  3901. }
  3902. // 如果 $where 为空,则不添加 where 条件
  3903. $result['rows'] = JobRecruiting::when(!empty($where), function ($query) use ($where) {
  3904. return $query->where($where);
  3905. })
  3906. ->whereIn('job_recruiting.status', $job_status)
  3907. ->leftJoin('website', 'job_recruiting.website_id', '=', 'website.id')
  3908. ->leftJoin('user', 'job_recruiting.user_id', '=', 'user.id')
  3909. ->select('job_recruiting.*', 'website.website_name as website_name', 'user.user_name as user_name')
  3910. ->orderBy("updated_at", "desc")
  3911. ->offset(($data['page'] - 1) * $data['page_size'])
  3912. ->limit($data['page_size'])
  3913. ->get()
  3914. ->all();
  3915. $result['count'] = JobRecruiting::when(!empty($where), function ($query) use ($where) {
  3916. return $query->where($where);
  3917. })
  3918. ->whereIn('job_recruiting.status', $job_status)
  3919. ->count();
  3920. if (empty($result)) {
  3921. return Result::error("暂无招聘信息", 0);
  3922. }
  3923. return Result::success($result);
  3924. }
  3925. /*
  3926. * 招聘信息添加
  3927. * */
  3928. public function addJobRecruiting(array $data): array
  3929. {
  3930. // return Result::success($data);
  3931. $user = User::where('user.id', $data['user_id'])
  3932. ->where('user.status', 1)
  3933. ->leftJoin('user_info', 'user_info.user_id', 'user.id')
  3934. ->select(
  3935. 'user.type_id',
  3936. 'user.mobile',
  3937. 'user.email',
  3938. 'user_info.business_name',
  3939. 'user_info.company_hy_id',
  3940. 'user_info.company_nature',
  3941. 'user_info.company_size',
  3942. 'user_info.introduction',
  3943. 'user_info.real_name',
  3944. 'user_info.company_url',
  3945. 'user_info.address_arr_id',
  3946. 'user_info.address'
  3947. )
  3948. ->first();
  3949. if (empty($user) || $user['type_id'] != $data['user_type']) {
  3950. return Result::error("用户不存在", 0);
  3951. }
  3952. $web = Website::where('id', $data['website_id'])->first();
  3953. if (empty($web)) {
  3954. return Result::error("网站不存在", 0);
  3955. }
  3956. // return Result::success($user);
  3957. $data['action_id'] = $data['user_id'];
  3958. $data['user_type'] = $user['type_id'];
  3959. $data['cat_arr_id'] = array_values(array_unique($data['cat_arr_id']));
  3960. $data['city_arr_id'] = array_values(array_unique($data['city_arr_id']));
  3961. $data['cat_arr_id'] = isset($data['cat_arr_id']) ? json_encode(array_map('intval', $data['cat_arr_id'])) : '';
  3962. $data['city_arr_id'] = isset($data['city_arr_id']) ? json_encode(array_map('intval', $data['city_arr_id'])) : '';
  3963. // 公司地址 管理员必填
  3964. $data['address_arr_id'] = array_values(array_unique($data['address_arr_id']));
  3965. $data['address_arr_id'] = isset($data['address_arr_id']) ? json_encode(array_map('intval', $data['address_arr_id'])) : '';
  3966. // 管理员-企业相关信息
  3967. $company = [
  3968. // 'user_id' => $data['user_id']?? null,
  3969. 'business_name' => $data['business_name'] ?? null,
  3970. 'company_hy_id' => $data['company_hy_id'] ?? null,
  3971. 'company_size' => $data['company_size'] ?? null,
  3972. 'company_nature' => $data['company_nature'] ?? null,
  3973. 'introduction' => $data['introduction'] ?? null,
  3974. 'real_name' => $data['real_name'] ?? null,
  3975. 'mobile' => $data['mobile'] ?? null,
  3976. 'company_url' => $data['company_url'] ?? null,
  3977. 'address_arr_id' => $data['address_arr_id'] ?? null,
  3978. 'address' => $data['address'] ?? null,
  3979. 'email' => $data['email'] ?? null,
  3980. ];
  3981. //去掉相关企业信息
  3982. $job = array_diff_key($data, array_flip(array_keys($company)));
  3983. Db::beginTransaction();
  3984. try {
  3985. // 先添加职位相关信息
  3986. if ($user['type_id'] == 10000) {
  3987. $job['status'] = 1;
  3988. }
  3989. $jobId = JobRecruiting::insertGetId($job);
  3990. if (empty($jobId)) {
  3991. Db::rollBack();
  3992. return Result::error("添加失败");
  3993. }
  3994. // 添加公司信息
  3995. $company['user_id'] = $data['user_id'] ?? null;
  3996. $company['job_id'] = $jobId;
  3997. $company['user_type'] = $user['type_id'] ?? null;
  3998. $company['website_id'] = $data['website_id'] ?? null;
  3999. if ($user['type_id'] == 10000) {
  4000. // 管理员添加企业信息
  4001. // return Result::success($company);
  4002. $companyId = JobCompany::insertGetId($company);
  4003. if (empty($companyId)) {
  4004. Db::rollBack();
  4005. return Result::error("添加失败");
  4006. }
  4007. } else {
  4008. // 企业会员添加企业信息
  4009. $company = [
  4010. 'user_id' => $data['user_id'] ?? null,
  4011. 'business_name' => $user['business_name'] ?? null,
  4012. 'company_hy_id' => $user['company_hy_id'] ?? null,
  4013. 'company_size' => $user['company_size'] ?? null,
  4014. 'company_nature' => $user['company_nature'] ?? null,
  4015. 'introduction' => $user['introduction'] ?? null,
  4016. 'real_name' => $user['real_name'] ?? null,
  4017. 'mobile' => $user['mobile'] ?? null,
  4018. 'company_url' => $user['company_url'] ?? null,
  4019. 'address_arr_id' => $user['address_arr_id'] ?? null,
  4020. 'address' => $user['address'] ?? null,
  4021. 'email' => $user['email'] ?? null,
  4022. 'website_id' => $data['website_id'] ?? null,
  4023. 'user_type' => $user['type_id'] ?? null,
  4024. 'job_id' => $jobId,
  4025. ];
  4026. $companyId = JobCompany::insertGetId($company);
  4027. if (empty($companyId)) {
  4028. Db::rollBack();
  4029. return Result::error("添加失败");
  4030. }
  4031. // return Result::success($company);
  4032. }
  4033. Db::commit();
  4034. } catch (\Exception $e) {
  4035. Db::rollBack();
  4036. return Result::error($e->getMessage(), 0);
  4037. }
  4038. $result = [
  4039. 'job_id' => $jobId,
  4040. 'company_id' => $companyId,
  4041. ];
  4042. if (empty($result)) {
  4043. return Result::error("添加失败", 0);
  4044. }
  4045. return Result::success($result);
  4046. }
  4047. /*
  4048. * 获取招聘信息详情
  4049. * */
  4050. public function getJobRecruitingInfo(array $data): array
  4051. {
  4052. $result = JobRecruiting::where('job_recruiting.id', $data['id'])
  4053. ->leftJoin('website', 'job_recruiting.website_id', '=', 'website.id')
  4054. ->leftJoin('job_company', 'job_recruiting.id', '=', 'job_company.job_id')
  4055. ->select(
  4056. 'job_recruiting.*',
  4057. 'website.website_name as website_name',
  4058. 'job_company.business_name',
  4059. 'job_company.company_hy_id',
  4060. 'job_company.company_size',
  4061. 'job_company.company_nature',
  4062. 'job_company.introduction',
  4063. 'job_company.real_name',
  4064. 'job_company.mobile',
  4065. 'job_company.company_url',
  4066. 'job_company.address_arr_id',
  4067. 'job_company.address',
  4068. 'job_company.email'
  4069. )
  4070. ->first();
  4071. $cityId = json_decode($result['city_arr_id'], true) ?? [];
  4072. if (!empty($cityId)) {
  4073. if (isset($cityId[1]) && $cityId[1] != null) {
  4074. $city = District::where('id', $cityId[1])->first(['name']);
  4075. } else {
  4076. $city = District::where('id', $cityId[0])->first(['name']);
  4077. }
  4078. $result['city'] = $city['name'] ?? '';
  4079. }
  4080. $addressId = json_decode($result['address_arr_id'], true) ?? [];
  4081. if (is_array($addressId) && !empty($addressId)) {
  4082. $address = District::whereIn('id', $addressId)
  4083. ->orderBy('level', 'asc')
  4084. ->get(['name'])
  4085. ->pluck('name')
  4086. ->implode('');
  4087. // $job->address_name = $address ?? '';
  4088. $result['address_name'] = ($address ?? '') . ($result['address'] ?? '');
  4089. }
  4090. if (empty($result)) {
  4091. return Result::error("招聘信息不存在", 0);
  4092. }
  4093. // return Result::success($job);
  4094. return Result::success($result);
  4095. }
  4096. /*
  4097. * 修改招聘信息
  4098. * */
  4099. public function upJobRecruiting(array $data): array
  4100. {
  4101. $job = JobRecruiting::where('job_recruiting.id', $data['id'])->first();
  4102. // return Result::success($job);
  4103. if (empty($job)) {
  4104. return Result::error("招聘信息不存在", 0);
  4105. }
  4106. $user = User::where('id', $data['user_id'])->first();
  4107. // return Result::success($user);
  4108. if (empty($user) || $user['type_id'] != $data['user_type']) {
  4109. return Result::error("用户不存在", 0);
  4110. }
  4111. if ($user['type_id'] == 3 && $job['user_id'] != $user['id']) {
  4112. return Result::error("用户暂无权限修改此招聘信息!", 0);
  4113. }
  4114. $data['cat_arr_id'] = array_values(array_unique($data['cat_arr_id']));
  4115. $data['city_arr_id'] = array_values(array_unique($data['city_arr_id']));
  4116. $data['cat_arr_id'] = isset($data['cat_arr_id']) ? json_encode(array_map('intval', $data['cat_arr_id'])) : '';
  4117. $data['city_arr_id'] = isset($data['city_arr_id']) ? json_encode(array_map('intval', $data['city_arr_id'])) : '';
  4118. // 公司地址 管理员必填
  4119. $data['address_arr_id'] = array_values(array_unique($data['address_arr_id']));
  4120. $data['address_arr_id'] = isset($data['address_arr_id']) ? json_encode(array_map('intval', $data['address_arr_id'])) : '';
  4121. // 管理员-企业相关信息
  4122. $company = [
  4123. 'business_name' => $data['business_name'] ?? null,
  4124. 'company_hy_id' => $data['hy_id'] ?? null,
  4125. 'company_size' => $data['company_size'] ?? null,
  4126. 'company_nature' => $data['company_nature'] ?? null,
  4127. 'introduction' => $data['introduction'] ?? null,
  4128. 'real_name' => $data['real_name'] ?? null,
  4129. 'mobile' => $data['mobile'] ?? null,
  4130. 'company_url' => $data['company_url'] ?? null,
  4131. 'address_arr_id' => $data['address_arr_id'] ?? null,
  4132. 'address' => $data['address'] ?? null,
  4133. 'email' => $data['email'] ?? null,
  4134. ];
  4135. //去掉相关企业信息
  4136. $data = array_diff_key($data, array_flip(array_keys($company)));
  4137. $jobId = $data['id'];
  4138. $web = $data['website_id'];
  4139. $data['action_id'] = $data['user_id'];
  4140. unset($data['user_id']);
  4141. unset($data['user_type']);
  4142. unset($data['id']);
  4143. unset($data['website_id']);
  4144. // return Result::success($data);
  4145. Db::beginTransaction();
  4146. try {
  4147. // 管理员修改招聘信息
  4148. if ($user['type_id'] == 10000) {
  4149. $data['website_id'] = $web;
  4150. $company['website_id'] = $data['website_id'];
  4151. $data['status'] = 1;
  4152. } else {
  4153. $data['status'] = 0;
  4154. }
  4155. // Db::rollBack();
  4156. // return Result::success($company);
  4157. $result['job'] = JobRecruiting::where('id', $jobId)->update($data);
  4158. if (empty($result['job'])) {
  4159. Db::rollBack();
  4160. return Result::error("修改招聘信息失败");
  4161. }
  4162. // 管理员修改企业相关信息
  4163. $result['company'] = JobCompany::where('job_id', $jobId)->update($company);
  4164. if (empty($result['company'])) {
  4165. Db::rollBack();
  4166. return Result::error("修改企业相关信息失败");
  4167. }
  4168. Db::commit();
  4169. // return Result::success($result);
  4170. } catch (\Exception $e) {
  4171. Db::rollBack();
  4172. return Result::error($e->getMessage(), 0);
  4173. }
  4174. return Result::success($result);
  4175. }
  4176. /*
  4177. * 招聘信息删除
  4178. * */
  4179. public function delJobRecruiting(array $data): array
  4180. {
  4181. $user = User::where('id', $data['user_id'])->first();
  4182. if (empty($user)) {
  4183. return Result::error("用户不存在", 0);
  4184. }
  4185. $job = JobRecruiting::where('id', $data['id'])->first();
  4186. if (empty($job)) {
  4187. return Result::error("招聘信息不存在", 0);
  4188. }
  4189. if ($user['type_id'] == 3 && $job['user_id'] != $user['id']) {
  4190. return Result::error("用户暂无权限修改此招聘信息!", 0);
  4191. }
  4192. Db::beginTransaction();
  4193. try {
  4194. $result['job'] = JobRecruiting::where('id', $data['id'])->delete();
  4195. if (empty($result['job'])) {
  4196. Db::rollBack();
  4197. return Result::error("删除招聘信息失败");
  4198. }
  4199. $result['company'] = JobCompany::where('job_id', $data['id'])->delete();
  4200. if (empty($result['company'])) {
  4201. Db::rollBack();
  4202. return Result::error("删除企业相关信息失败");
  4203. }
  4204. Db::commit();
  4205. } catch (\Exception $e) {
  4206. Db::rollBack();
  4207. return Result::error($e->getMessage(), 0);
  4208. }
  4209. return Result::success($result);
  4210. }
  4211. /*
  4212. * 获取公司信息
  4213. * */
  4214. public function getJobCompany(array $data): array
  4215. {
  4216. $user = User::where('user.id', $data['user_id'])
  4217. ->leftJoin('user_info', 'user_info.user_id', 'user.id')
  4218. ->select('user.user_name', 'user.mobile', 'user.email', 'user.type_id', 'user_info.*')
  4219. ->first();
  4220. // return Result::success($user);
  4221. if (empty($user)) {
  4222. return Result::error("用户不存在", 0);
  4223. }
  4224. if ($user['type_id'] == 3) {
  4225. $result = [
  4226. // 'id' => 0,
  4227. 'user_id' => $data['user_id'],
  4228. 'website_id' => $data['website_id'],
  4229. 'business_name' => $user['business_name'], // 企业名称
  4230. 'company_hy_id' => $user['company_hy_id'], // 企业所属行业
  4231. 'company_nature' => $user['company_nature'], // 公司性质
  4232. 'company_size' => $user['company_size'], // 公司规模
  4233. 'introduction' => $user['introduction'], // 公司简介
  4234. 'real_name' => $user['real_name'], // 企业联系人
  4235. 'mobile' => $user['mobile'], // 企业联系电话
  4236. 'company_url' => $user['company_url'], // 企业网址
  4237. 'address_arr_id' => $user['address_arr_id'], // 企业网址
  4238. 'address' => $user['address'], // 企业地址
  4239. 'email' => $user['email'], // 企业邮箱
  4240. ];
  4241. } else {
  4242. return Result::error("用户类型错误", 0);
  4243. }
  4244. if (empty($result)) {
  4245. return Result::error("公司信息不存在", 0);
  4246. }
  4247. return Result::success($result);
  4248. }
  4249. /*
  4250. * 修改公司信息
  4251. * */
  4252. public function upJobCompany(array $data): array
  4253. {
  4254. // return Result::success($data);
  4255. $user = User::where('user.id', $data['user_id'])
  4256. ->where('user.status', 1)
  4257. ->select('user.user_name', 'user.type_id')
  4258. ->first();
  4259. if (empty($user)) {
  4260. return Result::error("用户不存在", 0);
  4261. }
  4262. $data['address_arr_id'] = isset($data['address_arr_id']) ? json_encode(array_map('intval', $data['address_arr_id'])) : '';
  4263. $company = [
  4264. 'business_name' => $data['business_name'], // 企业名称
  4265. 'company_hy_id' => $data['company_hy_id'], // 企业所属行业
  4266. 'company_nature' => $data['company_nature'], // 公司性质
  4267. 'company_size' => $data['company_size'], // 公司规模
  4268. 'introduction' => $data['introduction'], // 公司简介
  4269. // 'real_name' => $data['real_name'], // 企业联系人
  4270. 'company_url' => $data['company_url'], // 企业网址
  4271. 'address_arr_id' => $data['address_arr_id'], // 企业地址
  4272. 'address' => $data['address'], // 企业详细地址
  4273. ];
  4274. if ($user['type_id'] == 3) {
  4275. Db::beginTransaction();
  4276. try {
  4277. $result['userinfo'] = UserInfo::where('user_id', $data['user_id'])->update([
  4278. 'business_name' => $data['business_name'], // 企业名称
  4279. 'company_hy_id' => $data['company_hy_id'], // 企业所属行业
  4280. 'company_nature' => $data['company_nature'], // 公司性质
  4281. 'company_size' => $data['company_size'], // 公司规模
  4282. 'introduction' => $data['introduction'], // 公司简介
  4283. // 'real_name' => $data['real_name'], // 企业联系人
  4284. 'company_url' => $data['company_url'], // 企业网址
  4285. 'address_arr_id' => $data['address_arr_id'], // 企业地址
  4286. 'address' => $data['address'], // 企业详细地址
  4287. ]);
  4288. $result['job_company'] = JobCompany::where('user_id', $data['user_id'])->update($company);
  4289. Db::commit();
  4290. } catch (\Exception $e) {
  4291. Db::rollBack();
  4292. return Result::error($e->getMessage(), 0);
  4293. }
  4294. } else {
  4295. return Result::error("用户类型错误", 0);
  4296. }
  4297. if (empty($result)) {
  4298. return Result::error("修改失败", 0);
  4299. }
  4300. return Result::success($result);
  4301. }
  4302. /*
  4303. * 获取省-市
  4304. * */
  4305. public function getJobRecruitingArea(array $data): array
  4306. {
  4307. if (isset($data['pid']) && $data['pid'] != null) {
  4308. $result = District::where('pid', $data['pid'])->get()->all();
  4309. } else {
  4310. $result = District::where('level', 1)->get()->all();
  4311. }
  4312. if (empty($result)) {
  4313. return Result::error("暂无此省市", 0);
  4314. }
  4315. return Result::success($result);
  4316. }
  4317. /*
  4318. * 获取行业分类
  4319. * */
  4320. public function getIndustry(array $data): array
  4321. {
  4322. $result = JobIndustry::get()->all();
  4323. if (empty($result)) {
  4324. return Result::error("暂无行业分类", 0);
  4325. }
  4326. return Result::success($result);
  4327. }
  4328. /*
  4329. * 获取职位
  4330. * */
  4331. public function getPositionList(array $data): array
  4332. {
  4333. if (isset($data['zwpid']) && $data['zwpid'] != null) {
  4334. $result = JobPosition::where('zwpid', $data['zwpid'])->get()->all();
  4335. } else {
  4336. $result = JobPosition::where('zwpid', 0)->get()->all();
  4337. }
  4338. if (empty($result)) {
  4339. return Result::error("暂无此职位", 0);
  4340. }
  4341. return Result::success($result);
  4342. }
  4343. /*
  4344. * 获取工作性质-菜单
  4345. * */
  4346. public function getJobNature(array $data): array
  4347. {
  4348. $result = JobEnum::where('egroup', 'nature')->get()->all();
  4349. if (empty($result)) {
  4350. return Result::error("暂无工作性质", 0);
  4351. }
  4352. return Result::success($result);
  4353. }
  4354. /*
  4355. * 获取工作经验-菜单
  4356. * */
  4357. public function getExperience(array $data): array
  4358. {
  4359. $result = JobEnum::where('egroup', 'years')->get()->all();
  4360. if (empty($result)) {
  4361. return Result::error("暂无工作经验", 0);
  4362. }
  4363. return Result::success($result);
  4364. }
  4365. /*
  4366. * 获取学历-菜单
  4367. * */
  4368. public function getEducation(array $data): array
  4369. {
  4370. $result = JobEnum::where('egroup', 'education')->get()->all();
  4371. if (empty($result)) {
  4372. return Result::error("暂无学历", 0);
  4373. }
  4374. return Result::success($result);
  4375. }
  4376. /*
  4377. * 获取薪资-菜单
  4378. * */
  4379. public function getSalary(array $data): array
  4380. {
  4381. $result = JobEnum::where('egroup', 'income')->get()->all();
  4382. if (empty($result)) {
  4383. return Result::error("暂无薪资", 0);
  4384. }
  4385. return Result::success($result);
  4386. }
  4387. /*
  4388. * 获取语言-菜单
  4389. * */
  4390. public function getLanguage(array $data): array
  4391. {
  4392. $result = JobEnum::where('egroup', 'language')->get()->all();
  4393. if (empty($result)) {
  4394. return Result::error("暂无语言", 0);
  4395. }
  4396. return Result::success($result);
  4397. }
  4398. /*
  4399. * 获取掌握程度-菜单
  4400. * */
  4401. public function getLevel(array $data): array
  4402. {
  4403. $result = JobEnum::where('egroup', 'languagetype')->get()->all();
  4404. if (empty($result)) {
  4405. return Result::error("暂无工作性质", 0);
  4406. }
  4407. return Result::success($result);
  4408. }
  4409. // 公司信息
  4410. /*
  4411. * 获取公司性质-菜单
  4412. * */
  4413. public function getCompanyNature(array $data): array
  4414. {
  4415. $result = JobNature::get()->all();
  4416. if (empty($result)) {
  4417. return Result::error("暂无公司性质", 0);
  4418. }
  4419. return Result::success($result);
  4420. }
  4421. /*
  4422. * 获取公司规模-菜单
  4423. * */
  4424. public function getCompanySize(array $data): array
  4425. {
  4426. $result = JobEnum::where('egroup', 'cosize')->get()->all();
  4427. if (empty($result)) {
  4428. return Result::error("暂无公司规模", 0);
  4429. }
  4430. return Result::success($result);
  4431. }
  4432. /*
  4433. * 招聘信息审核
  4434. * */
  4435. public function checkJobRecruiting(array $data): array
  4436. {
  4437. $user = User::where('id', $data['user_id'])->first();
  4438. if (empty($user)) {
  4439. return Result::error("用户不存在", 0);
  4440. }
  4441. $job = JobRecruiting::where('id', $data['id'])->first();
  4442. if (empty($job)) {
  4443. return Result::error("招聘信息不存在", 0);
  4444. }
  4445. // 状态 0:待审核;1:已审核通过;;2:已驳回;
  4446. if ($user['type_id'] != 10000) {
  4447. return Result::error("用户暂无权限审核此招聘信息!", 0);
  4448. }
  4449. // 驳回原因
  4450. if ($data['status'] == 2) {
  4451. $data['refuse_reason'] = $data['refuse_reason'] ?? null;
  4452. }
  4453. $data['action_id'] = $data['user_id'];
  4454. unset($data['user_id']);
  4455. $result = JobRecruiting::where('id', $data['id'])->update($data);
  4456. if (empty($result)) {
  4457. return Result::error("审核失败", 0);
  4458. }
  4459. return Result::success($result);
  4460. }
  4461. public function myApplyList(array $data): array
  4462. {
  4463. $user = User::where('id', $data['user_id'])->first();
  4464. if (empty($user) || ($user['type_id'] != 10000 && $user['type_id'] != 1)) {
  4465. return Result::error("用户不存在", 0);
  4466. }
  4467. // 1:个人会员 职场机会
  4468. if ($user['type_id'] == 1) {
  4469. $where['user_id'] = $user['id'];
  4470. }
  4471. $recruitingId = JobResume::when($user['type_id'] == 1, function ($query) use ($user) {
  4472. $query->where('recruit_id', $user['id']);
  4473. })
  4474. ->pluck('recruit_id');
  4475. $where = [];
  4476. if (isset($data['salary']) && $data['salary'] != null) {
  4477. $where['job_recruiting.salary'] = $data['salary'];
  4478. }
  4479. if (isset($data['experience']) && $data['experience'] != null) {
  4480. $where['job_recruiting.experience'] = $data['experience'];
  4481. }
  4482. if (isset($data['business_name']) && $data['business_name'] != null) {
  4483. array_push($where, ['job_company.business_name', 'like', '%' . $data['business_name'] . '%']);
  4484. }
  4485. $query = JobRecruiting::whereIn('job_recruiting.id', $recruitingId)
  4486. ->leftJoin('job_company', 'job_recruiting.id', '=', 'job_company.job_id')
  4487. ->where($where);
  4488. // ->count();
  4489. $count = $query->count();
  4490. $query = clone $query;
  4491. $job = $query
  4492. ->leftJoin('job_enum as income_enum', function ($join) {
  4493. $join->on('job_recruiting.salary', '=', 'income_enum.evalue')
  4494. ->where('income_enum.egroup', 'income');
  4495. })
  4496. ->leftJoin('job_enum as years_enum', function ($join) {
  4497. $join->on('job_recruiting.experience', '=', 'years_enum.evalue')
  4498. ->where('years_enum.egroup', 'years');
  4499. })
  4500. // ->where($where)
  4501. ->orderBy('job_recruiting.updated_at', 'desc')
  4502. ->select(
  4503. 'job_recruiting.id',
  4504. 'job_recruiting.title',
  4505. 'job_company.business_name',
  4506. 'income_enum.evalue as salary_evalue',
  4507. 'income_enum.ename as salary_ename',
  4508. 'years_enum.evalue as experience_evalue',
  4509. 'years_enum.ename as experience_ename',
  4510. 'job_recruiting.updated_at'
  4511. )
  4512. ->offset(($data['page'] - 1) * $data['pageSize'])
  4513. ->limit($data['pageSize'])
  4514. ->get()
  4515. ->all();
  4516. if (empty($job)) {
  4517. return Result::error("暂无招聘信息", 0);
  4518. }
  4519. $result = [
  4520. 'row' => $job,
  4521. 'count' => $count,
  4522. ];
  4523. return Result::success($result);
  4524. }
  4525. /*
  4526. * 获取招聘信息列表-职场机会(个人会员收到企业推送岗位)
  4527. * */
  4528. public function getRecruitingList(array $data): array
  4529. {
  4530. $user = User::where('id', $data['user_id'])->first();
  4531. if (empty($user) || ($user['type_id'] != 10000 && $user['type_id'] != 1)) {
  4532. return Result::error("用户不存在", 0);
  4533. }
  4534. // 1:个人会员 职场机会
  4535. if ($user['type_id'] == 1) {
  4536. $where['user_id'] = $user['id'];
  4537. }
  4538. $recruitingId = JobResume::when($user['type_id'] == 1, function ($query) use ($user) {
  4539. $query->where('recruit_id', $user['id']);
  4540. })
  4541. ->pluck('recruit_id');
  4542. $where = [];
  4543. if (isset($data['salary']) && $data['salary'] != null) {
  4544. $where['job_recruiting.salary'] = $data['salary'];
  4545. }
  4546. if (isset($data['experience']) && $data['experience'] != null) {
  4547. $where['job_recruiting.experience'] = $data['experience'];
  4548. }
  4549. if (isset($data['business_name']) && $data['business_name'] != null) {
  4550. array_push($where, ['job_company.business_name', 'like', '%' . $data['business_name'] . '%']);
  4551. }
  4552. $query = JobRecruiting::whereIn('job_recruiting.id', $recruitingId)
  4553. ->leftJoin('job_company', 'job_recruiting.id', '=', 'job_company.job_id')
  4554. ->where($where);
  4555. // ->count();
  4556. $count = $query->count();
  4557. $query = clone $query;
  4558. $job = $query
  4559. ->leftJoin('job_enum as income_enum', function ($join) {
  4560. $join->on('job_recruiting.salary', '=', 'income_enum.evalue')
  4561. ->where('income_enum.egroup', 'income');
  4562. })
  4563. ->leftJoin('job_enum as years_enum', function ($join) {
  4564. $join->on('job_recruiting.experience', '=', 'years_enum.evalue')
  4565. ->where('years_enum.egroup', 'years');
  4566. })
  4567. // ->where($where)
  4568. ->orderBy('job_recruiting.updated_at', 'desc')
  4569. ->select(
  4570. 'job_recruiting.id',
  4571. 'job_recruiting.title',
  4572. 'job_company.business_name',
  4573. 'income_enum.evalue as salary_evalue',
  4574. 'income_enum.ename as salary_ename',
  4575. 'years_enum.evalue as experience_evalue',
  4576. 'years_enum.ename as experience_ename',
  4577. 'job_recruiting.updated_at'
  4578. )
  4579. ->offset(($data['page'] - 1) * $data['pageSize'])
  4580. ->limit($data['pageSize'])
  4581. ->get()
  4582. ->all();
  4583. if (empty($job)) {
  4584. return Result::error("暂无招聘信息", 0);
  4585. }
  4586. $result = [
  4587. 'row' => $job,
  4588. 'count' => $count,
  4589. ];
  4590. return Result::success($result);
  4591. }
  4592. /*
  4593. * 获取企业会员-招聘信息列表
  4594. * */
  4595. public function getRecruitingInfo(array $data): array
  4596. {
  4597. $user = User::where('id', $data['user_id'])->first();
  4598. if (empty($user) || ($user['type_id'] != 10000 && $user['type_id'] != 1)) {
  4599. return Result::error("用户不存在", 0);
  4600. }
  4601. $recruiting = JobRecruiting::where('job_recruiting.id', $data['id'])
  4602. ->leftJoin('job_company', 'job_recruiting.id', '=', 'job_company.job_id')
  4603. ->select(
  4604. 'job_recruiting.*',
  4605. 'job_company.business_name',
  4606. 'job_company.company_hy_id',
  4607. 'job_company.company_size',
  4608. 'job_company.company_nature',
  4609. 'job_company.introduction',
  4610. 'job_company.real_name',
  4611. 'job_company.mobile',
  4612. 'job_company.company_url',
  4613. 'job_company.address_arr_id',
  4614. 'job_company.address',
  4615. 'job_company.email'
  4616. )
  4617. ->get();
  4618. if (empty($recruiting)) {
  4619. return Result::error("暂无招聘信息", 0);
  4620. }
  4621. return Result::success($recruiting);
  4622. }
  4623. /*
  4624. * 获取企业会员-我的沟通
  4625. * */
  4626. public function getJobResumeList(array $data): array
  4627. {
  4628. $user = User::where('id', $data['user_id'])->first();
  4629. if (empty($user) || ($user['type_id'] != 10000 && $user['type_id'] != 3)) {
  4630. return Result::error("用户不存在", 0);
  4631. }
  4632. $where = [];
  4633. if (isset($data['salary']) && $data['salary'] != null) {
  4634. $where['job_hunting.salary'] = $data['salary'];
  4635. }
  4636. if (isset($data['user_name']) && $data['user_name'] != null) {
  4637. array_push($where, ['user.user_name', 'like', '%' . $data['user_name'] . '%']);
  4638. }
  4639. $job = JobResume::when($user['type_id'] == 3, function ($query) use ($user) {
  4640. $query->where('job_resume.user_id', $user['id']);
  4641. })
  4642. ->when(!empty($where), function ($query) use ($where) {
  4643. $query->where($where);
  4644. })
  4645. ->leftJoin('job_hunting','job_hunting.id','job_resume.hunt_id')
  4646. ->leftJoin('job_recruiting','job_recruiting.id','job_resume.recruit_id')
  4647. ->leftJoin('user','user.id','job_resume.receiver_id')
  4648. ->select('job_resume.hunt_id','job_resume.recruit_id','job_hunting.id','job_hunting.salary','job_hunting.city_id','job_hunting.updated_at','job_recruiting.jtzw_id','user.user_name');
  4649. $count = $job->count();
  4650. if ($count == 0) {
  4651. return Result::error("暂无沟通记录", 0);
  4652. }
  4653. $jobs = $job->offset(($data['page'] - 1) * $data['pageSize'])
  4654. ->limit($data['pageSize'])
  4655. ->get();
  4656. if (empty($jobs)) {
  4657. return Result::error("暂无沟通记录", 0);
  4658. }
  4659. $result['row'] = $this->processJob($jobs, '');
  4660. $result['count'] = $count;
  4661. return Result::success($result);
  4662. }
  4663. // 20250306 招聘
  4664. //20250422 书刊音像
  4665. public function addBook(array $data): array
  4666. {
  4667. $user_id = $data['user_id'] ?? 0;
  4668. $type_id = $data['type_id'] ?? 0;
  4669. $website_id = $data['website_id'] ?? 0;
  4670. // unset($data['user_id']);
  4671. unset($data['type_id']);
  4672. // unset($data['website_id']);
  4673. //处理数组
  4674. // $data['department_arr_id'] = is_array($data['department_arr_id']) ? Json::encode($data['department_arr_id']) : '[]';
  4675. $data['city_arr_id'] = is_array($data['city_arr_id']) ? Json::encode($data['city_arr_id']) : '[]';
  4676. $data['cat_arr_id'] = is_array($data['cat_arr_id']) ? Json::encode($data['cat_arr_id']) : '[]';
  4677. if ($data['img_url'] == '') {
  4678. $reg = '/<img.*?src=[\"|\']?(.*?)[\"|\']?\s.*?>/i';
  4679. preg_match_all($reg, $data['detail'], $matches);
  4680. if (isset($matches[1][0])) {
  4681. //截取varchar240
  4682. $data['img_url'] = substr($matches[1][0], 0, 240);
  4683. }
  4684. }
  4685. if ($data['keyword'] == '' || $data['keyword'] == array()) {
  4686. //提取标题+内容中的关键词
  4687. $data['keyword'] = $data['title'];
  4688. // . substr(str_replace(' ', '', strip_tags($data['content'])), 0, 20);
  4689. Jieba::init(); // 初始化 jieba-php
  4690. Finalseg::init();
  4691. $segList = Jieba::cut($data['keyword']);
  4692. $segList1 = array_slice($segList, 0, 8);
  4693. $data['keyword'] = implode(',', $segList1);
  4694. }
  4695. if ($data['description'] == '') {
  4696. //提取内容中的描述
  4697. $data['description'] = substr(preg_replace('/\s+/', '', strip_tags($data['detail'])), 0, 100);
  4698. }
  4699. var_dump($data, '--');
  4700. $result = Book::insertGetId($data);
  4701. if (empty($result)) {
  4702. return Result::error("添加失败", 0);
  4703. }
  4704. return Result::success($result);
  4705. }
  4706. public function getBookList(array $data): array
  4707. {
  4708. $where = [];
  4709. if (!empty($data["title"])) {
  4710. $where[] = ['book.title', 'like', '%' . $data["title"] . '%'];
  4711. }
  4712. if (!empty($data['website_name'])) {
  4713. $where[] = ['website.website_name', 'like', '%' . $data['website_name'] . '%'];
  4714. }
  4715. if (!empty($data['status'])) {
  4716. $where[] = ['book.status', '=', $data['status']];
  4717. }
  4718. $user_id = $data['user_id'];
  4719. $type_id = $data['type_id'];
  4720. // $type_id = 4;
  4721. var_dump($type_id, '------1--------');
  4722. if ($type_id != 10000) {
  4723. $where[] = ['book.user_id', '=', $user_id];
  4724. }
  4725. var_dump(!empty($data['status1']), '=-===1');
  4726. $result = Book::where($where)
  4727. ->leftJoin('website', 'book.website_id', '=', 'website.id')
  4728. ->leftJoin('category', 'book.cat_id', '=', 'category.id')
  4729. ->leftJoin('district', 'book.city_id', '=', 'district.id')
  4730. ->when(isset($data['status1']), function ($query) use ($data) {
  4731. $query->whereIn('book.status', [1, 3]);
  4732. })
  4733. ->select('book.*', 'website.website_name', 'category.name as cat_name', 'district.name as city_name')
  4734. ->orderBy("updated_at", "desc")
  4735. ->paginate($data['page_size'], ['*'], 'page', $data['page']);
  4736. if (empty($result)) {
  4737. return Result::error("暂无数据", 0);
  4738. }
  4739. // 取出数据
  4740. $rows = $result->items();
  4741. $count = $result->total();
  4742. $responseData = [
  4743. 'rows' => $rows,
  4744. 'count' => $count,
  4745. ];
  4746. return Result::success($responseData);
  4747. }
  4748. public function deleteBook(array $data): array
  4749. {
  4750. $result = Book::where('id', $data['id'])->delete();
  4751. if (empty($result)) {
  4752. return Result::error("删除失败", 0);
  4753. }
  4754. return Result::success($result);
  4755. }
  4756. public function updateBook(array $data): array
  4757. {
  4758. $user_id = $data['user_id'] ?? 0;
  4759. $type_id = $data['type_id'] ?? 0;
  4760. $website_id = $data['website_id'] ?? 0;
  4761. unset($data['user_id']);
  4762. unset($data['type_id']);
  4763. // unset($data['website_id']);
  4764. //处理数组
  4765. // $data['department_arr_id'] = is_array($data['department_arr_id']) ? Json::encode($data['department_arr_id']) : '[]';
  4766. if ($data['img_url'] == '') {
  4767. $reg = '/<img.*?src=[\"|\']?(.*?)[\"|\']?\s.*?>/i';
  4768. preg_match_all($reg, $data['detail'], $matches);
  4769. if (isset($matches[1][0])) {
  4770. //截取varchar240
  4771. $data['img_url'] = substr($matches[1][0], 0, 240);
  4772. }
  4773. }
  4774. if ($data['keyword'] == '') {
  4775. //提取标题+内容中的关键词
  4776. $data['keyword'] = $data['title'];
  4777. // . substr(str_replace(' ', '', strip_tags($data['content'])), 0, 20);
  4778. Jieba::init(); // 初始化 jieba-php
  4779. Finalseg::init();
  4780. $segList = Jieba::cut($data['keyword']);
  4781. $segList1 = array_slice($segList, 0, 8);
  4782. $data['keyword'] = implode(',', $segList1);
  4783. }
  4784. if ($data['description'] == '') {
  4785. //提取内容中的描述
  4786. $data['description'] = substr(preg_replace('/\s+/', '', strip_tags($data['detail'])), 0, 100);
  4787. }
  4788. $data['city_arr_id'] = is_array($data['city_arr_id']) ? Json::encode($data['city_arr_id']) : '[]';
  4789. $data['cat_arr_id'] = is_array($data['cat_arr_id']) ? Json::encode($data['cat_arr_id']) : '[]';
  4790. $result = Book::where("id", $data["id"])->update($data);
  4791. if (empty($result)) {
  4792. return Result::error("更新失败", 0);
  4793. }
  4794. return Result::success($result);
  4795. }
  4796. public function getBookInfo(array $data): array
  4797. {
  4798. $result = Book::where("id", $data["id"])->first();
  4799. if (empty($result)) {
  4800. return Result::error("获取失败", 0);
  4801. }
  4802. return Result::success($result);
  4803. }
  4804. public function updateBookStatus(array $data): array
  4805. {
  4806. //审核
  4807. unset($data['user_id']);
  4808. $result = Book::where("id", $data["id"])->update($data);
  4809. if (empty($result)) {
  4810. return Result::error("更新失败", 0);
  4811. }
  4812. return Result::success($result);
  4813. }
  4814. //20250422 书刊音像
  4815. }