ProjectController.php 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274
  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 {String} title 任务标题
  1184. * @apiParam {Number} [projectid] 项目ID
  1185. * @apiParam {Number} [labelid] 项目子分类ID
  1186. * @apiParam {Number} [level] 任务紧急级别(1~4,默认:2)
  1187. * @apiParam {String} [username] 任务负责人用户名(如果项目ID为空时此参数无效,负责人为自己)
  1188. *
  1189. * @throws \Throwable
  1190. */
  1191. public function task__add()
  1192. {
  1193. $user = Users::authE();
  1194. if (Base::isError($user)) {
  1195. return $user;
  1196. } else {
  1197. $user = $user['data'];
  1198. }
  1199. //
  1200. $projectid = intval(Request::input('projectid'));
  1201. $labelid = intval(Request::input('labelid'));
  1202. if ($projectid > 0) {
  1203. $projectDetail = Base::DBC2A(DB::table('project_lists')->where('id', $projectid)->where('delete', 0)->first());
  1204. if (empty($projectDetail)) {
  1205. return Base::retError('项目不存在或已被删除!');
  1206. }
  1207. //
  1208. $labelDetail = Base::DBC2A(DB::table('project_label')->where('id', $labelid)->where('projectid', $projectid)->first());
  1209. if (empty($labelDetail)) {
  1210. return Base::retError('项目子分类不存在或已被删除!');
  1211. }
  1212. //
  1213. $inRes = Project::inThe($projectid, $user['username']);
  1214. if (Base::isError($inRes)) {
  1215. return $inRes;
  1216. }
  1217. //
  1218. $username = trim(Request::input('username'));
  1219. if (empty($username)) {
  1220. $username = $user['username'];
  1221. }
  1222. if ($username != $user['username']) {
  1223. $inRes = Project::inThe($projectid, $username);
  1224. if (Base::isError($inRes)) {
  1225. return Base::retError('负责人不在项目成员内!');
  1226. }
  1227. }
  1228. } else {
  1229. $username = $user['username'];
  1230. }
  1231. //
  1232. $title = trim(Request::input('title'));
  1233. if (empty($title)) {
  1234. return Base::retError('任务标题不能为空!');
  1235. } elseif (mb_strlen($title) > 255) {
  1236. return Base::retError('任务标题最多只能设置255个字!');
  1237. }
  1238. //
  1239. $level = max(1, min(4, intval(Request::input('level'))));
  1240. $inArray = [
  1241. 'projectid' => $projectid,
  1242. 'labelid' => $labelid,
  1243. 'createuser' => $user['username'],
  1244. 'username' => $username,
  1245. 'title' => $title,
  1246. 'level' => $level,
  1247. 'inorder' => empty($projectid) ? 0 : intval(DB::table('project_task')->where('projectid', $projectid)->orderByDesc('inorder')->value('inorder')) + 1,
  1248. 'userorder' => intval(DB::table('project_task')->where('username', $user['username'])->where('level', $level)->orderByDesc('userorder')->value('userorder')) + 1,
  1249. 'indate' => Base::time(),
  1250. 'startdate' => Base::time(),
  1251. 'subtask' => Base::array2string([]),
  1252. 'follower' => Base::array2string([]),
  1253. ];
  1254. return DB::transaction(function () use ($inArray) {
  1255. $taskid = DB::table('project_task')->insertGetId($inArray);
  1256. if (empty($taskid)) {
  1257. return Base::retError('系统繁忙,请稍后再试!');
  1258. }
  1259. DB::table('project_log')->insert([
  1260. 'type' => '日志',
  1261. 'projectid' => $inArray['projectid'],
  1262. 'taskid' => $taskid,
  1263. 'username' => $inArray['createuser'],
  1264. 'detail' => '添加任务',
  1265. 'indate' => Base::time(),
  1266. 'other' => Base::array2string([
  1267. 'type' => 'task',
  1268. 'id' => $taskid,
  1269. 'title' => $inArray['title'],
  1270. ])
  1271. ]);
  1272. Project::updateNum($inArray['projectid']);
  1273. //
  1274. $task = Base::DBC2A(DB::table('project_task')->where('id', $taskid)->first());
  1275. $task['overdue'] = Project::taskIsOverdue($task);
  1276. $task['subtask'] = Base::string2array($task['subtask']);
  1277. $task['follower'] = Base::string2array($task['follower']);
  1278. $task = array_merge($task, Users::username2basic($task['username']));
  1279. return Base::retSuccess('添加成功!', $task);
  1280. });
  1281. }
  1282. /**
  1283. * 项目任务-修改
  1284. *
  1285. * @apiParam {Number} taskid 任务ID
  1286. * @apiParam {String} act 修改字段|操作类型
  1287. * - title: 标题
  1288. * - desc: 描述
  1289. * - level: 优先级
  1290. * - username: 负责人
  1291. * - plannedtime: 设置计划时间
  1292. * - unplannedtime: 取消计划时间
  1293. * - complete: 标记完成
  1294. * - unfinished: 标记未完成
  1295. * - archived: 归档
  1296. * - unarchived: 取消归档
  1297. * - delete: 删除任务
  1298. * - comment: 评论
  1299. * - attention: 添加关注
  1300. * @apiParam {String} [content] 内容数据
  1301. *
  1302. * @throws \Throwable
  1303. */
  1304. public function task__edit()
  1305. {
  1306. $user = Users::authE();
  1307. if (Base::isError($user)) {
  1308. return $user;
  1309. } else {
  1310. $user = $user['data'];
  1311. }
  1312. //
  1313. $act = trim(Request::input('act'));
  1314. $taskid = intval(Request::input('taskid'));
  1315. $task = Base::DBC2A(DB::table('project_task')
  1316. ->where([
  1317. ['delete', '=', 0],
  1318. ['id', '=', $taskid],
  1319. ])
  1320. ->first());
  1321. if (empty($task)) {
  1322. return Base::retError('任务不存在!');
  1323. }
  1324. if ($task['projectid'] > 0) {
  1325. $inRes = Project::inThe($task['projectid'], $user['username']);
  1326. if (Base::isError($inRes)) {
  1327. return $inRes;
  1328. }
  1329. if (!$inRes['data']['isowner']
  1330. && $task['username'] != $user['username']
  1331. && !in_array($act, ['comment', 'attention'])) {
  1332. return Base::retError('此操作只允许项目管理员或者任务负责人!');
  1333. }
  1334. } else {
  1335. if ($task['username'] != $user['username']) {
  1336. return Base::retError('此操作只允许任务负责人!');
  1337. }
  1338. }
  1339. //
  1340. $content = trim(Request::input('content'));
  1341. $message = "";
  1342. $upArray = [];
  1343. $logArray = [];
  1344. switch ($act) {
  1345. /**
  1346. * 修改标题
  1347. */
  1348. case 'title': {
  1349. if ($content == $task['title']) {
  1350. return Base::retError('标题未做改变!');
  1351. }
  1352. $upArray['title'] = $content;
  1353. $logArray[] = [
  1354. 'type' => '日志',
  1355. 'projectid' => $task['projectid'],
  1356. 'taskid' => $task['id'],
  1357. 'username' => $user['username'],
  1358. 'detail' => '修改任务标题',
  1359. 'indate' => Base::time(),
  1360. 'other' => Base::array2string([
  1361. 'type' => 'task',
  1362. 'id' => $task['id'],
  1363. 'title' => $content,
  1364. 'old_title' => $task['title'],
  1365. ])
  1366. ];
  1367. break;
  1368. }
  1369. /**
  1370. * 修改描述
  1371. */
  1372. case 'desc': {
  1373. if ($content == $task['desc']) {
  1374. return Base::retError('描述未做改变!');
  1375. }
  1376. $upArray['desc'] = $content;
  1377. $logArray[] = [
  1378. 'type' => '日志',
  1379. 'projectid' => $task['projectid'],
  1380. 'taskid' => $task['id'],
  1381. 'username' => $user['username'],
  1382. 'detail' => '修改任务描述',
  1383. 'indate' => Base::time(),
  1384. 'other' => Base::array2string([
  1385. 'type' => 'task',
  1386. 'id' => $task['id'],
  1387. 'title' => $task['title'],
  1388. 'old_desc' => $task['desc'],
  1389. ])
  1390. ];
  1391. break;
  1392. }
  1393. /**
  1394. * 调整任务等级
  1395. */
  1396. case 'level': {
  1397. $content = intval($content);
  1398. if ($content == $task['level']) {
  1399. return Base::retError('优先级未做改变!');
  1400. }
  1401. if ($content > 4 || $content < 1) {
  1402. return Base::retError('优先级参数错误!');
  1403. }
  1404. $upArray['level'] = $content;
  1405. $logArray[] = [
  1406. 'type' => '日志',
  1407. 'projectid' => $task['projectid'],
  1408. 'taskid' => $task['id'],
  1409. 'username' => $user['username'],
  1410. 'detail' => '调整任务等级为【P' . $content . '】',
  1411. 'indate' => Base::time(),
  1412. 'other' => Base::array2string([
  1413. 'type' => 'task',
  1414. 'id' => $task['id'],
  1415. 'title' => $task['title'],
  1416. 'old_level' => $task['level'],
  1417. ])
  1418. ];
  1419. break;
  1420. }
  1421. /**
  1422. * 修改任务负责人
  1423. */
  1424. case 'username': {
  1425. if ($content == $task['username']) {
  1426. return Base::retError('负责人未做改变!');
  1427. }
  1428. if ($task['projectid'] > 0) {
  1429. $inRes = Project::inThe($task['projectid'], $content);
  1430. if (Base::isError($inRes)) {
  1431. return Base::retError(['%不在成员列表内!', $content]);
  1432. }
  1433. }
  1434. $upArray['username'] = $content;
  1435. $logArray[] = [
  1436. 'type' => '日志',
  1437. 'projectid' => $task['projectid'],
  1438. 'taskid' => $task['id'],
  1439. 'username' => $user['username'],
  1440. 'detail' => '修改负责人',
  1441. 'indate' => Base::time(),
  1442. 'other' => Base::array2string([
  1443. 'type' => 'task',
  1444. 'id' => $task['id'],
  1445. 'title' => $task['title'],
  1446. 'old_username' => $task['username'],
  1447. ])
  1448. ];
  1449. break;
  1450. }
  1451. /**
  1452. * 修改计划时间
  1453. */
  1454. case 'plannedtime': {
  1455. list($startdate, $enddate) = explode(",", $content);
  1456. if (!Base::isDate($startdate) || !Base::isDate($enddate)) {
  1457. return Base::retError('计划时间参数错误!');
  1458. }
  1459. $startdate = strtotime($startdate);
  1460. $enddate = strtotime($enddate);
  1461. if ($startdate == $task['startdate'] && $enddate == $task['enddate']) {
  1462. return Base::retError('与原计划时间一致!');
  1463. }
  1464. $upArray['startdate'] = $startdate;
  1465. $upArray['enddate'] = $enddate;
  1466. $logArray[] = [
  1467. 'type' => '日志',
  1468. 'projectid' => $task['projectid'],
  1469. 'taskid' => $task['id'],
  1470. 'username' => $user['username'],
  1471. 'detail' => '设置计划时间',
  1472. 'indate' => Base::time(),
  1473. 'other' => Base::array2string([
  1474. 'type' => 'task',
  1475. 'id' => $task['id'],
  1476. 'title' => $task['title'],
  1477. 'old_startdate' => $task['startdate'],
  1478. 'old_enddate' => $task['enddate'],
  1479. ])
  1480. ];
  1481. break;
  1482. }
  1483. /**
  1484. * 取消计划时间
  1485. */
  1486. case 'unplannedtime': {
  1487. $startdate = 0;
  1488. $enddate = 0;
  1489. if ($startdate == $task['startdate'] && $enddate == $task['enddate']) {
  1490. return Base::retError('与原计划时间一致!');
  1491. }
  1492. $upArray['startdate'] = $startdate;
  1493. $upArray['enddate'] = $enddate;
  1494. $logArray[] = [
  1495. 'type' => '日志',
  1496. 'projectid' => $task['projectid'],
  1497. 'taskid' => $task['id'],
  1498. 'username' => $user['username'],
  1499. 'detail' => '取消计划时间',
  1500. 'indate' => Base::time(),
  1501. 'other' => Base::array2string([
  1502. 'type' => 'task',
  1503. 'id' => $task['id'],
  1504. 'title' => $task['title'],
  1505. 'old_startdate' => $task['startdate'],
  1506. 'old_enddate' => $task['enddate'],
  1507. ])
  1508. ];
  1509. break;
  1510. }
  1511. /**
  1512. * 标记完成
  1513. */
  1514. case 'complete': {
  1515. if ($task['complete'] == 1) {
  1516. return Base::retError('任务已标记完成,请勿重复操作!');
  1517. }
  1518. $upArray['complete'] = 1;
  1519. $upArray['completedate'] = Base::time();
  1520. $logArray[] = [
  1521. 'type' => '日志',
  1522. 'projectid' => $task['projectid'],
  1523. 'taskid' => $task['id'],
  1524. 'username' => $user['username'],
  1525. 'detail' => '标记已完成',
  1526. 'indate' => Base::time(),
  1527. 'other' => Base::array2string([
  1528. 'type' => 'task',
  1529. 'id' => $task['id'],
  1530. 'title' => $task['title'],
  1531. ])
  1532. ];
  1533. break;
  1534. }
  1535. /**
  1536. * 标记未完成
  1537. */
  1538. case 'unfinished': {
  1539. if ($task['complete'] == 0) {
  1540. return Base::retError('任务未完成,无法标记未完成!');
  1541. }
  1542. $upArray['complete'] = 0;
  1543. $logArray[] = [
  1544. 'type' => '日志',
  1545. 'projectid' => $task['projectid'],
  1546. 'taskid' => $task['id'],
  1547. 'username' => $user['username'],
  1548. 'detail' => '标记未完成',
  1549. 'indate' => Base::time(),
  1550. 'other' => Base::array2string([
  1551. 'type' => 'task',
  1552. 'id' => $task['id'],
  1553. 'title' => $task['title'],
  1554. ])
  1555. ];
  1556. break;
  1557. }
  1558. /**
  1559. * 归档
  1560. */
  1561. case 'archived': {
  1562. if ($task['archived'] == 1) {
  1563. return Base::retError('任务已经归档,请勿重复操作!');
  1564. }
  1565. $upArray['archived'] = 1;
  1566. $upArray['archiveddate'] = Base::time();
  1567. $logArray[] = [
  1568. 'type' => '日志',
  1569. 'projectid' => $task['projectid'],
  1570. 'taskid' => $task['id'],
  1571. 'username' => $user['username'],
  1572. 'detail' => '任务归档',
  1573. 'indate' => Base::time(),
  1574. 'other' => Base::array2string([
  1575. 'type' => 'task',
  1576. 'id' => $task['id'],
  1577. 'title' => $task['title'],
  1578. ])
  1579. ];
  1580. break;
  1581. }
  1582. /**
  1583. * 取消归档
  1584. */
  1585. case 'unarchived': {
  1586. if ($task['archived'] == 0) {
  1587. return Base::retError('任务未归档,无法取消归档操作!');
  1588. }
  1589. $upArray['archived'] = 0;
  1590. $logArray[] = [
  1591. 'type' => '日志',
  1592. 'projectid' => $task['projectid'],
  1593. 'taskid' => $task['id'],
  1594. 'username' => $user['username'],
  1595. 'detail' => '取消归档',
  1596. 'indate' => Base::time(),
  1597. 'other' => Base::array2string([
  1598. 'type' => 'task',
  1599. 'id' => $task['id'],
  1600. 'title' => $task['title'],
  1601. ])
  1602. ];
  1603. break;
  1604. }
  1605. /**
  1606. * 删除任务
  1607. */
  1608. case 'delete': {
  1609. if ($task['delete'] == 1) {
  1610. return Base::retError('任务已删除,请勿重复操作!');
  1611. }
  1612. $upArray['delete'] = 1;
  1613. $upArray['deletedate'] = Base::time();
  1614. $logArray[] = [
  1615. 'type' => '日志',
  1616. 'projectid' => $task['projectid'],
  1617. 'taskid' => $task['id'],
  1618. 'username' => $user['username'],
  1619. 'detail' => '删除任务',
  1620. 'indate' => Base::time(),
  1621. 'other' => Base::array2string([
  1622. 'type' => 'task',
  1623. 'id' => $task['id'],
  1624. 'title' => $task['title'],
  1625. ])
  1626. ];
  1627. $message = "删除成功!";
  1628. break;
  1629. }
  1630. /**
  1631. * 评论任务
  1632. */
  1633. case 'comment': {
  1634. if (mb_strlen($content) < 2) {
  1635. return Base::retError('评论内容至少2个字!');
  1636. }
  1637. $logArray[] = [
  1638. 'type' => '评论',
  1639. 'projectid' => $task['projectid'],
  1640. 'taskid' => $task['id'],
  1641. 'username' => $user['username'],
  1642. 'detail' => $content,
  1643. 'indate' => Base::time(),
  1644. 'other' => Base::array2string([
  1645. 'type' => 'task',
  1646. 'id' => $task['id'],
  1647. 'title' => $task['title'],
  1648. ])
  1649. ];
  1650. $message = "评论成功!";
  1651. break;
  1652. }
  1653. /**
  1654. * 添加关注
  1655. */
  1656. case 'attention': {
  1657. $userArray = explode(",", $content);
  1658. DB::transaction(function () use ($user, $task, $userArray) {
  1659. foreach ($userArray AS $uname) {
  1660. $uid = Users::username2id($uname);
  1661. if (empty($uid)) {
  1662. continue;
  1663. }
  1664. $row = Base::DBC2A(DB::table('project_users')->where([
  1665. 'type' => '关注',
  1666. 'taskid' => $task['id'],
  1667. 'username' => $uname,
  1668. ])->lockForUpdate()->first());
  1669. if (empty($row)) {
  1670. DB::table('project_users')->insert([
  1671. 'type' => '关注',
  1672. 'projectid' => $task['projectid'],
  1673. 'taskid' => $task['id'],
  1674. 'isowner' => $task['username'] == $uname ? 1 : 0,
  1675. 'username' => $uname,
  1676. 'indate' => Base::time()
  1677. ]);
  1678. DB::table('project_log')->insert([
  1679. 'type' => '日志',
  1680. 'projectid' => $task['projectid'],
  1681. 'taskid' => $task['id'],
  1682. 'username' => $uname,
  1683. 'detail' => $uname == $user['username'] ? '关注任务' : '加入关注',
  1684. 'indate' => Base::time(),
  1685. 'other' => Base::array2string([
  1686. 'type' => 'task',
  1687. 'id' => $task['id'],
  1688. 'title' => $task['title'],
  1689. 'operator' => $user['username'],
  1690. 'action' => 'attention',
  1691. ])
  1692. ]);
  1693. }
  1694. }
  1695. });
  1696. $tempRow = Base::DBC2A(DB::table('project_users')->select(['username'])->where([ 'type' => '关注', 'taskid' => $task['id'] ])->get()->pluck('username'));
  1697. $upArray['follower'] = Base::array2string($tempRow);
  1698. $message = "保存成功!";
  1699. break;
  1700. }
  1701. /**
  1702. * 取消关注
  1703. */
  1704. case 'unattention': {
  1705. $userArray = explode(",", $content);
  1706. DB::transaction(function () use ($user, $task, $userArray) {
  1707. foreach ($userArray AS $uname) {
  1708. if (DB::table('project_users')->where([
  1709. 'type' => '关注',
  1710. 'taskid' => $task['id'],
  1711. 'username' => $uname,
  1712. ])->delete()) {
  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' => 'unattention',
  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. default: {
  1737. return Base::retError('参数错误!');
  1738. break;
  1739. }
  1740. }
  1741. //
  1742. if ($upArray) {
  1743. DB::table('project_task')->where('id', $taskid)->update($upArray);
  1744. }
  1745. if ($logArray) {
  1746. DB::table('project_log')->insert($logArray);
  1747. }
  1748. //
  1749. if (in_array($act, ['complete', 'unfinished'])) {
  1750. Project::updateNum($task['projectid']);
  1751. }
  1752. //
  1753. $task = array_merge($task, $upArray);
  1754. $task['overdue'] = Project::taskIsOverdue($task);
  1755. $task['subtask'] = Base::string2array($task['subtask']);
  1756. $task['follower'] = Base::string2array($task['follower']);
  1757. $task = array_merge($task, Users::username2basic($task['username']));
  1758. return Base::retSuccess($message ?: '修改成功!', $task);
  1759. }
  1760. /**
  1761. * 项目任务-待推送日志
  1762. *
  1763. * @apiParam {Number} taskid 任务ID
  1764. * @apiParam {Number} [page] 当前页,默认:1
  1765. * @apiParam {Number} [pagesize] 每页显示数量,默认:20,最大:100
  1766. * @throws \Throwable
  1767. */
  1768. public function task__pushlog()
  1769. {
  1770. $user = Users::authE();
  1771. if (Base::isError($user)) {
  1772. return $user;
  1773. } else {
  1774. $user = $user['data'];
  1775. }
  1776. //
  1777. return DB::transaction(function () {
  1778. $taskid = intval(Request::input('taskid'));
  1779. $task = Base::DBC2A(DB::table('project_task')
  1780. ->select(['pushlid', 'follower', 'username'])
  1781. ->where([
  1782. ['delete', '=', 0],
  1783. ['id', '=', $taskid],
  1784. ])
  1785. ->lockForUpdate()
  1786. ->first());
  1787. if (empty($task)) {
  1788. return Base::retError('任务不存在!');
  1789. }
  1790. $task['follower'] = Base::string2array($task['follower']);
  1791. $task['follower'][] = $task['username'];
  1792. //
  1793. $pushlid = $task['pushlid'];
  1794. $lists = DB::table('project_log')
  1795. ->select(['id', 'username', 'indate', 'detail', 'other'])
  1796. ->where([
  1797. ['id', '>', $pushlid],
  1798. ['taskid', '=', $taskid],
  1799. ['indate', '>', Base::time() - 60]
  1800. ])
  1801. ->orderBy('id')->paginate(Min(Max(Base::nullShow(Request::input('pagesize'), 10), 1), 100));
  1802. $lists = Base::getPageList($lists, false);
  1803. if (count($lists['lists']) == 0) {
  1804. return Base::retError('no lists');
  1805. }
  1806. $array = [];
  1807. foreach ($lists['lists'] AS $key => $item) {
  1808. $item = array_merge($item, Users::username2basic($item['username']));
  1809. $item['other'] = Base::string2array($item['other'], ['type' => '']);
  1810. if (!in_array($item['other']['action'], ['attention', 'unattention'])) {
  1811. $array[] = $item;
  1812. }
  1813. $pushlid = $item['id'];
  1814. }
  1815. $lists['lists'] = $array;
  1816. if ($pushlid != $task['pushlid']) {
  1817. DB::table('project_task')->where('id', $taskid)->update([
  1818. 'pushlid' => $pushlid
  1819. ]);
  1820. }
  1821. return Base::retSuccess('success', array_merge($lists, $task));
  1822. });
  1823. }
  1824. /**
  1825. * 项目文件-列表
  1826. *
  1827. * @apiParam {Number} [projectid] 项目ID
  1828. * @apiParam {Number} [taskid] 任务ID(如果项目ID为空时此参必须赋值且任务必须是自己负责人或在任务所在的项目里)
  1829. * @apiParam {String} [name] 文件名称
  1830. * @apiParam {String} [username] 上传者用户名
  1831. * @apiParam {Object} [sorts] 排序方式,格式:{key:'', order:''}
  1832. * - key: name|size|username|indate
  1833. * - order: asc|desc
  1834. * @apiParam {Number} [page] 当前页,默认:1
  1835. * @apiParam {Number} [pagesize] 每页显示数量,默认:20,最大:100
  1836. */
  1837. public function files__lists()
  1838. {
  1839. $user = Users::authE();
  1840. if (Base::isError($user)) {
  1841. return $user;
  1842. } else {
  1843. $user = $user['data'];
  1844. }
  1845. //
  1846. $taskid = intval(Request::input('taskid'));
  1847. if ($taskid > 0) {
  1848. $projectid = intval(DB::table('project_task')->select(['projectid'])->where([ 'id' => $taskid])->value('projectid'));
  1849. } else {
  1850. $projectid = intval(Request::input('projectid'));
  1851. }
  1852. if ($projectid > 0) {
  1853. $inRes = Project::inThe($projectid, $user['username']);
  1854. if (Base::isError($inRes)) {
  1855. return $inRes;
  1856. }
  1857. }
  1858. //
  1859. $orderBy = '`id` DESC';
  1860. $sorts = Base::json2array(Request::input('sorts'));
  1861. if (in_array($sorts['order'], ['asc', 'desc'])) {
  1862. switch ($sorts['key']) {
  1863. case 'name':
  1864. case 'size':
  1865. case 'download':
  1866. case 'username':
  1867. case 'indate':
  1868. $orderBy = '`' . $sorts['key'] . '` ' . $sorts['order'] . ',`id` DESC';
  1869. break;
  1870. }
  1871. }
  1872. //
  1873. $whereArray = [];
  1874. if ($projectid > 0) {
  1875. $whereArray[] = ['projectid', '=', $projectid];
  1876. if ($taskid > 0) {
  1877. $whereArray[] = ['taskid', '=', $taskid];
  1878. }
  1879. } else {
  1880. if ($taskid <= 0) {
  1881. return Base::retError('参数错误!');
  1882. }
  1883. $count = DB::table('project_task')->where([ 'id' => $taskid, 'username' => $user['username']])->count();
  1884. if ($count <= 0) {
  1885. return Base::retError('你不是任务负责人!');
  1886. }
  1887. $whereArray[] = ['taskid', '=', $taskid];
  1888. }
  1889. $whereArray[] = ['delete', '=', 0];
  1890. if (intval(Request::input('taskid')) > 0) {
  1891. $whereArray[] = ['taskid', '=', intval(Request::input('taskid'))];
  1892. }
  1893. if (trim(Request::input('name'))) {
  1894. $whereArray[] = ['name', 'like', '%' . trim(Request::input('name')) . '%'];
  1895. }
  1896. if (trim(Request::input('username'))) {
  1897. $whereArray[] = ['username', '=', trim(Request::input('username'))];
  1898. }
  1899. //
  1900. $lists = DB::table('project_files')
  1901. ->where($whereArray)
  1902. ->orderByRaw($orderBy)->paginate(Min(Max(Base::nullShow(Request::input('pagesize'), 10), 1), 100));
  1903. $lists = Base::getPageList($lists);
  1904. if ($lists['total'] == 0) {
  1905. return Base::retError('未找到任何相关的文件', $lists);
  1906. }
  1907. foreach ($lists['lists'] AS $key => $item) {
  1908. $lists['lists'][$key]['path'] = Base::fillUrl($item['path']);
  1909. $lists['lists'][$key]['thumb'] = Base::fillUrl($item['thumb']);
  1910. $lists['lists'][$key]['yetdown'] = intval(Session::get('filesDownload:' . $item['id']));
  1911. }
  1912. return Base::retSuccess('success', $lists);
  1913. }
  1914. /**
  1915. * 项目文件-上传
  1916. *
  1917. * @apiParam {Number} [projectid] 项目ID
  1918. * @apiParam {Number} [taskid] 任务ID(如果项目ID为空时此参必须赋值且任务必须是自己负责人)
  1919. */
  1920. public function files__upload()
  1921. {
  1922. $user = Users::authE();
  1923. if (Base::isError($user)) {
  1924. return $user;
  1925. } else {
  1926. $user = $user['data'];
  1927. }
  1928. //
  1929. $projectid = intval(Request::input('projectid'));
  1930. $taskid = intval(Request::input('taskid'));
  1931. if ($projectid > 0) {
  1932. $inRes = Project::inThe($projectid, $user['username']);
  1933. if (Base::isError($inRes)) {
  1934. return $inRes;
  1935. }
  1936. } else {
  1937. if ($taskid <= 0) {
  1938. return Base::retError('参数错误!');
  1939. }
  1940. $row = Base::DBC2A(DB::table('project_task')->select(['projectid'])->where([ 'id' => $taskid, 'username' => $user['username']])->first());
  1941. if (empty($row)) {
  1942. return Base::retError('你不是任务负责人!');
  1943. }
  1944. $projectid = $row['projectid'];
  1945. }
  1946. //
  1947. $data = Base::upload([
  1948. "file" => Request::file('files'),
  1949. "type" => 'file',
  1950. "path" => "uploads/projects/" . $projectid . "/",
  1951. ]);
  1952. if (Base::isError($data)) {
  1953. return Base::retError($data['msg']);
  1954. } else {
  1955. $fileData = $data['data'];
  1956. $thumb = 'images/files/file.png';
  1957. switch ($fileData['ext']) {
  1958. case "docx":
  1959. $thumb = 'images/files/doc.png';
  1960. break;
  1961. case "xlsx":
  1962. $thumb = 'images/files/xls.png';
  1963. break;
  1964. case "pptx":
  1965. $thumb = 'images/files/ppt.png';
  1966. break;
  1967. case "doc":
  1968. case "xls":
  1969. case "ppt":
  1970. case "txt":
  1971. case "esp":
  1972. case "gif":
  1973. $thumb = 'images/files/' . $fileData['ext'] . '.png';
  1974. break;
  1975. case "jpg":
  1976. case "jpeg":
  1977. case "png":
  1978. if (Base::imgThumb($fileData['file'], $fileData['file'] . "_thumb.jpg", 64, 0)) {
  1979. $thumb = $fileData['path'] . "_thumb.jpg";
  1980. }
  1981. break;
  1982. }
  1983. $array = [
  1984. 'projectid' => $projectid,
  1985. 'taskid' => $taskid,
  1986. 'name' => $fileData['name'],
  1987. 'size' => $fileData['size'] * 1024,
  1988. 'ext' => $fileData['ext'],
  1989. 'path' => $fileData['path'],
  1990. 'thumb' => $thumb,
  1991. 'username' => $user['username'],
  1992. 'indate' => Base::time(),
  1993. ];
  1994. $id = DB::table('project_files')->insertGetId($array);
  1995. $array['id'] = $id;
  1996. $array['path'] = Base::fillUrl($array['path']);
  1997. $array['thumb'] = Base::fillUrl($array['thumb']);
  1998. $array['download'] = 0;
  1999. $array['yetdown'] = 0;
  2000. DB::table('project_log')->insert([
  2001. 'type' => '日志',
  2002. 'projectid' => $projectid,
  2003. 'taskid' => $taskid,
  2004. 'username' => $user['username'],
  2005. 'detail' => '上传文件',
  2006. 'indate' => Base::time(),
  2007. 'other' => Base::array2string([
  2008. 'type' => 'file',
  2009. 'id' => $id,
  2010. 'name' => $fileData['name'],
  2011. ])
  2012. ]);
  2013. if ($taskid > 0) {
  2014. DB::table('project_task')->where('id', $taskid)->increment('filenum');
  2015. }
  2016. return Base::retSuccess('success', $array);
  2017. }
  2018. }
  2019. /**
  2020. * 项目文件-下载
  2021. *
  2022. * @apiParam {Number} fileid 文件ID
  2023. */
  2024. public function files__download()
  2025. {
  2026. $fileDetail = Base::DBC2A(DB::table('project_files')->where('id', intval(Request::input('fileid')))->where('delete', 0)->first());
  2027. if (empty($fileDetail)) {
  2028. return abort(404, '文件不存在或已被删除!');
  2029. }
  2030. $filePath = public_path($fileDetail['path']);
  2031. if (!file_exists($filePath)) {
  2032. return abort(404, '文件不存在或已被删除。');
  2033. }
  2034. if (intval(Session::get('filesDownload:' . $fileDetail['id'])) !== 1) {
  2035. Session::put('filesDownload:' . $fileDetail['id'], 1);
  2036. DB::table('project_files')->where('id', $fileDetail['id'])->increment('download');
  2037. }
  2038. return response()->download($filePath, $fileDetail['name']);
  2039. }
  2040. /**
  2041. * 项目文件-重命名
  2042. *
  2043. * @apiParam {Number} fileid 文件ID
  2044. * @apiParam {String} name 新文件名称
  2045. */
  2046. public function files__rename()
  2047. {
  2048. $user = Users::authE();
  2049. if (Base::isError($user)) {
  2050. return $user;
  2051. } else {
  2052. $user = $user['data'];
  2053. }
  2054. //
  2055. $fileDetail = Base::DBC2A(DB::table('project_files')->where('id', intval(Request::input('fileid')))->where('delete', 0)->first());
  2056. if (empty($fileDetail)) {
  2057. return Base::retError('文件不存在或已被删除!');
  2058. }
  2059. if ($fileDetail['username'] != $user['username']) {
  2060. $inRes = Project::inThe($fileDetail['projectid'], $user['username'], true);
  2061. if (Base::isError($inRes)) {
  2062. return Base::retError('此操作仅支持管理员或上传者!');
  2063. }
  2064. }
  2065. //
  2066. $name = Base::rightDelete(trim(Request::input('name')), '.' . $fileDetail['ext']);
  2067. if (empty($name)) {
  2068. return Base::retError('文件名称不能为空!');
  2069. } elseif (mb_strlen($name) > 32) {
  2070. return Base::retError('文件名称最多只能设置32个字!');
  2071. }
  2072. //
  2073. $name .= '.' . $fileDetail['ext'];
  2074. if (DB::table('project_files')->where('id', $fileDetail['id'])->update([ 'name' => $name ])) {
  2075. DB::table('project_log')->insert([
  2076. 'type' => '日志',
  2077. 'projectid' => $fileDetail['projectid'],
  2078. 'taskid' => $fileDetail['taskid'],
  2079. 'username' => $user['username'],
  2080. 'detail' => '文件【' . $fileDetail['name'] . '】重命名',
  2081. 'indate' => Base::time(),
  2082. 'other' => Base::array2string([
  2083. 'type' => 'file',
  2084. 'id' => $fileDetail['id'],
  2085. 'name' => $name,
  2086. ])
  2087. ]);
  2088. }
  2089. //
  2090. return Base::retSuccess('修改成功!', [
  2091. 'name' => $name,
  2092. ]);
  2093. }
  2094. /**
  2095. * 项目文件-删除
  2096. *
  2097. * @apiParam {Number} fileid 文件ID
  2098. */
  2099. public function files__delete()
  2100. {
  2101. $user = Users::authE();
  2102. if (Base::isError($user)) {
  2103. return $user;
  2104. } else {
  2105. $user = $user['data'];
  2106. }
  2107. //
  2108. $fileDetail = Base::DBC2A(DB::table('project_files')->where('id', intval(Request::input('fileid')))->where('delete', 0)->first());
  2109. if (empty($fileDetail)) {
  2110. return Base::retError('文件不存在或已被删除!');
  2111. }
  2112. if ($fileDetail['username'] != $user['username']) {
  2113. $inRes = Project::inThe($fileDetail['projectid'], $user['username'], true);
  2114. if (Base::isError($inRes)) {
  2115. return Base::retError('此操作仅支持管理员或上传者!');
  2116. }
  2117. }
  2118. //
  2119. DB::table('project_files')->where('id', $fileDetail['id'])->update([
  2120. 'delete' => 1,
  2121. 'deletedate' => Base::time()
  2122. ]);
  2123. DB::table('project_log')->insert([
  2124. 'type' => '日志',
  2125. 'projectid' => $fileDetail['projectid'],
  2126. 'taskid' => $fileDetail['taskid'],
  2127. 'username' => $user['username'],
  2128. 'detail' => '删除文件',
  2129. 'indate' => Base::time(),
  2130. 'other' => Base::array2string([
  2131. 'type' => 'file',
  2132. 'id' => $fileDetail['id'],
  2133. 'name' => $fileDetail['name'],
  2134. ])
  2135. ]);
  2136. if ($fileDetail['taskid'] > 0) {
  2137. DB::table('project_task')->where('id', $fileDetail['taskid'])->decrement('filenum');
  2138. }
  2139. //
  2140. return Base::retSuccess('删除成功!');
  2141. }
  2142. /**
  2143. * 项目动态-列表
  2144. *
  2145. * @apiParam {Number} [projectid] 项目ID
  2146. * @apiParam {Number} [taskid] 任务ID(如果项目ID为空时此参必须赋值且任务必须是自己负责人)
  2147. * @apiParam {String} [type] 类型
  2148. * - 全部: 日志+评论(默认)
  2149. * - 日志
  2150. * - 评论
  2151. * @apiParam {String} [username] 用户名
  2152. * @apiParam {Number} [page] 当前页,默认:1
  2153. * @apiParam {Number} [pagesize] 每页显示数量,默认:20,最大:100
  2154. */
  2155. public function log__lists()
  2156. {
  2157. $user = Users::authE();
  2158. if (Base::isError($user)) {
  2159. return $user;
  2160. } else {
  2161. $user = $user['data'];
  2162. }
  2163. //
  2164. $projectid = intval(Request::input('projectid'));
  2165. if ($projectid > 0) {
  2166. $inRes = Project::inThe($projectid, $user['username']);
  2167. if (Base::isError($inRes)) {
  2168. return $inRes;
  2169. }
  2170. }
  2171. //
  2172. $taskid = intval(Request::input('taskid'));
  2173. $whereArray = [];
  2174. $whereFunc = null;
  2175. if ($projectid > 0) {
  2176. $whereArray[] = ['projectid', '=', $projectid];
  2177. if ($taskid > 0) {
  2178. $whereArray[] = ['taskid', '=', $taskid];
  2179. }
  2180. } else {
  2181. if ($taskid < 0) {
  2182. return Base::retError('参数错误!');
  2183. }
  2184. $count = DB::table('project_task')->where([ 'id' => $taskid, 'username' => $user['username']])->count();
  2185. if ($count <= 0) {
  2186. return Base::retError('你不是任务负责人!');
  2187. }
  2188. $whereArray[] = ['taskid', '=', $taskid];
  2189. }
  2190. if (trim(Request::input('username'))) {
  2191. $whereArray[] = ['username', '=', trim(Request::input('username'))];
  2192. }
  2193. switch (trim(Request::input('type'))) {
  2194. case '日志': {
  2195. $whereArray[] = ['type', '=', '日志'];
  2196. break;
  2197. }
  2198. case '评论': {
  2199. $whereArray[] = ['type', '=', '评论'];
  2200. break;
  2201. }
  2202. default: {
  2203. $whereFunc = function ($query) {
  2204. $query->whereIn('type', ['日志', '评论']);
  2205. };
  2206. break;
  2207. }
  2208. }
  2209. //
  2210. $lists = DB::table('project_log')
  2211. ->where($whereArray)
  2212. ->where($whereFunc)
  2213. ->orderByDesc('indate')->paginate(Min(Max(Base::nullShow(Request::input('pagesize'), 10), 1), 100));
  2214. $lists = Base::getPageList($lists);
  2215. if ($lists['total'] == 0) {
  2216. return Base::retError('未找到任何相关的记录', $lists);
  2217. }
  2218. foreach ($lists['lists'] AS $key => $item) {
  2219. $item = array_merge($item, Users::username2basic($item['username']));
  2220. $item['timeData'] = [
  2221. 'ymd' => date(date("Y", $item['indate']) == date("Y", Base::time()) ? "m-d" : "Y-m-d", $item['indate']),
  2222. 'hi' => date("h:i", $item['indate']) ,
  2223. 'week' => "周" . Base::getTimeWeek($item['indate']),
  2224. 'segment' => Base::getTimeDayeSegment($item['indate']),
  2225. ];
  2226. $item['other'] = Base::string2array($item['other'], ['type' => '']);
  2227. $lists['lists'][$key] = $item;
  2228. }
  2229. return Base::retSuccess('success', $lists);
  2230. }
  2231. }