ProjectController.php 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310
  1. <?php
  2. namespace App\Http\Controllers\Api;
  3. use App\Http\Controllers\Controller;
  4. use App\Module\Base;
  5. use App\Module\Project;
  6. use App\Module\Users;
  7. use DB;
  8. use Request;
  9. use Session;
  10. /**
  11. * @apiDefine project
  12. *
  13. * 项目
  14. */
  15. class ProjectController extends Controller
  16. {
  17. public function __invoke($method, $action = '')
  18. {
  19. $app = $method ? $method : 'main';
  20. if ($action) {
  21. $app .= "__" . $action;
  22. }
  23. return (method_exists($this, $app)) ? $this->$app() : Base::ajaxError("404 not found (" . str_replace("__", "/", $app) . ").");
  24. }
  25. /**
  26. * 项目列表
  27. *
  28. * @apiParam {String} act 类型
  29. * - join: 加入的项目(默认)
  30. * - favor: 收藏的项目
  31. * - manage: 管理的项目
  32. * @apiParam {Number} [page] 当前页,默认:1
  33. * @apiParam {Number} [pagesize] 每页显示数量,默认:20,最大:100
  34. */
  35. public function lists()
  36. {
  37. $user = Users::authE();
  38. if (Base::isError($user)) {
  39. return $user;
  40. } else {
  41. $user = $user['data'];
  42. }
  43. //
  44. $whereArray = [];
  45. $whereArray[] = ['project_lists.delete', '=', 0];
  46. $whereArray[] = ['project_users.username', '=', $user['username']];
  47. switch (Request::input('act')) {
  48. case "favor": {
  49. $whereArray[] = ['project_users.type', '=', '收藏'];
  50. break;
  51. }
  52. case "manage": {
  53. $whereArray[] = ['project_users.type', '=', '成员'];
  54. $whereArray[] = ['project_users.isowner', '=', 1];
  55. break;
  56. }
  57. default: {
  58. $whereArray[] = ['project_users.type', '=', '成员'];
  59. break;
  60. }
  61. }
  62. $lists = DB::table('project_lists')
  63. ->join('project_users', 'project_lists.id', '=', 'project_users.projectid')
  64. ->select(['project_lists.*', 'project_users.isowner', 'project_users.indate as uindate'])
  65. ->where($whereArray)
  66. ->orderByDesc('project_lists.id')->paginate(Min(Max(Base::nullShow(Request::input('pagesize'), 10), 1), 100));
  67. $lists = Base::getPageList($lists);
  68. if ($lists['total'] == 0) {
  69. return Base::retError('未找到任何相关的项目');
  70. }
  71. return Base::retSuccess('success', $lists);
  72. }
  73. /**
  74. * 项目详情
  75. *
  76. * @apiParam {Number} projectid 项目ID
  77. */
  78. public function detail()
  79. {
  80. $user = Users::authE();
  81. if (Base::isError($user)) {
  82. return $user;
  83. } else {
  84. $user = $user['data'];
  85. }
  86. //
  87. $projectid = trim(Request::input('projectid'));
  88. $projectDetail = Base::DBC2A(DB::table('project_lists')->where('id', $projectid)->where('delete', 0)->first());
  89. if (empty($projectDetail)) {
  90. return Base::retError('项目不存在或已被删除!');
  91. }
  92. $inRes = Project::inThe($projectid, $user['username']);
  93. if (Base::isError($inRes)) {
  94. return $inRes;
  95. }
  96. //子分类
  97. $label = Base::DBC2A(DB::table('project_label')->where('projectid', $projectid)->orderBy('inorder')->orderBy('id')->get());
  98. $simpleLabel = [];
  99. //任务
  100. $task = Base::DBC2A(DB::table('project_task')->where([ 'projectid' => $projectid, 'delete' => 0, 'complete' => 0 ])->orderByDesc('inorder')->orderByDesc('id')->get());
  101. //任务归类
  102. foreach ($label AS $index => $temp) {
  103. $taskLists = [];
  104. foreach ($task AS $info) {
  105. if ($temp['id'] == $info['labelid']) {
  106. $info['overdue'] = Project::taskIsOverdue($info);
  107. $info['subtask'] = Base::string2array($info['subtask']);
  108. $info['follower'] = Base::string2array($info['follower']);
  109. $taskLists[] = array_merge($info, Users::username2basic($info['username']));
  110. }
  111. }
  112. $label[$index]['taskLists'] = $taskLists;
  113. $simpleLabel[] = ['id' => $temp['id'], 'title' => $temp['title']];
  114. }
  115. //
  116. return Base::retSuccess('success', [
  117. 'project' => $projectDetail,
  118. 'label' => $label,
  119. 'simpleLabel' => $simpleLabel,
  120. ]);
  121. }
  122. /**
  123. * 获取项目负责人
  124. *
  125. * @apiParam {Number} projectid 项目ID
  126. */
  127. public function leader()
  128. {
  129. $user = Users::authE();
  130. if (Base::isError($user)) {
  131. return $user;
  132. } else {
  133. $user = $user['data'];
  134. }
  135. //
  136. $projectid = trim(Request::input('projectid'));
  137. $projectDetail = Base::DBC2A(DB::table('project_lists')->select(['username'])->where('id', $projectid)->where('delete', 0)->first());
  138. if (empty($projectDetail)) {
  139. return Base::retError('项目不存在或已被删除!');
  140. }
  141. return Base::retSuccess('success', [
  142. 'username' => $projectDetail['username'],
  143. ]);
  144. }
  145. /**
  146. * 添加项目
  147. *
  148. * @apiParam {String} title 项目名称
  149. * @apiParam {Array} labels 流程,格式[流程1, 流程2]
  150. */
  151. public function add()
  152. {
  153. $user = Users::authE();
  154. if (Base::isError($user)) {
  155. return $user;
  156. } else {
  157. $user = $user['data'];
  158. }
  159. //项目名称
  160. $title = trim(Request::input('title'));
  161. if (mb_strlen($title) < 2) {
  162. return Base::retError('项目名称不可以少于2个字!');
  163. } elseif (mb_strlen($title) > 32) {
  164. return Base::retError('项目名称最多只能设置32个字!');
  165. }
  166. //流程
  167. $labels = Request::input('labels');
  168. if (!is_array($labels)) $labels = [];
  169. $insertLabels = [];
  170. $inorder = 0;
  171. foreach ($labels AS $label) {
  172. $label = trim($label);
  173. if ($label) {
  174. $insertLabels[] = [
  175. 'title' => $label,
  176. 'inorder' => $inorder++,
  177. ];
  178. }
  179. }
  180. if (empty($insertLabels)) {
  181. $insertLabels[] = [
  182. 'title' => '默认',
  183. 'inorder' => 0,
  184. ];
  185. }
  186. if (count($insertLabels) > 100) {
  187. return Base::retError(['项目流程最多不能超过%个!', 100]);
  188. }
  189. //开始创建
  190. $projectid = DB::table('project_lists')->insertGetId([
  191. 'title' => $title,
  192. 'username' => $user['username'],
  193. 'createuser' => $user['username'],
  194. 'indate' => Base::time()
  195. ]);
  196. if ($projectid) {
  197. foreach ($insertLabels AS $key => $label) {
  198. $insertLabels[$key]['projectid'] = $projectid;
  199. }
  200. DB::table('project_label')->insert($insertLabels);
  201. DB::table('project_log')->insert([
  202. 'type' => '日志',
  203. 'projectid' => $projectid,
  204. 'username' => $user['username'],
  205. 'detail' => '创建项目',
  206. 'indate' => Base::time()
  207. ]);
  208. DB::table('project_users')->insert([
  209. 'type' => '成员',
  210. 'projectid' => $projectid,
  211. 'isowner' => 1,
  212. 'username' => $user['username'],
  213. 'indate' => Base::time()
  214. ]);
  215. return Base::retSuccess('添加成功!');
  216. } else {
  217. return Base::retError('添加失败!');
  218. }
  219. }
  220. /**
  221. * 收藏项目
  222. *
  223. * @apiParam {String} act 类型
  224. * - cancel: 取消收藏
  225. * - else: 添加收藏
  226. * @apiParam {Number} projectid 项目ID
  227. *
  228. * @throws \Throwable
  229. */
  230. public function favor()
  231. {
  232. $user = Users::authE();
  233. if (Base::isError($user)) {
  234. return $user;
  235. } else {
  236. $user = $user['data'];
  237. }
  238. //
  239. $projectid = trim(Request::input('projectid'));
  240. $projectDetail = Base::DBC2A(DB::table('project_lists')->where('id', $projectid)->where('delete', 0)->first());
  241. if (empty($projectDetail)) {
  242. return Base::retError('项目不存在或已被删除!');
  243. }
  244. return DB::transaction(function () use ($projectDetail, $user) {
  245. switch (Request::input('act')) {
  246. case 'cancel': {
  247. if (DB::table('project_users')->where([
  248. 'type' => '收藏',
  249. 'projectid' => $projectDetail['id'],
  250. 'username' => $user['username'],
  251. ])->delete()) {
  252. DB::table('project_log')->insert([
  253. 'type' => '日志',
  254. 'projectid' => $projectDetail['id'],
  255. 'username' => $user['username'],
  256. 'detail' => '取消收藏',
  257. 'indate' => Base::time()
  258. ]);
  259. return Base::retSuccess('取消成功!');
  260. }
  261. return Base::retSuccess('已取消!');
  262. }
  263. default: {
  264. $row = Base::DBC2A(DB::table('project_users')->where([
  265. 'type' => '收藏',
  266. 'projectid' => $projectDetail['id'],
  267. 'username' => $user['username'],
  268. ])->lockForUpdate()->first());
  269. if (empty($row)) {
  270. DB::table('project_users')->insert([
  271. 'type' => '收藏',
  272. 'projectid' => $projectDetail['id'],
  273. 'isowner' => $projectDetail['username'] == $user['username'] ? 1 : 0,
  274. 'username' => $user['username'],
  275. 'indate' => Base::time()
  276. ]);
  277. DB::table('project_log')->insert([
  278. 'type' => '日志',
  279. 'projectid' => $projectDetail['id'],
  280. 'username' => $user['username'],
  281. 'detail' => '收藏项目',
  282. 'indate' => Base::time()
  283. ]);
  284. return Base::retSuccess('收藏成功!');
  285. }
  286. return Base::retSuccess('已收藏!');
  287. }
  288. }
  289. });
  290. }
  291. /**
  292. * 重命名项目
  293. *
  294. * @apiParam {Number} projectid 项目ID
  295. * @apiParam {String} title 项目新名称
  296. */
  297. public function rename()
  298. {
  299. $user = Users::authE();
  300. if (Base::isError($user)) {
  301. return $user;
  302. } else {
  303. $user = $user['data'];
  304. }
  305. //
  306. $projectid = trim(Request::input('projectid'));
  307. $projectDetail = Base::DBC2A(DB::table('project_lists')->where('id', $projectid)->where('delete', 0)->first());
  308. if (empty($projectDetail)) {
  309. return Base::retError('项目不存在或已被删除!');
  310. }
  311. if ($projectDetail['username'] != $user['username']) {
  312. return Base::retError('你不是项目负责人!');
  313. }
  314. //
  315. $title = trim(Request::input('title'));
  316. if (mb_strlen($title) < 2) {
  317. return Base::retError('项目名称不可以少于2个字!');
  318. } elseif (mb_strlen($title) > 32) {
  319. return Base::retError('项目名称最多只能设置32个字!');
  320. }
  321. //
  322. DB::table('project_lists')->where('id', $projectDetail['id'])->update([
  323. 'title' => $title
  324. ]);
  325. DB::table('project_log')->insert([
  326. 'type' => '日志',
  327. 'projectid' => $projectDetail['id'],
  328. 'username' => $user['username'],
  329. 'detail' => '【' . $projectDetail['title'] . '】重命名【' . $title . '】',
  330. 'indate' => Base::time()
  331. ]);
  332. //
  333. return Base::retSuccess('修改成功!');
  334. }
  335. /**
  336. * 移交项目
  337. *
  338. * @apiParam {Number} projectid 项目ID
  339. * @apiParam {String} username 项目新负责人用户名
  340. *
  341. * @throws \Throwable
  342. */
  343. public function transfer()
  344. {
  345. $user = Users::authE();
  346. if (Base::isError($user)) {
  347. return $user;
  348. } else {
  349. $user = $user['data'];
  350. }
  351. //
  352. $projectid = trim(Request::input('projectid'));
  353. $projectDetail = Base::DBC2A(DB::table('project_lists')->where('id', $projectid)->where('delete', 0)->first());
  354. if (empty($projectDetail)) {
  355. return Base::retError('项目不存在或已被删除!');
  356. }
  357. if ($projectDetail['username'] != $user['username']) {
  358. return Base::retError('你不是项目负责人!');
  359. }
  360. //
  361. $username = trim(Request::input('username'));
  362. if ($username == $projectDetail['username']) {
  363. return Base::retError('你已是项目负责人!');
  364. }
  365. $count = DB::table('users')->where('username', $username)->count();
  366. if ($count <= 0) {
  367. return Base::retError(['成员用户名(%)不存在!', $username]);
  368. }
  369. //判断是否已在项目成员内
  370. $inRes = Project::inThe($projectDetail['id'], $username);
  371. if (Base::isError($inRes)) {
  372. DB::table('project_users')->insert([
  373. 'type' => '成员',
  374. 'projectid' => $projectDetail['id'],
  375. 'isowner' => 0,
  376. 'username' => $username,
  377. 'indate' => Base::time()
  378. ]);
  379. DB::table('project_log')->insert([
  380. 'type' => '日志',
  381. 'projectid' => $projectDetail['id'],
  382. 'username' => $username,
  383. 'detail' => '自动加入项目',
  384. 'indate' => Base::time()
  385. ]);
  386. }
  387. //开始移交
  388. return DB::transaction(function () use ($user, $username, $projectDetail) {
  389. DB::table('project_lists')->where('id', $projectDetail['id'])->update([
  390. 'username' => $username
  391. ]);
  392. DB::table('project_log')->insert([
  393. 'type' => '日志',
  394. 'projectid' => $projectDetail['id'],
  395. 'username' => $user['username'],
  396. 'detail' => '【' . $projectDetail['username'] . '】移交给【' . $username . '】',
  397. 'indate' => Base::time()
  398. ]);
  399. DB::table('project_users')->where([
  400. 'projectid' => $projectDetail['id'],
  401. 'username' => $projectDetail['username'],
  402. ])->update([
  403. 'isowner' => 0
  404. ]);
  405. DB::table('project_users')->where([
  406. 'projectid' => $projectDetail['id'],
  407. 'username' => $username,
  408. ])->update([
  409. 'isowner' => 1
  410. ]);
  411. return Base::retSuccess('移交成功!');
  412. });
  413. }
  414. /**
  415. * 删除项目
  416. *
  417. * @apiParam {Number} projectid 项目ID
  418. */
  419. public function delete()
  420. {
  421. $user = Users::authE();
  422. if (Base::isError($user)) {
  423. return $user;
  424. } else {
  425. $user = $user['data'];
  426. }
  427. //
  428. $projectid = trim(Request::input('projectid'));
  429. $projectDetail = Base::DBC2A(DB::table('project_lists')->where('id', $projectid)->where('delete', 0)->first());
  430. if (empty($projectDetail)) {
  431. return Base::retError('项目不存在或已被删除!');
  432. }
  433. if ($projectDetail['username'] != $user['username']) {
  434. return Base::retError('你不是项目负责人!');
  435. }
  436. //
  437. DB::table('project_lists')->where('id', $projectDetail['id'])->update([
  438. 'delete' => 1,
  439. 'deletedate' => Base::time()
  440. ]);
  441. DB::table('project_task')->where('projectid', $projectDetail['id'])->update([
  442. 'delete' => 1,
  443. 'deletedate' => Base::time()
  444. ]);
  445. DB::table('project_files')->where('projectid', $projectDetail['id'])->update([
  446. 'delete' => 1,
  447. 'deletedate' => Base::time()
  448. ]);
  449. DB::table('project_log')->insert([
  450. 'type' => '日志',
  451. 'projectid' => $projectDetail['id'],
  452. 'username' => $user['username'],
  453. 'detail' => '删除项目',
  454. 'indate' => Base::time()
  455. ]);
  456. //
  457. return Base::retSuccess('删除成功!');
  458. }
  459. /**
  460. * 排序任务
  461. *
  462. * @apiParam {Number} projectid 项目ID
  463. * @apiParam {String} oldsort 旧排序数据
  464. * @apiParam {String} newsort 新排序数据
  465. * @apiParam {Number} label 赋值表示排序分类,否则排序任务(调整任务所属分类)
  466. */
  467. public function sort()
  468. {
  469. $user = Users::authE();
  470. if (Base::isError($user)) {
  471. return $user;
  472. } else {
  473. $user = $user['data'];
  474. }
  475. //
  476. $projectid = trim(Request::input('projectid'));
  477. $inRes = Project::inThe($projectid, $user['username']);
  478. if (Base::isError($inRes)) {
  479. return $inRes;
  480. }
  481. //
  482. $oldSort = explode(";", Request::input('oldsort'));
  483. $newSort = explode(";", Request::input('newsort'));
  484. if (count($oldSort) != count($newSort)) {
  485. return Base::retError('参数错误!');
  486. }
  487. if (intval(Request::input('label'))) {
  488. //排序分类
  489. foreach ($newSort AS $sort => $item) {
  490. list($newLabelid, $newTask) = explode(':', $item);
  491. list($oldLabelid, $oldTask) = explode(':', $oldSort[$sort]);
  492. if ($newLabelid != $oldLabelid) {
  493. DB::table('project_label')->where([
  494. 'id' => $newLabelid,
  495. 'projectid' => $projectid
  496. ])->update([
  497. 'inorder' => intval($sort)
  498. ]);
  499. }
  500. }
  501. $detail = '调整任务列表排序';
  502. $sortType = 'label';
  503. } else {
  504. //排序任务(调整任务归类)
  505. foreach ($newSort AS $sort => $item) {
  506. list($newLabelid, $newTask) = explode(':', $item);
  507. list($oldLabelid, $oldTask) = explode(':', $oldSort[$sort]);
  508. if ($newTask != $oldTask) {
  509. $newTask = explode('-', $newTask);
  510. $inorder = count($newTask);
  511. foreach ($newTask AS $taskid) {
  512. DB::table('project_task')->where([
  513. 'id' => $taskid,
  514. 'projectid' => $projectid
  515. ])->update([
  516. 'labelid' => $newLabelid,
  517. 'inorder' => $inorder
  518. ]);
  519. $inorder--;
  520. }
  521. }
  522. }
  523. $detail = '调整任务排序';
  524. $sortType = 'task';
  525. }
  526. //
  527. $row = Base::DBC2A(DB::table('project_log')->where([ 'type' => '日志', 'projectid' => $projectid ])->orderByDesc('id')->first());
  528. $continue = 1;
  529. if ($row && $row['username'] == $user['username'] && $row['indate'] + 300 > Base::time()) {
  530. $other = Base::string2array($row['other']);
  531. if ($other['sortType'] == $sortType) {
  532. $continue = intval($other['continue']) + 1;
  533. if ($continue <= 100) {
  534. DB::table('project_log')->where('id', $row['id'])->update([
  535. 'detail' => $detail . '(' . $continue . '次)',
  536. 'other' => Base::array2string([
  537. 'sortType' => $sortType,
  538. 'continue' => $continue,
  539. 'times' => $other['times'] . '|' . Base::time(),
  540. ])
  541. ]);
  542. }
  543. }
  544. }
  545. if ($continue == 1) {
  546. DB::table('project_log')->insert([
  547. 'type' => '日志',
  548. 'projectid' => $projectid,
  549. 'username' => $user['username'],
  550. 'detail' => $detail,
  551. 'indate' => Base::time(),
  552. 'other' => Base::array2string([
  553. 'sortType' => $sortType,
  554. 'continue' => $continue,
  555. 'times' => Base::time(),
  556. ])
  557. ]);
  558. }
  559. return Base::retSuccess('保存成功!');
  560. }
  561. /**
  562. * 排序任务(todo待办)
  563. *
  564. * @apiParam {String} oldsort 旧排序数据
  565. * @apiParam {String} newsort 新排序数据
  566. */
  567. public function sort__todo()
  568. {
  569. $user = Users::authE();
  570. if (Base::isError($user)) {
  571. return $user;
  572. } else {
  573. $user = $user['data'];
  574. }
  575. //
  576. $oldSort = explode(";", Request::input('oldsort'));
  577. $newSort = explode(";", Request::input('newsort'));
  578. if (count($oldSort) != count($newSort)) {
  579. return Base::retError('参数错误!');
  580. }
  581. //
  582. $levels = [];
  583. $logArray = [];
  584. $taskLevel = [];
  585. foreach ($newSort AS $sort => $item) {
  586. list($newLevel, $newTask) = explode(':', $item);
  587. list($oldLevel, $oldTask) = explode(':', $oldSort[$sort]);
  588. if ($newTask != $oldTask) {
  589. $newTask = explode('-', $newTask);
  590. $oldTask = explode('-', $oldTask);
  591. $userorder = intval(DB::table('project_task')->select('userorder')->where([
  592. 'delete' => 0,
  593. 'archived' => 0,
  594. 'level' => $newLevel,
  595. 'username' => $user['username'],
  596. ])->orderByDesc('userorder')->value('userorder'));
  597. if (count($newTask) < count($oldTask)) {
  598. $userorder--;
  599. } else {
  600. $userorder++;
  601. }
  602. foreach ($newTask AS $taskid) {
  603. $task = Base::DBC2A(DB::table('project_task')->select(['id', 'title', 'projectid', 'level', 'userorder'])->where([
  604. 'id' => $taskid,
  605. 'username' => $user['username']
  606. ])->first());
  607. $upArray = [];
  608. if ($task) {
  609. if ($task['level'] != $newLevel) {
  610. $upArray['level'] = $newLevel;
  611. $logArray[] = [
  612. 'type' => '日志',
  613. 'projectid' => $task['projectid'],
  614. 'taskid' => $task['id'],
  615. 'username' => $user['username'],
  616. 'detail' => '调整任务等级为【P' . $newLevel . '】',
  617. 'indate' => Base::time(),
  618. 'other' => Base::array2string([
  619. 'type' => 'task',
  620. 'id' => $task['id'],
  621. 'title' => $task['title'],
  622. ])
  623. ];
  624. $taskLevel[] = [
  625. 'id' => $task['id'],
  626. 'level' => $newLevel,
  627. ];
  628. }
  629. if ($task['userorder'] != $userorder) {
  630. $upArray['userorder'] = $userorder;
  631. }
  632. }
  633. if ($upArray) {
  634. DB::table('project_task')->where('id', $taskid)->update($upArray);
  635. }
  636. $userorder--;
  637. }
  638. $levels[] = $newLevel;
  639. }
  640. }
  641. if ($logArray) {
  642. DB::table('project_log')->insert($logArray);
  643. }
  644. //
  645. return Base::retSuccess('保存成功!', [
  646. 'levels' => $levels,
  647. 'taskLevel' => $taskLevel,
  648. ]);
  649. }
  650. /**
  651. * 退出项目
  652. *
  653. * @apiParam {Number} projectid 项目ID
  654. */
  655. public function out()
  656. {
  657. $user = Users::authE();
  658. if (Base::isError($user)) {
  659. return $user;
  660. } else {
  661. $user = $user['data'];
  662. }
  663. //
  664. $projectid = trim(Request::input('projectid'));
  665. $projectDetail = Base::DBC2A(DB::table('project_lists')->where('id', $projectid)->where('delete', 0)->first());
  666. if (empty($projectDetail)) {
  667. return Base::retError('项目不存在或已被删除!');
  668. }
  669. if ($projectDetail['username'] == $user['username']) {
  670. return Base::retError('你是项目负责人,不可退出项目!');
  671. }
  672. $inRes = Project::inThe($projectid, $user['username']);
  673. if (Base::isError($inRes)) {
  674. return $inRes;
  675. }
  676. //
  677. DB::table('project_users')->where([
  678. 'type' => '成员',
  679. 'projectid' => $projectDetail['id'],
  680. 'username' => $user['username'],
  681. ])->delete();
  682. DB::table('project_log')->insert([
  683. 'type' => '日志',
  684. 'projectid' => $projectDetail['id'],
  685. 'username' => $user['username'],
  686. 'detail' => '退出项目',
  687. 'indate' => Base::time()
  688. ]);
  689. //
  690. return Base::retSuccess('退出项目成功!');
  691. }
  692. /**
  693. * 项目成员-列表
  694. *
  695. * @apiParam {Number} projectid 项目ID
  696. * @apiParam {Number} [page] 当前页,默认:1
  697. * @apiParam {Number} [pagesize] 每页显示数量,默认:20,最大:100
  698. */
  699. public function users__lists()
  700. {
  701. $user = Users::authE();
  702. if (Base::isError($user)) {
  703. return $user;
  704. } else {
  705. $user = $user['data'];
  706. }
  707. //
  708. $projectid = intval(Request::input('projectid'));
  709. $inRes = Project::inThe($projectid, $user['username']);
  710. if (Base::isError($inRes)) {
  711. return $inRes;
  712. }
  713. //
  714. $lists = DB::table('project_lists')
  715. ->join('project_users', 'project_lists.id', '=', 'project_users.projectid')
  716. ->select(['project_lists.title', 'project_users.*'])
  717. ->where([
  718. ['project_lists.id', $projectid],
  719. ['project_lists.delete', 0],
  720. ['project_users.type', '成员'],
  721. ])
  722. ->orderByDesc('project_users.isowner')->orderByDesc('project_users.id')->paginate(Min(Max(Base::nullShow(Request::input('pagesize'), 10), 1), 100));
  723. $lists = Base::getPageList($lists);
  724. if ($lists['total'] == 0) {
  725. return Base::retError('未找到任何相关的成员');
  726. }
  727. foreach ($lists['lists'] AS $key => $projectDetail) {
  728. $userInfo = Users::username2basic($projectDetail['username']);
  729. $lists['lists'][$key]['userimg'] = $userInfo['userimg'];
  730. $lists['lists'][$key]['nickname'] = $userInfo['nickname'];
  731. $lists['lists'][$key]['profession'] = $userInfo['profession'];
  732. }
  733. return Base::retSuccess('success', $lists);
  734. }
  735. /**
  736. * 项目成员-添加、删除
  737. *
  738. * @apiParam {String} act
  739. * - delete: 删除成员
  740. * - else: 添加成员
  741. * @apiParam {Number} projectid 项目ID
  742. * @apiParam {Array|String} username 用户名(或用户名组)
  743. */
  744. public function users__join()
  745. {
  746. $user = Users::authE();
  747. if (Base::isError($user)) {
  748. return $user;
  749. } else {
  750. $user = $user['data'];
  751. }
  752. //
  753. $projectid = trim(Request::input('projectid'));
  754. $projectDetail = Base::DBC2A(DB::table('project_lists')->where('id', $projectid)->where('delete', 0)->first());
  755. if (empty($projectDetail)) {
  756. return Base::retError('项目不存在或已被删除!');
  757. }
  758. $usernames = Request::input('username');
  759. if (empty($usernames)) {
  760. return Base::retError('参数错误!');
  761. }
  762. if (!is_array($usernames)) {
  763. if (Base::strExists($usernames, ',')) {
  764. $usernames = explode(',', $usernames);
  765. } else {
  766. $usernames = [$usernames];
  767. }
  768. }
  769. //
  770. $logArray = [];
  771. foreach ($usernames AS $username) {
  772. $inRes = Project::inThe($projectid, $username);
  773. switch (Request::input('act')) {
  774. case 'delete': {
  775. if (!Base::isError($inRes) && $projectDetail['username'] != $username) {
  776. DB::table('project_users')->where([
  777. 'type' => '成员',
  778. 'projectid' => $projectid,
  779. 'username' => $username,
  780. ])->delete();
  781. $logArray[] = [
  782. 'type' => '日志',
  783. 'projectid' => $projectDetail['id'],
  784. 'username' => $user['username'],
  785. 'detail' => '将成员【' . $username . '】移出项目',
  786. 'indate' => Base::time()
  787. ];
  788. }
  789. break;
  790. }
  791. default: {
  792. if (Base::isError($inRes)) {
  793. DB::table('project_users')->insert([
  794. 'type' => '成员',
  795. 'projectid' => $projectid,
  796. 'isowner' => 0,
  797. 'username' => $username,
  798. 'indate' => Base::time()
  799. ]);
  800. $logArray[] = [
  801. 'type' => '日志',
  802. 'projectid' => $projectDetail['id'],
  803. 'username' => $username,
  804. 'detail' => '将成员【' . $username . '】加入项目',
  805. 'indate' => Base::time()
  806. ];
  807. }
  808. break;
  809. }
  810. }
  811. }
  812. return Base::retSuccess('操作完成!');
  813. }
  814. /**
  815. * 项目子分类-添加分类
  816. *
  817. * @apiParam {Number} projectid 项目ID
  818. * @apiParam {String} title 分类名称
  819. */
  820. public function label__add()
  821. {
  822. $user = Users::authE();
  823. if (Base::isError($user)) {
  824. return $user;
  825. } else {
  826. $user = $user['data'];
  827. }
  828. //
  829. $projectid = trim(Request::input('projectid'));
  830. $inRes = Project::inThe($projectid, $user['username']);
  831. if (Base::isError($inRes)) {
  832. return $inRes;
  833. }
  834. //
  835. $title = trim(Request::input('title'));
  836. if (empty($title)) {
  837. return Base::retError('列表名称不能为空!');
  838. } elseif (mb_strlen($title) > 32) {
  839. return Base::retError('列表名称最多只能设置32个字!');
  840. }
  841. //
  842. $count = DB::table('project_label')->where('projectid', $projectid)->where('title', $title)->count();
  843. if ($count > 0) {
  844. return Base::retError('列表名称已存在!');
  845. }
  846. if (DB::table('project_label')->where('projectid', $projectid)->count() + 1 >= 100) {
  847. return Base::retError(['列表最多不能超过%个!', 100]);
  848. }
  849. //
  850. $id = DB::table('project_label')->insertGetId([
  851. 'projectid' => $projectid,
  852. 'title' => $title,
  853. 'inorder' => intval(DB::table('project_label')->where('projectid', $projectid)->orderByDesc('inorder')->value('inorder')) + 1,
  854. ]);
  855. if (empty($id)) {
  856. return Base::retError('系统繁忙,请稍后再试!');
  857. }
  858. DB::table('project_log')->insert([
  859. 'type' => '日志',
  860. 'projectid' => $projectid,
  861. 'username' => $user['username'],
  862. 'detail' => '添加任务列表【' . $title . '】',
  863. 'indate' => Base::time()
  864. ]);
  865. //
  866. $row = Base::DBC2A(DB::table('project_label')->where('id', $id)->first());
  867. $row['taskLists'] = [];
  868. return Base::retSuccess('添加成功!', $row);
  869. }
  870. /**
  871. * 项目子分类-重命名分类
  872. *
  873. * @apiParam {Number} projectid 项目ID
  874. * @apiParam {Number} labelid 分类ID
  875. * @apiParam {String} title 新分类名称
  876. */
  877. public function label__rename()
  878. {
  879. $user = Users::authE();
  880. if (Base::isError($user)) {
  881. return $user;
  882. } else {
  883. $user = $user['data'];
  884. }
  885. //
  886. $projectid = trim(Request::input('projectid'));
  887. $inRes = Project::inThe($projectid, $user['username']);
  888. if (Base::isError($inRes)) {
  889. return $inRes;
  890. }
  891. //
  892. $title = trim(Request::input('title'));
  893. if (empty($title)) {
  894. return Base::retError('列表名称不能为空!');
  895. } elseif (mb_strlen($title) > 32) {
  896. return Base::retError('列表名称最多只能设置32个字!');
  897. }
  898. //
  899. $labelid = intval(Request::input('labelid'));
  900. $count = DB::table('project_label')->where('id', '!=', $labelid)->where('projectid', $projectid)->where('title', $title)->count();
  901. if ($count > 0) {
  902. return Base::retError('列表名称已存在!');
  903. }
  904. //
  905. $labelDetail = Base::DBC2A(DB::table('project_label')->where('id', $labelid)->where('projectid', $projectid)->first());
  906. if (empty($labelDetail)) {
  907. return Base::retError('列表不存在或已被删除!');
  908. }
  909. //
  910. if (DB::table('project_label')->where('id', $labelDetail['id'])->update([ 'title' => $title ])) {
  911. DB::table('project_log')->insert([
  912. 'type' => '日志',
  913. 'projectid' => $projectid,
  914. 'username' => $user['username'],
  915. 'detail' => '任务列表【' . $labelDetail['title'] . '】重命名【' . $title . '】',
  916. 'indate' => Base::time()
  917. ]);
  918. }
  919. //
  920. return Base::retSuccess('修改成功!');
  921. }
  922. /**
  923. * 项目子分类-删除分类
  924. *
  925. * @apiParam {Number} projectid 项目ID
  926. * @apiParam {Number} labelid 分类ID
  927. *
  928. * @throws \Throwable
  929. */
  930. public function label__delete()
  931. {
  932. $user = Users::authE();
  933. if (Base::isError($user)) {
  934. return $user;
  935. } else {
  936. $user = $user['data'];
  937. }
  938. //
  939. $projectid = trim(Request::input('projectid'));
  940. $inRes = Project::inThe($projectid, $user['username']);
  941. if (Base::isError($inRes)) {
  942. return $inRes;
  943. }
  944. //
  945. $labelid = intval(Request::input('labelid'));
  946. $labelDetail = Base::DBC2A(DB::table('project_label')->where('id', $labelid)->where('projectid', $projectid)->first());
  947. if (empty($labelDetail)) {
  948. return Base::retError('列表不存在或已被删除!');
  949. }
  950. //
  951. return DB::transaction(function () use ($user, $projectid, $labelDetail) {
  952. $taskLists = Base::DBC2A(DB::table('project_task')->where('labelid', $labelDetail['id'])->get());
  953. $logArray = [];
  954. foreach ($taskLists AS $task) {
  955. $logArray[] = [
  956. 'type' => '日志',
  957. 'projectid' => $projectid,
  958. 'taskid' => $task['id'],
  959. 'username' => $user['username'],
  960. 'detail' => '删除列表任务',
  961. 'indate' => Base::time(),
  962. 'other' => Base::array2string([
  963. 'type' => 'task',
  964. 'id' => $task['id'],
  965. 'title' => $task['title'],
  966. ])
  967. ];
  968. }
  969. $logArray[] = [
  970. 'type' => '日志',
  971. 'projectid' => $projectid,
  972. 'taskid' => 0,
  973. 'username' => $user['username'],
  974. 'detail' => '删除任务列表【' . $labelDetail['title'] . '】',
  975. 'indate' => Base::time()
  976. ];
  977. DB::table('project_task')->where('labelid', $labelDetail['id'])->update([
  978. 'delete' => 1,
  979. 'deletedate' => Base::time()
  980. ]);
  981. DB::table('project_label')->where('id', $labelDetail['id'])->delete();
  982. DB::table('project_log')->insert($logArray);
  983. //
  984. return Base::retSuccess('删除成功!');
  985. });
  986. }
  987. /**
  988. * 项目任务-列表
  989. *
  990. * @apiParam {Number} [projectid] 项目ID
  991. * @apiParam {Number} [taskid] 任务ID (1、填写此参数时projectid强制为此任务的projectid;2、赋值返回详细数据,不返回列表数据)
  992. * @apiParam {Number} [labelid] 项目子分类ID
  993. * @apiParam {String} [username] 负责人用户名(如果项目ID为空时此参数无效只获取自己的任务)
  994. * @apiParam {Number} [level] 任务等级(1~4)
  995. * @apiParam {String} [archived] 任务是否归档
  996. * - 未归档 (默认)
  997. * - 已归档
  998. * - 全部
  999. * @apiParam {String} [type] 任务类型
  1000. * - 全部(默认)
  1001. * - 未完成
  1002. * - 已超期
  1003. * - 已完成
  1004. * @apiParam {Number} [createuser] 是否仅获取自己创建的项目(1:是;赋值时projectid和username不强制)
  1005. * @apiParam {Number} [attention] 是否仅获取关注数据(1:是;赋值时projectid和username不强制)
  1006. * @apiParam {Number} [statistics] 是否获取统计数据(1:获取)
  1007. * @apiParam {String} [startdate] 任务开始时间,格式:YYYY-MM-DD
  1008. * @apiParam {String} [enddate] 任务结束时间,格式:YYYY-MM-DD
  1009. *
  1010. * @apiParam {Object} [sorts] 排序方式,格式:{key:'', order:''}
  1011. * - key: title|labelid|enddate|username|level|indate|type|inorder(默认)|userorder
  1012. * - order: asc|desc
  1013. * - 【archived=已归档】或【startdate和enddate赋值】时无效
  1014. *
  1015. * @apiParam {Number} [page] 当前页,默认:1
  1016. * @apiParam {Number} [pagesize] 每页显示数量,默认:20,最大:100
  1017. */
  1018. public function task__lists()
  1019. {
  1020. $user = Users::authE();
  1021. if (Base::isError($user)) {
  1022. return $user;
  1023. } else {
  1024. $user = $user['data'];
  1025. }
  1026. //
  1027. $taskid = intval(Request::input('taskid'));
  1028. if ($taskid > 0) {
  1029. $projectid = intval(DB::table('project_task')->where('id', $taskid)->value('projectid'));
  1030. } else {
  1031. $projectid = intval(Request::input('projectid'));
  1032. }
  1033. //
  1034. if ($projectid > 0) {
  1035. $inRes = Project::inThe($projectid, $user['username']);
  1036. if (Base::isError($inRes)) {
  1037. return $inRes;
  1038. }
  1039. }
  1040. //
  1041. $orderBy = '`inorder` DESC,`id` DESC';
  1042. $sorts = Base::json2array(Request::input('sorts'));
  1043. if (in_array($sorts['order'], ['asc', 'desc'])) {
  1044. switch ($sorts['key']) {
  1045. case 'title':
  1046. case 'labelid':
  1047. case 'enddate':
  1048. case 'username':
  1049. case 'level':
  1050. case 'indate':
  1051. case 'inorder':
  1052. case 'userorder':
  1053. $orderBy = '`' . $sorts['key'] . '` ' . $sorts['order'] . ',`id` DESC';
  1054. break;
  1055. case 'type':
  1056. $orderBy = 'CASE WHEN `complete`= 0 AND `enddate` BETWEEN 1 AND ' . Base::time() . ' THEN 0 ELSE 1 END ' . $sorts['order'] . ', `complete` ' . $sorts['order'] . ',`id` DESC';
  1057. break;
  1058. }
  1059. }
  1060. //
  1061. $selectArray = ['project_task.*'];
  1062. $whereRaw = null;
  1063. $whereFunc = null;
  1064. $whereArray = [];
  1065. $whereArray[] = ['project_task.delete', '=', 0];
  1066. if (intval(Request::input('createuser')) === 1) {
  1067. $whereArray[] = ['project_task.createuser', '=', $user['username']];
  1068. if ($projectid > 0) {
  1069. $whereArray[] = ['project_lists.id', '=', $projectid];
  1070. }
  1071. if (trim(Request::input('username'))) {
  1072. $whereArray[] = ['project_task.username', '=', trim(Request::input('username'))];
  1073. }
  1074. } else if (intval(Request::input('attention')) === 1) {
  1075. if ($projectid > 0) {
  1076. $whereArray[] = ['project_lists.id', '=', $projectid];
  1077. }
  1078. if (trim(Request::input('username'))) {
  1079. $whereArray[] = ['project_task.username', '=', trim(Request::input('username'))];
  1080. }
  1081. } else {
  1082. if ($projectid > 0) {
  1083. $whereArray[] = ['project_lists.id', '=', $projectid];
  1084. if (trim(Request::input('username'))) {
  1085. $whereArray[] = ['project_task.username', '=', trim(Request::input('username'))];
  1086. }
  1087. } else {
  1088. $whereArray[] = ['project_task.username', '=', $user['username']];
  1089. }
  1090. }
  1091. if ($taskid > 0) {
  1092. $whereArray[] = ['project_task.id', '=', intval(Request::input('taskid'))];
  1093. }
  1094. if (intval(Request::input('labelid')) > 0) {
  1095. $whereArray[] = ['project_task.labelid', '=', intval(Request::input('labelid'))];
  1096. }
  1097. if (intval(Request::input('level')) > 0) {
  1098. $whereArray[] = ['project_task.level', '=', intval(Request::input('level'))];
  1099. }
  1100. $archived = trim(Request::input('archived'));
  1101. if (empty($archived)) $archived = "未归档";
  1102. switch ($archived) {
  1103. case '已归档':
  1104. $whereArray[] = ['project_task.archived', '=', 1];
  1105. $orderBy = '`archiveddate` DESC';
  1106. break;
  1107. case '未归档':
  1108. $whereArray[] = ['project_task.archived', '=', 0];
  1109. break;
  1110. }
  1111. $type = trim(Request::input('type'));
  1112. switch ($type) {
  1113. case '未完成':
  1114. $whereArray[] = ['project_task.complete', '=', 0];
  1115. break;
  1116. case '已超期':
  1117. $whereArray[] = ['project_task.complete', '=', 0];
  1118. $whereArray[] = ['project_task.enddate', '>', 0];
  1119. $whereArray[] = ['project_task.enddate', '<=', Base::time()];
  1120. break;
  1121. case '已完成':
  1122. $whereArray[] = ['project_task.complete', '=', 1];
  1123. break;
  1124. }
  1125. $startdate = trim(Request::input('startdate'));
  1126. $enddate = trim(Request::input('enddate'));
  1127. if (Base::isDate($startdate) || Base::isDate($enddate)) {
  1128. $startdate = strtotime($startdate . ' 00:00:00');
  1129. $enddate = strtotime($enddate . ' 23:59:59');
  1130. $whereRaw.= $whereRaw ? ' AND ' : '';
  1131. $whereRaw.= "((`startdate` >= " . $startdate . " OR `startdate` = 0) AND (`enddate` <= " . $enddate . " OR `enddate` = 0))";
  1132. $orderBy = '`startdate` DESC';
  1133. }
  1134. //
  1135. $builder = DB::table('project_task');
  1136. if ($projectid > 0) {
  1137. $builder->join('project_lists', 'project_lists.id', '=', 'project_task.projectid');
  1138. }
  1139. if (intval(Request::input('attention')) === 1) {
  1140. $builder->join('project_users', 'project_users.taskid', '=', 'project_task.id');
  1141. $builder->where([
  1142. ['project_users.type', '=', '关注'],
  1143. ['project_users.username', '=', $user['username']],
  1144. ]);
  1145. $selectArray[] = 'project_users.indate AS attentiondate';
  1146. }
  1147. if ($whereRaw) {
  1148. $builder->whereRaw($whereRaw);
  1149. }
  1150. $lists = $builder->select($selectArray)
  1151. ->where($whereArray)
  1152. ->orderByRaw($orderBy)
  1153. ->paginate(Min(Max(Base::nullShow(Request::input('pagesize'), 10), 1), 100));
  1154. $lists = Base::getPageList($lists, $taskid > 0 ? false : true);
  1155. if (intval(Request::input('statistics')) == 1) {
  1156. $lists['statistics_unfinished'] = $type === '未完成' ? $lists['total'] : DB::table('project_task')->where('projectid', $projectid)->where('delete', 0)->where('archived', 0)->where('complete', 0)->count();
  1157. $lists['statistics_overdue'] = $type === '已超期' ? $lists['total'] : DB::table('project_task')->where('projectid', $projectid)->where('delete', 0)->where('archived', 0)->where('complete', 0)->whereBetween('enddate', [1, Base::time()])->count();
  1158. $lists['statistics_complete'] = $type === '已完成' ? $lists['total'] : DB::table('project_task')->where('projectid', $projectid)->where('delete', 0)->where('archived', 0)->where('complete', 1)->count();
  1159. }
  1160. if ($lists['total'] == 0) {
  1161. return Base::retError('未找到任何相关的任务!', $lists);
  1162. }
  1163. foreach ($lists['lists'] AS $key => $info) {
  1164. $info['overdue'] = Project::taskIsOverdue($info);
  1165. $info['subtask'] = Base::string2array($info['subtask']);
  1166. $info['follower'] = Base::string2array($info['follower']);
  1167. $lists['lists'][$key] = array_merge($info, Users::username2basic($info['username']));
  1168. }
  1169. if ($taskid > 0) {
  1170. if (count($lists['lists']) == 0) {
  1171. return Base::retError('未能找到此任务或无法管理此任务!');
  1172. }
  1173. $data = $lists['lists'][0];
  1174. $data['projectTitle'] = $data['projectid'] > 0 ? DB::table('project_lists')->where('id', $data['projectid'])->value('title') : '';
  1175. return Base::retSuccess('success', $data);
  1176. } else {
  1177. return Base::retSuccess('success', $lists);
  1178. }
  1179. }
  1180. /**
  1181. * 项目任务-获取数量
  1182. *
  1183. * @apiParam {Number} [level] 任务等级(1~4,留空获取所有)
  1184. */
  1185. public function task__levelnum()
  1186. {
  1187. $user = Users::authE();
  1188. if (Base::isError($user)) {
  1189. return $user;
  1190. } else {
  1191. $user = $user['data'];
  1192. }
  1193. //
  1194. $whereArray = [];
  1195. $whereArray[] = ['project_task.delete', '=', 0];
  1196. $whereArray[] = ['project_task.username', '=', $user['username']];
  1197. $whereArray[] = ['project_task.archived', '=', 0];
  1198. $array = [
  1199. 'level_1' => 0,
  1200. 'level_2' => 0,
  1201. 'level_3' => 0,
  1202. 'level_4' => 0,
  1203. ];
  1204. if (intval(Request::input('level')) > 0) {
  1205. $array = [
  1206. 'level_1' => 0,
  1207. ];
  1208. }
  1209. foreach ($array AS $key => $val) {
  1210. $level = intval(Base::leftDelete($key, 'level_'));
  1211. $array[$key] = DB::table('project_task')->where($whereArray)->where('level', $level)->count();
  1212. }
  1213. return Base::retSuccess('success', $array);
  1214. }
  1215. /**
  1216. * 项目任务-添加任务
  1217. *
  1218. * @apiParam {String} title 任务标题
  1219. * @apiParam {Number} [projectid] 项目ID
  1220. * @apiParam {Number} [labelid] 项目子分类ID
  1221. * @apiParam {Number} [level] 任务紧急级别(1~4,默认:2)
  1222. * @apiParam {String} [username] 任务负责人用户名(如果项目ID为空时此参数无效,负责人为自己)
  1223. *
  1224. * @throws \Throwable
  1225. */
  1226. public function task__add()
  1227. {
  1228. $user = Users::authE();
  1229. if (Base::isError($user)) {
  1230. return $user;
  1231. } else {
  1232. $user = $user['data'];
  1233. }
  1234. //
  1235. $projectid = intval(Request::input('projectid'));
  1236. $labelid = intval(Request::input('labelid'));
  1237. if ($projectid > 0) {
  1238. $projectDetail = Base::DBC2A(DB::table('project_lists')->where('id', $projectid)->where('delete', 0)->first());
  1239. if (empty($projectDetail)) {
  1240. return Base::retError('项目不存在或已被删除!');
  1241. }
  1242. //
  1243. $labelDetail = Base::DBC2A(DB::table('project_label')->where('id', $labelid)->where('projectid', $projectid)->first());
  1244. if (empty($labelDetail)) {
  1245. return Base::retError('项目子分类不存在或已被删除!');
  1246. }
  1247. //
  1248. $inRes = Project::inThe($projectid, $user['username']);
  1249. if (Base::isError($inRes)) {
  1250. return $inRes;
  1251. }
  1252. //
  1253. $username = trim(Request::input('username'));
  1254. if (empty($username)) {
  1255. $username = $user['username'];
  1256. }
  1257. if ($username != $user['username']) {
  1258. $inRes = Project::inThe($projectid, $username);
  1259. if (Base::isError($inRes)) {
  1260. return Base::retError('负责人不在项目成员内!');
  1261. }
  1262. }
  1263. } else {
  1264. $username = $user['username'];
  1265. }
  1266. //
  1267. $title = trim(Request::input('title'));
  1268. if (empty($title)) {
  1269. return Base::retError('任务标题不能为空!');
  1270. } elseif (mb_strlen($title) > 255) {
  1271. return Base::retError('任务标题最多只能设置255个字!');
  1272. }
  1273. //
  1274. $level = max(1, min(4, intval(Request::input('level'))));
  1275. $inArray = [
  1276. 'projectid' => $projectid,
  1277. 'labelid' => $labelid,
  1278. 'createuser' => $user['username'],
  1279. 'username' => $username,
  1280. 'title' => $title,
  1281. 'level' => $level,
  1282. 'inorder' => empty($projectid) ? 0 : intval(DB::table('project_task')->where('projectid', $projectid)->orderByDesc('inorder')->value('inorder')) + 1,
  1283. 'userorder' => intval(DB::table('project_task')->where('username', $user['username'])->where('level', $level)->orderByDesc('userorder')->value('userorder')) + 1,
  1284. 'indate' => Base::time(),
  1285. 'startdate' => Base::time(),
  1286. 'subtask' => Base::array2string([]),
  1287. 'follower' => Base::array2string([]),
  1288. ];
  1289. return DB::transaction(function () use ($inArray) {
  1290. $taskid = DB::table('project_task')->insertGetId($inArray);
  1291. if (empty($taskid)) {
  1292. return Base::retError('系统繁忙,请稍后再试!');
  1293. }
  1294. DB::table('project_log')->insert([
  1295. 'type' => '日志',
  1296. 'projectid' => $inArray['projectid'],
  1297. 'taskid' => $taskid,
  1298. 'username' => $inArray['createuser'],
  1299. 'detail' => '添加任务',
  1300. 'indate' => Base::time(),
  1301. 'other' => Base::array2string([
  1302. 'type' => 'task',
  1303. 'id' => $taskid,
  1304. 'title' => $inArray['title'],
  1305. ])
  1306. ]);
  1307. Project::updateNum($inArray['projectid']);
  1308. //
  1309. $task = Base::DBC2A(DB::table('project_task')->where('id', $taskid)->first());
  1310. $task['overdue'] = Project::taskIsOverdue($task);
  1311. $task['subtask'] = Base::string2array($task['subtask']);
  1312. $task['follower'] = Base::string2array($task['follower']);
  1313. $task = array_merge($task, Users::username2basic($task['username']));
  1314. return Base::retSuccess('添加成功!', $task);
  1315. });
  1316. }
  1317. /**
  1318. * 项目任务-修改
  1319. *
  1320. * @apiParam {Number} taskid 任务ID
  1321. * @apiParam {String} act 修改字段|操作类型
  1322. * - title: 标题
  1323. * - desc: 描述
  1324. * - level: 优先级
  1325. * - username: 负责人
  1326. * - plannedtime: 设置计划时间
  1327. * - unplannedtime: 取消计划时间
  1328. * - complete: 标记完成
  1329. * - unfinished: 标记未完成
  1330. * - archived: 归档
  1331. * - unarchived: 取消归档
  1332. * - delete: 删除任务
  1333. * - comment: 评论
  1334. * - attention: 添加关注
  1335. * @apiParam {String} [content] 内容数据
  1336. *
  1337. * @throws \Throwable
  1338. */
  1339. public function task__edit()
  1340. {
  1341. $user = Users::authE();
  1342. if (Base::isError($user)) {
  1343. return $user;
  1344. } else {
  1345. $user = $user['data'];
  1346. }
  1347. //
  1348. $act = trim(Request::input('act'));
  1349. $taskid = intval(Request::input('taskid'));
  1350. $task = Base::DBC2A(DB::table('project_task')
  1351. ->where([
  1352. ['delete', '=', 0],
  1353. ['id', '=', $taskid],
  1354. ])
  1355. ->first());
  1356. if (empty($task)) {
  1357. return Base::retError('任务不存在!');
  1358. }
  1359. if ($task['projectid'] > 0) {
  1360. $inRes = Project::inThe($task['projectid'], $user['username']);
  1361. if (Base::isError($inRes)) {
  1362. return $inRes;
  1363. }
  1364. if (!$inRes['data']['isowner']
  1365. && $task['username'] != $user['username']
  1366. && !in_array($act, ['comment', 'attention'])) {
  1367. return Base::retError('此操作只允许项目管理员或者任务负责人!');
  1368. }
  1369. } else {
  1370. if ($task['username'] != $user['username']) {
  1371. return Base::retError('此操作只允许任务负责人!');
  1372. }
  1373. }
  1374. //
  1375. $content = trim(Request::input('content'));
  1376. $message = "";
  1377. $upArray = [];
  1378. $logArray = [];
  1379. switch ($act) {
  1380. /**
  1381. * 修改标题
  1382. */
  1383. case 'title': {
  1384. if ($content == $task['title']) {
  1385. return Base::retError('标题未做改变!');
  1386. }
  1387. $upArray['title'] = $content;
  1388. $logArray[] = [
  1389. 'type' => '日志',
  1390. 'projectid' => $task['projectid'],
  1391. 'taskid' => $task['id'],
  1392. 'username' => $user['username'],
  1393. 'detail' => '修改任务标题',
  1394. 'indate' => Base::time(),
  1395. 'other' => Base::array2string([
  1396. 'type' => 'task',
  1397. 'id' => $task['id'],
  1398. 'title' => $content,
  1399. 'old_title' => $task['title'],
  1400. ])
  1401. ];
  1402. break;
  1403. }
  1404. /**
  1405. * 修改描述
  1406. */
  1407. case 'desc': {
  1408. if ($content == $task['desc']) {
  1409. return Base::retError('描述未做改变!');
  1410. }
  1411. $upArray['desc'] = $content;
  1412. $logArray[] = [
  1413. 'type' => '日志',
  1414. 'projectid' => $task['projectid'],
  1415. 'taskid' => $task['id'],
  1416. 'username' => $user['username'],
  1417. 'detail' => '修改任务描述',
  1418. 'indate' => Base::time(),
  1419. 'other' => Base::array2string([
  1420. 'type' => 'task',
  1421. 'id' => $task['id'],
  1422. 'title' => $task['title'],
  1423. 'old_desc' => $task['desc'],
  1424. ])
  1425. ];
  1426. break;
  1427. }
  1428. /**
  1429. * 调整任务等级
  1430. */
  1431. case 'level': {
  1432. $content = intval($content);
  1433. if ($content == $task['level']) {
  1434. return Base::retError('优先级未做改变!');
  1435. }
  1436. if ($content > 4 || $content < 1) {
  1437. return Base::retError('优先级参数错误!');
  1438. }
  1439. $upArray['level'] = $content;
  1440. $logArray[] = [
  1441. 'type' => '日志',
  1442. 'projectid' => $task['projectid'],
  1443. 'taskid' => $task['id'],
  1444. 'username' => $user['username'],
  1445. 'detail' => '调整任务等级为【P' . $content . '】',
  1446. 'indate' => Base::time(),
  1447. 'other' => Base::array2string([
  1448. 'type' => 'task',
  1449. 'id' => $task['id'],
  1450. 'title' => $task['title'],
  1451. 'old_level' => $task['level'],
  1452. ])
  1453. ];
  1454. break;
  1455. }
  1456. /**
  1457. * 修改任务负责人
  1458. */
  1459. case 'username': {
  1460. if ($content == $task['username']) {
  1461. return Base::retError('负责人未做改变!');
  1462. }
  1463. if ($task['projectid'] > 0) {
  1464. $inRes = Project::inThe($task['projectid'], $content);
  1465. if (Base::isError($inRes)) {
  1466. return Base::retError(['%不在成员列表内!', $content]);
  1467. }
  1468. }
  1469. $upArray['username'] = $content;
  1470. $logArray[] = [
  1471. 'type' => '日志',
  1472. 'projectid' => $task['projectid'],
  1473. 'taskid' => $task['id'],
  1474. 'username' => $user['username'],
  1475. 'detail' => '修改负责人',
  1476. 'indate' => Base::time(),
  1477. 'other' => Base::array2string([
  1478. 'type' => 'task',
  1479. 'id' => $task['id'],
  1480. 'title' => $task['title'],
  1481. 'old_username' => $task['username'],
  1482. ])
  1483. ];
  1484. break;
  1485. }
  1486. /**
  1487. * 修改计划时间
  1488. */
  1489. case 'plannedtime': {
  1490. list($startdate, $enddate) = explode(",", $content);
  1491. if (!Base::isDate($startdate) || !Base::isDate($enddate)) {
  1492. return Base::retError('计划时间参数错误!');
  1493. }
  1494. $startdate = strtotime($startdate);
  1495. $enddate = strtotime($enddate);
  1496. if ($startdate == $task['startdate'] && $enddate == $task['enddate']) {
  1497. return Base::retError('与原计划时间一致!');
  1498. }
  1499. $upArray['startdate'] = $startdate;
  1500. $upArray['enddate'] = $enddate;
  1501. $logArray[] = [
  1502. 'type' => '日志',
  1503. 'projectid' => $task['projectid'],
  1504. 'taskid' => $task['id'],
  1505. 'username' => $user['username'],
  1506. 'detail' => '设置计划时间',
  1507. 'indate' => Base::time(),
  1508. 'other' => Base::array2string([
  1509. 'type' => 'task',
  1510. 'id' => $task['id'],
  1511. 'title' => $task['title'],
  1512. 'old_startdate' => $task['startdate'],
  1513. 'old_enddate' => $task['enddate'],
  1514. ])
  1515. ];
  1516. break;
  1517. }
  1518. /**
  1519. * 取消计划时间
  1520. */
  1521. case 'unplannedtime': {
  1522. $startdate = 0;
  1523. $enddate = 0;
  1524. if ($startdate == $task['startdate'] && $enddate == $task['enddate']) {
  1525. return Base::retError('与原计划时间一致!');
  1526. }
  1527. $upArray['startdate'] = $startdate;
  1528. $upArray['enddate'] = $enddate;
  1529. $logArray[] = [
  1530. 'type' => '日志',
  1531. 'projectid' => $task['projectid'],
  1532. 'taskid' => $task['id'],
  1533. 'username' => $user['username'],
  1534. 'detail' => '取消计划时间',
  1535. 'indate' => Base::time(),
  1536. 'other' => Base::array2string([
  1537. 'type' => 'task',
  1538. 'id' => $task['id'],
  1539. 'title' => $task['title'],
  1540. 'old_startdate' => $task['startdate'],
  1541. 'old_enddate' => $task['enddate'],
  1542. ])
  1543. ];
  1544. break;
  1545. }
  1546. /**
  1547. * 标记完成
  1548. */
  1549. case 'complete': {
  1550. if ($task['complete'] == 1) {
  1551. return Base::retError('任务已标记完成,请勿重复操作!');
  1552. }
  1553. $upArray['complete'] = 1;
  1554. $upArray['completedate'] = Base::time();
  1555. $logArray[] = [
  1556. 'type' => '日志',
  1557. 'projectid' => $task['projectid'],
  1558. 'taskid' => $task['id'],
  1559. 'username' => $user['username'],
  1560. 'detail' => '标记已完成',
  1561. 'indate' => Base::time(),
  1562. 'other' => Base::array2string([
  1563. 'type' => 'task',
  1564. 'id' => $task['id'],
  1565. 'title' => $task['title'],
  1566. ])
  1567. ];
  1568. break;
  1569. }
  1570. /**
  1571. * 标记未完成
  1572. */
  1573. case 'unfinished': {
  1574. if ($task['complete'] == 0) {
  1575. return Base::retError('任务未完成,无法标记未完成!');
  1576. }
  1577. $upArray['complete'] = 0;
  1578. $logArray[] = [
  1579. 'type' => '日志',
  1580. 'projectid' => $task['projectid'],
  1581. 'taskid' => $task['id'],
  1582. 'username' => $user['username'],
  1583. 'detail' => '标记未完成',
  1584. 'indate' => Base::time(),
  1585. 'other' => Base::array2string([
  1586. 'type' => 'task',
  1587. 'id' => $task['id'],
  1588. 'title' => $task['title'],
  1589. ])
  1590. ];
  1591. break;
  1592. }
  1593. /**
  1594. * 归档
  1595. */
  1596. case 'archived': {
  1597. if ($task['archived'] == 1) {
  1598. return Base::retError('任务已经归档,请勿重复操作!');
  1599. }
  1600. $upArray['archived'] = 1;
  1601. $upArray['archiveddate'] = Base::time();
  1602. $logArray[] = [
  1603. 'type' => '日志',
  1604. 'projectid' => $task['projectid'],
  1605. 'taskid' => $task['id'],
  1606. 'username' => $user['username'],
  1607. 'detail' => '任务归档',
  1608. 'indate' => Base::time(),
  1609. 'other' => Base::array2string([
  1610. 'type' => 'task',
  1611. 'id' => $task['id'],
  1612. 'title' => $task['title'],
  1613. ])
  1614. ];
  1615. break;
  1616. }
  1617. /**
  1618. * 取消归档
  1619. */
  1620. case 'unarchived': {
  1621. if ($task['archived'] == 0) {
  1622. return Base::retError('任务未归档,无法取消归档操作!');
  1623. }
  1624. $upArray['archived'] = 0;
  1625. $logArray[] = [
  1626. 'type' => '日志',
  1627. 'projectid' => $task['projectid'],
  1628. 'taskid' => $task['id'],
  1629. 'username' => $user['username'],
  1630. 'detail' => '取消归档',
  1631. 'indate' => Base::time(),
  1632. 'other' => Base::array2string([
  1633. 'type' => 'task',
  1634. 'id' => $task['id'],
  1635. 'title' => $task['title'],
  1636. ])
  1637. ];
  1638. break;
  1639. }
  1640. /**
  1641. * 删除任务
  1642. */
  1643. case 'delete': {
  1644. if ($task['delete'] == 1) {
  1645. return Base::retError('任务已删除,请勿重复操作!');
  1646. }
  1647. $upArray['delete'] = 1;
  1648. $upArray['deletedate'] = Base::time();
  1649. $logArray[] = [
  1650. 'type' => '日志',
  1651. 'projectid' => $task['projectid'],
  1652. 'taskid' => $task['id'],
  1653. 'username' => $user['username'],
  1654. 'detail' => '删除任务',
  1655. 'indate' => Base::time(),
  1656. 'other' => Base::array2string([
  1657. 'type' => 'task',
  1658. 'id' => $task['id'],
  1659. 'title' => $task['title'],
  1660. ])
  1661. ];
  1662. $message = "删除成功!";
  1663. break;
  1664. }
  1665. /**
  1666. * 评论任务
  1667. */
  1668. case 'comment': {
  1669. if (mb_strlen($content) < 2) {
  1670. return Base::retError('评论内容至少2个字!');
  1671. }
  1672. $logArray[] = [
  1673. 'type' => '评论',
  1674. 'projectid' => $task['projectid'],
  1675. 'taskid' => $task['id'],
  1676. 'username' => $user['username'],
  1677. 'detail' => $content,
  1678. 'indate' => Base::time(),
  1679. 'other' => Base::array2string([
  1680. 'type' => 'task',
  1681. 'id' => $task['id'],
  1682. 'title' => $task['title'],
  1683. ])
  1684. ];
  1685. $message = "评论成功!";
  1686. break;
  1687. }
  1688. /**
  1689. * 添加关注
  1690. */
  1691. case 'attention': {
  1692. $userArray = explode(",", $content);
  1693. DB::transaction(function () use ($user, $task, $userArray) {
  1694. foreach ($userArray AS $uname) {
  1695. $uid = Users::username2id($uname);
  1696. if (empty($uid)) {
  1697. continue;
  1698. }
  1699. $row = Base::DBC2A(DB::table('project_users')->where([
  1700. 'type' => '关注',
  1701. 'taskid' => $task['id'],
  1702. 'username' => $uname,
  1703. ])->lockForUpdate()->first());
  1704. if (empty($row)) {
  1705. DB::table('project_users')->insert([
  1706. 'type' => '关注',
  1707. 'projectid' => $task['projectid'],
  1708. 'taskid' => $task['id'],
  1709. 'isowner' => $task['username'] == $uname ? 1 : 0,
  1710. 'username' => $uname,
  1711. 'indate' => Base::time()
  1712. ]);
  1713. DB::table('project_log')->insert([
  1714. 'type' => '日志',
  1715. 'projectid' => $task['projectid'],
  1716. 'taskid' => $task['id'],
  1717. 'username' => $uname,
  1718. 'detail' => $uname == $user['username'] ? '关注任务' : '加入关注',
  1719. 'indate' => Base::time(),
  1720. 'other' => Base::array2string([
  1721. 'type' => 'task',
  1722. 'id' => $task['id'],
  1723. 'title' => $task['title'],
  1724. 'operator' => $user['username'],
  1725. 'action' => 'attention',
  1726. ])
  1727. ]);
  1728. }
  1729. }
  1730. });
  1731. $tempRow = Base::DBC2A(DB::table('project_users')->select(['username'])->where([ 'type' => '关注', 'taskid' => $task['id'] ])->get()->pluck('username'));
  1732. $upArray['follower'] = Base::array2string($tempRow);
  1733. $message = "保存成功!";
  1734. break;
  1735. }
  1736. /**
  1737. * 取消关注
  1738. */
  1739. case 'unattention': {
  1740. $userArray = explode(",", $content);
  1741. DB::transaction(function () use ($user, $task, $userArray) {
  1742. foreach ($userArray AS $uname) {
  1743. if (DB::table('project_users')->where([
  1744. 'type' => '关注',
  1745. 'taskid' => $task['id'],
  1746. 'username' => $uname,
  1747. ])->delete()) {
  1748. DB::table('project_log')->insert([
  1749. 'type' => '日志',
  1750. 'projectid' => $task['projectid'],
  1751. 'taskid' => $task['id'],
  1752. 'username' => $uname,
  1753. 'detail' => $uname == $user['username'] ? '取消关注' : '移出关注',
  1754. 'indate' => Base::time(),
  1755. 'other' => Base::array2string([
  1756. 'type' => 'task',
  1757. 'id' => $task['id'],
  1758. 'title' => $task['title'],
  1759. 'operator' => $user['username'],
  1760. 'action' => 'unattention',
  1761. ])
  1762. ]);
  1763. }
  1764. }
  1765. });
  1766. $tempRow = Base::DBC2A(DB::table('project_users')->select(['username'])->where([ 'type' => '关注', 'taskid' => $task['id'] ])->get()->pluck('username'));
  1767. $upArray['follower'] = Base::array2string($tempRow);
  1768. $message = "保存成功!";
  1769. break;
  1770. }
  1771. default: {
  1772. return Base::retError('参数错误!');
  1773. break;
  1774. }
  1775. }
  1776. //
  1777. if ($upArray) {
  1778. DB::table('project_task')->where('id', $taskid)->update($upArray);
  1779. }
  1780. if ($logArray) {
  1781. DB::table('project_log')->insert($logArray);
  1782. }
  1783. //
  1784. if (in_array($act, ['complete', 'unfinished'])) {
  1785. Project::updateNum($task['projectid']);
  1786. }
  1787. //
  1788. $task = array_merge($task, $upArray);
  1789. $task['overdue'] = Project::taskIsOverdue($task);
  1790. $task['subtask'] = Base::string2array($task['subtask']);
  1791. $task['follower'] = Base::string2array($task['follower']);
  1792. $task = array_merge($task, Users::username2basic($task['username']));
  1793. return Base::retSuccess($message ?: '修改成功!', $task);
  1794. }
  1795. /**
  1796. * 项目任务-待推送日志
  1797. *
  1798. * @apiParam {Number} taskid 任务ID
  1799. * @apiParam {Number} [page] 当前页,默认:1
  1800. * @apiParam {Number} [pagesize] 每页显示数量,默认:20,最大:100
  1801. * @throws \Throwable
  1802. */
  1803. public function task__pushlog()
  1804. {
  1805. $user = Users::authE();
  1806. if (Base::isError($user)) {
  1807. return $user;
  1808. } else {
  1809. $user = $user['data'];
  1810. }
  1811. //
  1812. return DB::transaction(function () {
  1813. $taskid = intval(Request::input('taskid'));
  1814. $task = Base::DBC2A(DB::table('project_task')
  1815. ->select(['pushlid', 'follower', 'username'])
  1816. ->where([
  1817. ['delete', '=', 0],
  1818. ['id', '=', $taskid],
  1819. ])
  1820. ->lockForUpdate()
  1821. ->first());
  1822. if (empty($task)) {
  1823. return Base::retError('任务不存在!');
  1824. }
  1825. $task['follower'] = Base::string2array($task['follower']);
  1826. $task['follower'][] = $task['username'];
  1827. //
  1828. $pushlid = $task['pushlid'];
  1829. $lists = DB::table('project_log')
  1830. ->select(['id', 'username', 'indate', 'detail', 'other'])
  1831. ->where([
  1832. ['id', '>', $pushlid],
  1833. ['taskid', '=', $taskid],
  1834. ['indate', '>', Base::time() - 60]
  1835. ])
  1836. ->orderBy('id')->paginate(Min(Max(Base::nullShow(Request::input('pagesize'), 10), 1), 100));
  1837. $lists = Base::getPageList($lists, false);
  1838. if (count($lists['lists']) == 0) {
  1839. return Base::retError('no lists');
  1840. }
  1841. $array = [];
  1842. foreach ($lists['lists'] AS $key => $item) {
  1843. $item = array_merge($item, Users::username2basic($item['username']));
  1844. $item['other'] = Base::string2array($item['other'], ['type' => '']);
  1845. if (!in_array($item['other']['action'], ['attention', 'unattention'])) {
  1846. $array[] = $item;
  1847. }
  1848. $pushlid = $item['id'];
  1849. }
  1850. $lists['lists'] = $array;
  1851. if ($pushlid != $task['pushlid']) {
  1852. DB::table('project_task')->where('id', $taskid)->update([
  1853. 'pushlid' => $pushlid
  1854. ]);
  1855. }
  1856. return Base::retSuccess('success', array_merge($lists, $task));
  1857. });
  1858. }
  1859. /**
  1860. * 项目文件-列表
  1861. *
  1862. * @apiParam {Number} [projectid] 项目ID
  1863. * @apiParam {Number} [taskid] 任务ID(如果项目ID为空时此参必须赋值且任务必须是自己负责人或在任务所在的项目里)
  1864. * @apiParam {String} [name] 文件名称
  1865. * @apiParam {String} [username] 上传者用户名
  1866. * @apiParam {Object} [sorts] 排序方式,格式:{key:'', order:''}
  1867. * - key: name|size|username|indate
  1868. * - order: asc|desc
  1869. * @apiParam {Number} [page] 当前页,默认:1
  1870. * @apiParam {Number} [pagesize] 每页显示数量,默认:20,最大:100
  1871. */
  1872. public function files__lists()
  1873. {
  1874. $user = Users::authE();
  1875. if (Base::isError($user)) {
  1876. return $user;
  1877. } else {
  1878. $user = $user['data'];
  1879. }
  1880. //
  1881. $taskid = intval(Request::input('taskid'));
  1882. if ($taskid > 0) {
  1883. $projectid = intval(DB::table('project_task')->select(['projectid'])->where([ 'id' => $taskid])->value('projectid'));
  1884. } else {
  1885. $projectid = intval(Request::input('projectid'));
  1886. }
  1887. if ($projectid > 0) {
  1888. $inRes = Project::inThe($projectid, $user['username']);
  1889. if (Base::isError($inRes)) {
  1890. return $inRes;
  1891. }
  1892. }
  1893. //
  1894. $orderBy = '`id` DESC';
  1895. $sorts = Base::json2array(Request::input('sorts'));
  1896. if (in_array($sorts['order'], ['asc', 'desc'])) {
  1897. switch ($sorts['key']) {
  1898. case 'name':
  1899. case 'size':
  1900. case 'download':
  1901. case 'username':
  1902. case 'indate':
  1903. $orderBy = '`' . $sorts['key'] . '` ' . $sorts['order'] . ',`id` DESC';
  1904. break;
  1905. }
  1906. }
  1907. //
  1908. $whereArray = [];
  1909. if ($projectid > 0) {
  1910. $whereArray[] = ['projectid', '=', $projectid];
  1911. if ($taskid > 0) {
  1912. $whereArray[] = ['taskid', '=', $taskid];
  1913. }
  1914. } else {
  1915. if ($taskid <= 0) {
  1916. return Base::retError('参数错误!');
  1917. }
  1918. $count = DB::table('project_task')->where([ 'id' => $taskid, 'username' => $user['username']])->count();
  1919. if ($count <= 0) {
  1920. return Base::retError('你不是任务负责人!');
  1921. }
  1922. $whereArray[] = ['taskid', '=', $taskid];
  1923. }
  1924. $whereArray[] = ['delete', '=', 0];
  1925. if (intval(Request::input('taskid')) > 0) {
  1926. $whereArray[] = ['taskid', '=', intval(Request::input('taskid'))];
  1927. }
  1928. if (trim(Request::input('name'))) {
  1929. $whereArray[] = ['name', 'like', '%' . trim(Request::input('name')) . '%'];
  1930. }
  1931. if (trim(Request::input('username'))) {
  1932. $whereArray[] = ['username', '=', trim(Request::input('username'))];
  1933. }
  1934. //
  1935. $lists = DB::table('project_files')
  1936. ->where($whereArray)
  1937. ->orderByRaw($orderBy)->paginate(Min(Max(Base::nullShow(Request::input('pagesize'), 10), 1), 100));
  1938. $lists = Base::getPageList($lists);
  1939. if ($lists['total'] == 0) {
  1940. return Base::retError('未找到任何相关的文件', $lists);
  1941. }
  1942. foreach ($lists['lists'] AS $key => $item) {
  1943. $lists['lists'][$key]['path'] = Base::fillUrl($item['path']);
  1944. $lists['lists'][$key]['thumb'] = Base::fillUrl($item['thumb']);
  1945. $lists['lists'][$key]['yetdown'] = intval(Session::get('filesDownload:' . $item['id']));
  1946. }
  1947. return Base::retSuccess('success', $lists);
  1948. }
  1949. /**
  1950. * 项目文件-上传
  1951. *
  1952. * @apiParam {Number} [projectid] 项目ID
  1953. * @apiParam {Number} [taskid] 任务ID(如果项目ID为空时此参必须赋值且任务必须是自己负责人)
  1954. */
  1955. public function files__upload()
  1956. {
  1957. $user = Users::authE();
  1958. if (Base::isError($user)) {
  1959. return $user;
  1960. } else {
  1961. $user = $user['data'];
  1962. }
  1963. //
  1964. $projectid = intval(Request::input('projectid'));
  1965. $taskid = intval(Request::input('taskid'));
  1966. if ($projectid > 0) {
  1967. $inRes = Project::inThe($projectid, $user['username']);
  1968. if (Base::isError($inRes)) {
  1969. return $inRes;
  1970. }
  1971. } else {
  1972. if ($taskid <= 0) {
  1973. return Base::retError('参数错误!');
  1974. }
  1975. $row = Base::DBC2A(DB::table('project_task')->select(['projectid'])->where([ 'id' => $taskid, 'username' => $user['username']])->first());
  1976. if (empty($row)) {
  1977. return Base::retError('你不是任务负责人!');
  1978. }
  1979. $projectid = $row['projectid'];
  1980. }
  1981. //
  1982. $data = Base::upload([
  1983. "file" => Request::file('files'),
  1984. "type" => 'file',
  1985. "path" => "uploads/projects/" . $projectid . "/",
  1986. ]);
  1987. if (Base::isError($data)) {
  1988. return Base::retError($data['msg']);
  1989. } else {
  1990. $fileData = $data['data'];
  1991. $thumb = 'images/files/file.png';
  1992. switch ($fileData['ext']) {
  1993. case "docx":
  1994. $thumb = 'images/files/doc.png';
  1995. break;
  1996. case "xlsx":
  1997. $thumb = 'images/files/xls.png';
  1998. break;
  1999. case "pptx":
  2000. $thumb = 'images/files/ppt.png';
  2001. break;
  2002. case "doc":
  2003. case "xls":
  2004. case "ppt":
  2005. case "txt":
  2006. case "esp":
  2007. case "gif":
  2008. $thumb = 'images/files/' . $fileData['ext'] . '.png';
  2009. break;
  2010. case "jpg":
  2011. case "jpeg":
  2012. case "png":
  2013. if (Base::imgThumb($fileData['file'], $fileData['file'] . "_thumb.jpg", 64, 0)) {
  2014. $thumb = $fileData['path'] . "_thumb.jpg";
  2015. }
  2016. break;
  2017. }
  2018. $array = [
  2019. 'projectid' => $projectid,
  2020. 'taskid' => $taskid,
  2021. 'name' => $fileData['name'],
  2022. 'size' => $fileData['size'] * 1024,
  2023. 'ext' => $fileData['ext'],
  2024. 'path' => $fileData['path'],
  2025. 'thumb' => $thumb,
  2026. 'username' => $user['username'],
  2027. 'indate' => Base::time(),
  2028. ];
  2029. $id = DB::table('project_files')->insertGetId($array);
  2030. $array['id'] = $id;
  2031. $array['path'] = Base::fillUrl($array['path']);
  2032. $array['thumb'] = Base::fillUrl($array['thumb']);
  2033. $array['download'] = 0;
  2034. $array['yetdown'] = 0;
  2035. DB::table('project_log')->insert([
  2036. 'type' => '日志',
  2037. 'projectid' => $projectid,
  2038. 'taskid' => $taskid,
  2039. 'username' => $user['username'],
  2040. 'detail' => '上传文件',
  2041. 'indate' => Base::time(),
  2042. 'other' => Base::array2string([
  2043. 'type' => 'file',
  2044. 'id' => $id,
  2045. 'name' => $fileData['name'],
  2046. ])
  2047. ]);
  2048. if ($taskid > 0) {
  2049. DB::table('project_task')->where('id', $taskid)->increment('filenum');
  2050. }
  2051. return Base::retSuccess('success', $array);
  2052. }
  2053. }
  2054. /**
  2055. * 项目文件-下载
  2056. *
  2057. * @apiParam {Number} fileid 文件ID
  2058. */
  2059. public function files__download()
  2060. {
  2061. $fileDetail = Base::DBC2A(DB::table('project_files')->where('id', intval(Request::input('fileid')))->where('delete', 0)->first());
  2062. if (empty($fileDetail)) {
  2063. return abort(404, '文件不存在或已被删除!');
  2064. }
  2065. $filePath = public_path($fileDetail['path']);
  2066. if (!file_exists($filePath)) {
  2067. return abort(404, '文件不存在或已被删除。');
  2068. }
  2069. if (intval(Session::get('filesDownload:' . $fileDetail['id'])) !== 1) {
  2070. Session::put('filesDownload:' . $fileDetail['id'], 1);
  2071. DB::table('project_files')->where('id', $fileDetail['id'])->increment('download');
  2072. }
  2073. return response()->download($filePath, $fileDetail['name']);
  2074. }
  2075. /**
  2076. * 项目文件-重命名
  2077. *
  2078. * @apiParam {Number} fileid 文件ID
  2079. * @apiParam {String} name 新文件名称
  2080. */
  2081. public function files__rename()
  2082. {
  2083. $user = Users::authE();
  2084. if (Base::isError($user)) {
  2085. return $user;
  2086. } else {
  2087. $user = $user['data'];
  2088. }
  2089. //
  2090. $fileDetail = Base::DBC2A(DB::table('project_files')->where('id', intval(Request::input('fileid')))->where('delete', 0)->first());
  2091. if (empty($fileDetail)) {
  2092. return Base::retError('文件不存在或已被删除!');
  2093. }
  2094. if ($fileDetail['username'] != $user['username']) {
  2095. $inRes = Project::inThe($fileDetail['projectid'], $user['username'], true);
  2096. if (Base::isError($inRes)) {
  2097. return Base::retError('此操作仅支持管理员或上传者!');
  2098. }
  2099. }
  2100. //
  2101. $name = Base::rightDelete(trim(Request::input('name')), '.' . $fileDetail['ext']);
  2102. if (empty($name)) {
  2103. return Base::retError('文件名称不能为空!');
  2104. } elseif (mb_strlen($name) > 32) {
  2105. return Base::retError('文件名称最多只能设置32个字!');
  2106. }
  2107. //
  2108. $name .= '.' . $fileDetail['ext'];
  2109. if (DB::table('project_files')->where('id', $fileDetail['id'])->update([ 'name' => $name ])) {
  2110. DB::table('project_log')->insert([
  2111. 'type' => '日志',
  2112. 'projectid' => $fileDetail['projectid'],
  2113. 'taskid' => $fileDetail['taskid'],
  2114. 'username' => $user['username'],
  2115. 'detail' => '文件【' . $fileDetail['name'] . '】重命名',
  2116. 'indate' => Base::time(),
  2117. 'other' => Base::array2string([
  2118. 'type' => 'file',
  2119. 'id' => $fileDetail['id'],
  2120. 'name' => $name,
  2121. ])
  2122. ]);
  2123. }
  2124. //
  2125. return Base::retSuccess('修改成功!', [
  2126. 'name' => $name,
  2127. ]);
  2128. }
  2129. /**
  2130. * 项目文件-删除
  2131. *
  2132. * @apiParam {Number} fileid 文件ID
  2133. */
  2134. public function files__delete()
  2135. {
  2136. $user = Users::authE();
  2137. if (Base::isError($user)) {
  2138. return $user;
  2139. } else {
  2140. $user = $user['data'];
  2141. }
  2142. //
  2143. $fileDetail = Base::DBC2A(DB::table('project_files')->where('id', intval(Request::input('fileid')))->where('delete', 0)->first());
  2144. if (empty($fileDetail)) {
  2145. return Base::retError('文件不存在或已被删除!');
  2146. }
  2147. if ($fileDetail['username'] != $user['username']) {
  2148. $inRes = Project::inThe($fileDetail['projectid'], $user['username'], true);
  2149. if (Base::isError($inRes)) {
  2150. return Base::retError('此操作仅支持管理员或上传者!');
  2151. }
  2152. }
  2153. //
  2154. DB::table('project_files')->where('id', $fileDetail['id'])->update([
  2155. 'delete' => 1,
  2156. 'deletedate' => Base::time()
  2157. ]);
  2158. DB::table('project_log')->insert([
  2159. 'type' => '日志',
  2160. 'projectid' => $fileDetail['projectid'],
  2161. 'taskid' => $fileDetail['taskid'],
  2162. 'username' => $user['username'],
  2163. 'detail' => '删除文件',
  2164. 'indate' => Base::time(),
  2165. 'other' => Base::array2string([
  2166. 'type' => 'file',
  2167. 'id' => $fileDetail['id'],
  2168. 'name' => $fileDetail['name'],
  2169. ])
  2170. ]);
  2171. if ($fileDetail['taskid'] > 0) {
  2172. DB::table('project_task')->where('id', $fileDetail['taskid'])->decrement('filenum');
  2173. }
  2174. //
  2175. return Base::retSuccess('删除成功!');
  2176. }
  2177. /**
  2178. * 项目动态-列表
  2179. *
  2180. * @apiParam {Number} [projectid] 项目ID
  2181. * @apiParam {Number} [taskid] 任务ID(如果项目ID为空时此参必须赋值且任务必须是自己负责人)
  2182. * @apiParam {String} [type] 类型
  2183. * - 全部: 日志+评论(默认)
  2184. * - 日志
  2185. * - 评论
  2186. * @apiParam {String} [username] 用户名
  2187. * @apiParam {Number} [page] 当前页,默认:1
  2188. * @apiParam {Number} [pagesize] 每页显示数量,默认:20,最大:100
  2189. */
  2190. public function log__lists()
  2191. {
  2192. $user = Users::authE();
  2193. if (Base::isError($user)) {
  2194. return $user;
  2195. } else {
  2196. $user = $user['data'];
  2197. }
  2198. //
  2199. $projectid = intval(Request::input('projectid'));
  2200. if ($projectid > 0) {
  2201. $inRes = Project::inThe($projectid, $user['username']);
  2202. if (Base::isError($inRes)) {
  2203. return $inRes;
  2204. }
  2205. }
  2206. //
  2207. $taskid = intval(Request::input('taskid'));
  2208. $whereArray = [];
  2209. $whereFunc = null;
  2210. if ($projectid > 0) {
  2211. $whereArray[] = ['projectid', '=', $projectid];
  2212. if ($taskid > 0) {
  2213. $whereArray[] = ['taskid', '=', $taskid];
  2214. }
  2215. } else {
  2216. if ($taskid < 0) {
  2217. return Base::retError('参数错误!');
  2218. }
  2219. $count = DB::table('project_task')->where([ 'id' => $taskid, 'username' => $user['username']])->count();
  2220. if ($count <= 0) {
  2221. return Base::retError('你不是任务负责人!');
  2222. }
  2223. $whereArray[] = ['taskid', '=', $taskid];
  2224. }
  2225. if (trim(Request::input('username'))) {
  2226. $whereArray[] = ['username', '=', trim(Request::input('username'))];
  2227. }
  2228. switch (trim(Request::input('type'))) {
  2229. case '日志': {
  2230. $whereArray[] = ['type', '=', '日志'];
  2231. break;
  2232. }
  2233. case '评论': {
  2234. $whereArray[] = ['type', '=', '评论'];
  2235. break;
  2236. }
  2237. default: {
  2238. $whereFunc = function ($query) {
  2239. $query->whereIn('type', ['日志', '评论']);
  2240. };
  2241. break;
  2242. }
  2243. }
  2244. //
  2245. $lists = DB::table('project_log')
  2246. ->where($whereArray)
  2247. ->where($whereFunc)
  2248. ->orderByDesc('indate')->paginate(Min(Max(Base::nullShow(Request::input('pagesize'), 10), 1), 100));
  2249. $lists = Base::getPageList($lists);
  2250. if ($lists['total'] == 0) {
  2251. return Base::retError('未找到任何相关的记录', $lists);
  2252. }
  2253. foreach ($lists['lists'] AS $key => $item) {
  2254. $item = array_merge($item, Users::username2basic($item['username']));
  2255. $item['timeData'] = [
  2256. 'ymd' => date(date("Y", $item['indate']) == date("Y", Base::time()) ? "m-d" : "Y-m-d", $item['indate']),
  2257. 'hi' => date("h:i", $item['indate']) ,
  2258. 'week' => "周" . Base::getTimeWeek($item['indate']),
  2259. 'segment' => Base::getTimeDayeSegment($item['indate']),
  2260. ];
  2261. $item['other'] = Base::string2array($item['other'], ['type' => '']);
  2262. $lists['lists'][$key] = $item;
  2263. }
  2264. return Base::retSuccess('success', $lists);
  2265. }
  2266. }