| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691 |
- <?php
- namespace App\Http\Controllers\Api;
- use App\Http\Controllers\Controller;
- use App\Model\DBCache;
- use App\Module\Base;
- use App\Module\BillExport;
- use App\Module\Project;
- use App\Module\Users;
- use DB;
- use Madzipper;
- use Request;
- use Session;
- /**
- * @apiDefine project
- *
- * 项目
- */
- class ProjectController extends Controller
- {
- public function __invoke($method, $action = '')
- {
- $app = $method ? $method : 'main';
- if ($action) {
- $app .= "__" . $action;
- }
- return (method_exists($this, $app)) ? $this->$app() : Base::ajaxError("404 not found (" . str_replace("__", "/", $app) . ").");
- }
- /**
- * 项目列表
- *
- * @apiParam {String} act 类型
- * - join: 加入的项目(默认)
- * - favor: 收藏的项目
- * - manage: 管理的项目
- * @apiParam {Number} [page] 当前页,默认:1
- * @apiParam {Number} [pagesize] 每页显示数量,默认:20,最大:100
- */
- public function lists()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $whereArray = [];
- $whereArray[] = ['project_lists.delete', '=', 0];
- $whereArray[] = ['project_users.username', '=', $user['username']];
- switch (Request::input('act')) {
- case "favor": {
- $whereArray[] = ['project_users.type', '=', '收藏'];
- break;
- }
- case "manage": {
- $whereArray[] = ['project_users.type', '=', '成员'];
- $whereArray[] = ['project_users.isowner', '=', 1];
- break;
- }
- default: {
- $whereArray[] = ['project_users.type', '=', '成员'];
- break;
- }
- }
- $lists = DB::table('project_lists')
- ->join('project_users', 'project_lists.id', '=', 'project_users.projectid')
- ->select(['project_lists.*', 'project_users.isowner', 'project_users.indate as uindate'])
- ->where($whereArray)
- ->orderByDesc('project_lists.id')->paginate(Base::getPaginate(100, 20));
- $lists = Base::getPageList($lists);
- if ($lists['total'] == 0) {
- return Base::retError('未找到任何相关的项目');
- }
- return Base::retSuccess('success', $lists);
- }
- /**
- * 项目详情
- *
- * @apiParam {Number} projectid 项目ID
- */
- public function detail()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $projectid = trim(Request::input('projectid'));
- $projectDetail = Base::DBC2A(DB::table('project_lists')->where('id', $projectid)->where('delete', 0)->first());
- if (empty($projectDetail)) {
- return Base::retError('项目不存在或已被删除!');
- }
- $inRes = Project::inThe($projectid, $user['username']);
- if (Base::isError($inRes)) {
- return $inRes;
- }
- $projectSetting = Base::string2array($projectDetail['setting']);
- //子分类
- $label = Base::DBC2A(DB::table('project_label')->where('projectid', $projectid)->orderBy('inorder')->orderBy('id')->get());
- $simpleLabel = [];
- //任务
- $whereArray = [ 'projectid' => $projectid, 'delete' => 0, 'complete' => 0 ];
- if ($projectSetting['complete_show'] == 'show') {
- unset($whereArray['complete']);
- }
- $task = Base::DBC2A(DB::table('project_task')->where($whereArray)->orderByDesc('inorder')->orderByDesc('id')->get());
- //任务归类
- foreach ($label AS $index => $temp) {
- $taskLists = [];
- foreach ($task AS $info) {
- if ($temp['id'] == $info['labelid']) {
- $info['persons'] = Project::taskPersons($info);
- $info['overdue'] = Project::taskIsOverdue($info);
- $info['subtask'] = Base::string2array($info['subtask']);
- $info['follower'] = Base::string2array($info['follower']);
- $taskLists[] = array_merge($info, Users::username2basic($info['username']));
- }
- }
- $label[$index]['taskLists'] = $taskLists;
- $simpleLabel[] = ['id' => $temp['id'], 'title' => $temp['title']];
- }
- //
- return Base::retSuccess('success', [
- 'project' => $projectDetail,
- 'label' => $label,
- 'simpleLabel' => $simpleLabel,
- ]);
- }
- /**
- * 获取项目负责人
- *
- * @apiParam {Number} projectid 项目ID
- */
- public function leader()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $projectid = trim(Request::input('projectid'));
- $projectDetail = Base::DBC2A(DB::table('project_lists')->select(['username'])->where('id', $projectid)->where('delete', 0)->first());
- if (empty($projectDetail)) {
- return Base::retError('项目不存在或已被删除!');
- }
- return Base::retSuccess('success', [
- 'username' => $projectDetail['username'],
- ]);
- }
- /**
- * 添加项目
- *
- * @apiParam {String} title 项目名称
- * @apiParam {Array} labels 流程,格式[流程1, 流程2]
- */
- public function add()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //项目名称
- $title = trim(Request::input('title'));
- if (mb_strlen($title) < 2) {
- return Base::retError('项目名称不可以少于2个字!');
- } elseif (mb_strlen($title) > 32) {
- return Base::retError('项目名称最多只能设置32个字!');
- }
- //流程
- $labels = Request::input('labels');
- if (!is_array($labels)) $labels = [];
- $insertLabels = [];
- $inorder = 0;
- foreach ($labels AS $label) {
- $label = trim($label);
- if ($label) {
- $insertLabels[] = [
- 'title' => $label,
- 'inorder' => $inorder++,
- ];
- }
- }
- if (empty($insertLabels)) {
- $insertLabels[] = [
- 'title' => '默认',
- 'inorder' => 0,
- ];
- }
- if (count($insertLabels) > 100) {
- return Base::retError(['项目流程最多不能超过%个!', 100]);
- }
- //开始创建
- $projectid = DB::table('project_lists')->insertGetId([
- 'title' => $title,
- 'username' => $user['username'],
- 'createuser' => $user['username'],
- 'indate' => Base::time()
- ]);
- if ($projectid) {
- foreach ($insertLabels AS $key => $label) {
- $insertLabels[$key]['projectid'] = $projectid;
- }
- DB::table('project_label')->insert($insertLabels);
- DB::table('project_log')->insert([
- 'type' => '日志',
- 'projectid' => $projectid,
- 'username' => $user['username'],
- 'detail' => '创建项目',
- 'indate' => Base::time()
- ]);
- DB::table('project_users')->insert([
- 'type' => '成员',
- 'projectid' => $projectid,
- 'isowner' => 1,
- 'username' => $user['username'],
- 'indate' => Base::time()
- ]);
- return Base::retSuccess('添加成功!');
- } else {
- return Base::retError('添加失败!');
- }
- }
- /**
- * 设置项目
- *
- * @apiParam {String} act 类型
- * - save: 保存
- * - other: 读取
- * @apiParam {Number} projectid 项目ID
- * @apiParam {Object} ... 其他保存参数
- *
- * @throws \Throwable
- */
- public function setting()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $projectid = trim(Request::input('projectid'));
- $projectDetail = Base::DBC2A(DB::table('project_lists')->where('id', $projectid)->where('delete', 0)->first());
- if (empty($projectDetail)) {
- return Base::retError('项目不存在或已被删除!');
- }
- //
- $setting = Base::string2array($projectDetail['setting']);
- $act = trim(Request::input('act'));
- if ($act == 'save') {
- if ($projectDetail['username'] != $user['username']) {
- return Base::retError('你不是项目负责人!');
- }
- foreach (Request::input() AS $key => $value) {
- if (in_array($key, ['project_desc', 'add_role', 'edit_role', 'complete_role', 'archived_role', 'del_role', 'complete_show'])) {
- $setting[$key] = $value;
- }
- }
- DB::table('project_lists')->where('id', $projectDetail['id'])->update([
- 'setting' => Base::string2array($setting)
- ]);
- }
- //
- foreach (['edit_role', 'complete_role', 'archived_role', 'del_role'] AS $key) {
- $setting[$key] = is_array($setting[$key]) ? $setting[$key] : ['__', 'owner'];
- }
- $setting['add_role'] = is_array($setting['add_role']) ? $setting['add_role'] : ['__', 'member'];
- $setting['complete_show'] = $setting['complete_show'] ?: 'hide';
- //
- return Base::retSuccess($act == 'save' ? '修改成功!' : 'success', $setting ?: json_decode('{}'));
- }
- /**
- * 收藏项目
- *
- * @apiParam {String} act 类型
- * - cancel: 取消收藏
- * - else: 添加收藏
- * @apiParam {Number} projectid 项目ID
- *
- * @throws \Throwable
- */
- public function favor()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $projectid = trim(Request::input('projectid'));
- $projectDetail = Base::DBC2A(DB::table('project_lists')->where('id', $projectid)->where('delete', 0)->first());
- if (empty($projectDetail)) {
- return Base::retError('项目不存在或已被删除!');
- }
- return DB::transaction(function () use ($projectDetail, $user) {
- switch (Request::input('act')) {
- case 'cancel': {
- if (DB::table('project_users')->where([
- 'type' => '收藏',
- 'projectid' => $projectDetail['id'],
- 'username' => $user['username'],
- ])->delete()) {
- DB::table('project_log')->insert([
- 'type' => '日志',
- 'projectid' => $projectDetail['id'],
- 'username' => $user['username'],
- 'detail' => '取消收藏',
- 'indate' => Base::time()
- ]);
- return Base::retSuccess('取消成功!');
- }
- return Base::retSuccess('已取消!');
- }
- default: {
- $row = Base::DBC2A(DB::table('project_users')->where([
- 'type' => '收藏',
- 'projectid' => $projectDetail['id'],
- 'username' => $user['username'],
- ])->lockForUpdate()->first());
- if (empty($row)) {
- DB::table('project_users')->insert([
- 'type' => '收藏',
- 'projectid' => $projectDetail['id'],
- 'isowner' => $projectDetail['username'] == $user['username'] ? 1 : 0,
- 'username' => $user['username'],
- 'indate' => Base::time()
- ]);
- DB::table('project_log')->insert([
- 'type' => '日志',
- 'projectid' => $projectDetail['id'],
- 'username' => $user['username'],
- 'detail' => '收藏项目',
- 'indate' => Base::time()
- ]);
- return Base::retSuccess('收藏成功!');
- }
- return Base::retSuccess('已收藏!');
- }
- }
- });
- }
- /**
- * 重命名项目
- *
- * @apiParam {Number} projectid 项目ID
- * @apiParam {String} title 项目新名称
- */
- public function rename()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $projectid = trim(Request::input('projectid'));
- $projectDetail = Base::DBC2A(DB::table('project_lists')->where('id', $projectid)->where('delete', 0)->first());
- if (empty($projectDetail)) {
- return Base::retError('项目不存在或已被删除!');
- }
- if ($projectDetail['username'] != $user['username']) {
- return Base::retError('你不是项目负责人!');
- }
- //
- $title = trim(Request::input('title'));
- if (mb_strlen($title) < 2) {
- return Base::retError('项目名称不可以少于2个字!');
- } elseif (mb_strlen($title) > 32) {
- return Base::retError('项目名称最多只能设置32个字!');
- }
- //
- DB::table('project_lists')->where('id', $projectDetail['id'])->update([
- 'title' => $title
- ]);
- DB::table('project_log')->insert([
- 'type' => '日志',
- 'projectid' => $projectDetail['id'],
- 'username' => $user['username'],
- 'detail' => '【' . $projectDetail['title'] . '】重命名【' . $title . '】',
- 'indate' => Base::time()
- ]);
- //
- return Base::retSuccess('修改成功!');
- }
- /**
- * 移交项目
- *
- * @apiParam {Number} projectid 项目ID
- * @apiParam {String} username 项目新负责人用户名
- *
- * @throws \Throwable
- */
- public function transfer()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $projectid = trim(Request::input('projectid'));
- $projectDetail = Base::DBC2A(DB::table('project_lists')->where('id', $projectid)->where('delete', 0)->first());
- if (empty($projectDetail)) {
- return Base::retError('项目不存在或已被删除!');
- }
- if ($projectDetail['username'] != $user['username']) {
- return Base::retError('你不是项目负责人!');
- }
- //
- $username = trim(Request::input('username'));
- if ($username == $projectDetail['username']) {
- return Base::retError('你已是项目负责人!');
- }
- $count = DB::table('users')->where('username', $username)->count();
- if ($count <= 0) {
- return Base::retError(['成员用户名(%)不存在!', $username]);
- }
- //判断是否已在项目成员内
- $inRes = Project::inThe($projectDetail['id'], $username);
- if (Base::isError($inRes)) {
- DB::table('project_users')->insert([
- 'type' => '成员',
- 'projectid' => $projectDetail['id'],
- 'isowner' => 0,
- 'username' => $username,
- 'indate' => Base::time()
- ]);
- DB::table('project_log')->insert([
- 'type' => '日志',
- 'projectid' => $projectDetail['id'],
- 'username' => $username,
- 'detail' => '自动加入项目',
- 'indate' => Base::time()
- ]);
- }
- //开始移交
- return DB::transaction(function () use ($user, $username, $projectDetail) {
- DB::table('project_lists')->where('id', $projectDetail['id'])->update([
- 'username' => $username
- ]);
- DB::table('project_log')->insert([
- 'type' => '日志',
- 'projectid' => $projectDetail['id'],
- 'username' => $user['username'],
- 'detail' => '【' . $projectDetail['username'] . '】移交给【' . $username . '】',
- 'indate' => Base::time()
- ]);
- DB::table('project_users')->where([
- 'projectid' => $projectDetail['id'],
- 'username' => $projectDetail['username'],
- ])->update([
- 'isowner' => 0
- ]);
- DB::table('project_users')->where([
- 'projectid' => $projectDetail['id'],
- 'username' => $username,
- ])->update([
- 'isowner' => 1
- ]);
- return Base::retSuccess('移交成功!');
- });
- }
- /**
- * 删除项目
- *
- * @apiParam {Number} projectid 项目ID
- */
- public function delete()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $projectid = trim(Request::input('projectid'));
- $projectDetail = Base::DBC2A(DB::table('project_lists')->where('id', $projectid)->where('delete', 0)->first());
- if (empty($projectDetail)) {
- return Base::retError('项目不存在或已被删除!');
- }
- if ($projectDetail['username'] != $user['username']) {
- return Base::retError('你不是项目负责人!');
- }
- //
- DB::table('project_lists')->where('id', $projectDetail['id'])->update([
- 'delete' => 1,
- 'deletedate' => Base::time()
- ]);
- DB::table('project_task')->where('projectid', $projectDetail['id'])->update([
- 'delete' => 1,
- 'deletedate' => Base::time()
- ]);
- DB::table('project_files')->where('projectid', $projectDetail['id'])->update([
- 'delete' => 1,
- 'deletedate' => Base::time()
- ]);
- DB::table('project_log')->insert([
- 'type' => '日志',
- 'projectid' => $projectDetail['id'],
- 'username' => $user['username'],
- 'detail' => '删除项目',
- 'indate' => Base::time()
- ]);
- //
- return Base::retSuccess('删除成功!');
- }
- /**
- * 排序任务
- *
- * @apiParam {Number} projectid 项目ID
- * @apiParam {String} oldsort 旧排序数据
- * @apiParam {String} newsort 新排序数据
- * @apiParam {Number} label 赋值表示排序分类,否则排序任务(调整任务所属分类)
- */
- public function sort()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $projectid = trim(Request::input('projectid'));
- $inRes = Project::inThe($projectid, $user['username']);
- if (Base::isError($inRes)) {
- return $inRes;
- }
- //
- $oldSort = explode(";", Request::input('oldsort'));
- $newSort = explode(";", Request::input('newsort'));
- if (count($oldSort) != count($newSort)) {
- return Base::retError('参数错误!');
- }
- if (intval(Request::input('label'))) {
- //排序分类
- foreach ($newSort AS $sort => $item) {
- list($newLabelid, $newTask) = explode(':', $item);
- list($oldLabelid, $oldTask) = explode(':', $oldSort[$sort]);
- if ($newLabelid != $oldLabelid) {
- DB::table('project_label')->where([
- 'id' => $newLabelid,
- 'projectid' => $projectid
- ])->update([
- 'inorder' => intval($sort)
- ]);
- }
- }
- $detail = '调整任务列表排序';
- $sortType = 'label';
- } else {
- //排序任务(调整任务归类)
- foreach ($newSort AS $sort => $item) {
- list($newLabelid, $newTask) = explode(':', $item);
- list($oldLabelid, $oldTask) = explode(':', $oldSort[$sort]);
- if ($newTask != $oldTask) {
- $newTask = explode('-', $newTask);
- $inorder = count($newTask);
- foreach ($newTask AS $taskid) {
- DB::table('project_task')->where([
- 'id' => $taskid,
- 'projectid' => $projectid
- ])->update([
- 'labelid' => $newLabelid,
- 'inorder' => $inorder
- ]);
- $inorder--;
- }
- }
- }
- $detail = '调整任务排序';
- $sortType = 'task';
- }
- //
- $row = Base::DBC2A(DB::table('project_log')->where([ 'type' => '日志', 'projectid' => $projectid ])->orderByDesc('id')->first());
- $continue = 1;
- if ($row && $row['username'] == $user['username'] && $row['indate'] + 300 > Base::time()) {
- $other = Base::string2array($row['other']);
- if ($other['sortType'] == $sortType) {
- $continue = intval($other['continue']) + 1;
- if ($continue <= 100) {
- DB::table('project_log')->where('id', $row['id'])->update([
- 'detail' => $detail . '(' . $continue . '次)',
- 'other' => Base::array2string([
- 'sortType' => $sortType,
- 'continue' => $continue,
- 'times' => $other['times'] . '|' . Base::time(),
- ])
- ]);
- }
- }
- }
- if ($continue == 1) {
- DB::table('project_log')->insert([
- 'type' => '日志',
- 'projectid' => $projectid,
- 'username' => $user['username'],
- 'detail' => $detail,
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'sortType' => $sortType,
- 'continue' => $continue,
- 'times' => Base::time(),
- ])
- ]);
- }
- return Base::retSuccess('保存成功!');
- }
- /**
- * 排序任务(todo待办)
- *
- * @apiParam {String} oldsort 旧排序数据
- * @apiParam {String} newsort 新排序数据
- */
- public function sort__todo()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $oldSort = explode(";", Request::input('oldsort'));
- $newSort = explode(";", Request::input('newsort'));
- if (count($oldSort) != count($newSort)) {
- return Base::retError('参数错误!');
- }
- //
- $levels = [];
- $logArray = [];
- $taskLevel = [];
- foreach ($newSort AS $sort => $item) {
- list($newLevel, $newTask) = explode(':', $item);
- list($oldLevel, $oldTask) = explode(':', $oldSort[$sort]);
- if ($newTask != $oldTask) {
- $newTask = explode('-', $newTask);
- $oldTask = explode('-', $oldTask);
- $userorder = intval(DB::table('project_task')->select('userorder')->where([
- 'delete' => 0,
- 'archived' => 0,
- 'level' => $newLevel,
- 'username' => $user['username'],
- ])->orderByDesc('userorder')->value('userorder'));
- if (count($newTask) < count($oldTask)) {
- $userorder--;
- } else {
- $userorder++;
- }
- foreach ($newTask AS $taskid) {
- $task = Base::DBC2A(DB::table('project_task')->select(['id', 'title', 'projectid', 'level', 'userorder'])->where([
- 'id' => $taskid,
- 'username' => $user['username']
- ])->first());
- $upArray = [];
- if ($task) {
- if ($task['level'] != $newLevel) {
- $upArray['level'] = $newLevel;
- $logArray[] = [
- 'type' => '日志',
- 'projectid' => $task['projectid'],
- 'taskid' => $task['id'],
- 'username' => $user['username'],
- 'detail' => '调整任务等级为【P' . $newLevel . '】',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'task',
- 'id' => $task['id'],
- 'title' => $task['title'],
- ])
- ];
- $taskLevel[] = [
- 'id' => $task['id'],
- 'level' => $newLevel,
- ];
- }
- if ($task['userorder'] != $userorder) {
- $upArray['userorder'] = $userorder;
- }
- }
- if ($upArray) {
- DB::table('project_task')->where('id', $taskid)->update($upArray);
- }
- $userorder--;
- }
- $levels[] = $newLevel;
- }
- }
- if ($logArray) {
- DB::table('project_log')->insert($logArray);
- }
- //
- return Base::retSuccess('保存成功!', [
- 'levels' => $levels,
- 'taskLevel' => $taskLevel,
- ]);
- }
- /**
- * 退出项目
- *
- * @apiParam {Number} projectid 项目ID
- */
- public function out()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $projectid = trim(Request::input('projectid'));
- $projectDetail = Base::DBC2A(DB::table('project_lists')->where('id', $projectid)->where('delete', 0)->first());
- if (empty($projectDetail)) {
- return Base::retError('项目不存在或已被删除!');
- }
- if ($projectDetail['username'] == $user['username']) {
- return Base::retError('你是项目负责人,不可退出项目!');
- }
- $inRes = Project::inThe($projectid, $user['username']);
- if (Base::isError($inRes)) {
- return $inRes;
- }
- //
- DB::table('project_users')->where([
- 'type' => '成员',
- 'projectid' => $projectDetail['id'],
- 'username' => $user['username'],
- ])->delete();
- DB::table('project_log')->insert([
- 'type' => '日志',
- 'projectid' => $projectDetail['id'],
- 'username' => $user['username'],
- 'detail' => '退出项目',
- 'indate' => Base::time()
- ]);
- //
- return Base::retSuccess('退出项目成功!');
- }
- /**
- * 项目成员-列表
- *
- * @apiParam {Number} projectid 项目ID
- * @apiParam {Number} [page] 当前页,默认:1
- * @apiParam {Number} [pagesize] 每页显示数量,默认:20,最大:100
- */
- public function users__lists()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $projectid = intval(Request::input('projectid'));
- $inRes = Project::inThe($projectid, $user['username']);
- if (Base::isError($inRes)) {
- return $inRes;
- }
- //
- $lists = DB::table('project_lists')
- ->join('project_users', 'project_lists.id', '=', 'project_users.projectid')
- ->select(['project_lists.title', 'project_users.*'])
- ->where([
- ['project_lists.id', $projectid],
- ['project_lists.delete', 0],
- ['project_users.type', '成员'],
- ])
- ->orderByDesc('project_users.isowner')->orderByDesc('project_users.id')->paginate(Base::getPaginate(100, 20));
- $lists = Base::getPageList($lists);
- if ($lists['total'] == 0) {
- return Base::retError('未找到任何相关的成员');
- }
- foreach ($lists['lists'] AS $key => $projectDetail) {
- $userInfo = Users::username2basic($projectDetail['username']);
- $lists['lists'][$key]['userimg'] = $userInfo['userimg'];
- $lists['lists'][$key]['nickname'] = $userInfo['nickname'];
- $lists['lists'][$key]['profession'] = $userInfo['profession'];
- }
- return Base::retSuccess('success', $lists);
- }
- /**
- * 项目成员-添加、删除
- *
- * @apiParam {String} act
- * - delete: 删除成员
- * - else: 添加成员
- * @apiParam {Number} projectid 项目ID
- * @apiParam {Array|String} username 用户名(或用户名组)
- */
- public function users__join()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $projectid = trim(Request::input('projectid'));
- $projectDetail = Base::DBC2A(DB::table('project_lists')->where('id', $projectid)->where('delete', 0)->first());
- if (empty($projectDetail)) {
- return Base::retError('项目不存在或已被删除!');
- }
- $usernames = Request::input('username');
- if (empty($usernames)) {
- return Base::retError('参数错误!');
- }
- if (!is_array($usernames)) {
- if (Base::strExists($usernames, ',')) {
- $usernames = explode(',', $usernames);
- } else {
- $usernames = [$usernames];
- }
- }
- //
- $logArray = [];
- foreach ($usernames AS $username) {
- $inRes = Project::inThe($projectid, $username);
- switch (Request::input('act')) {
- case 'delete': {
- if (!Base::isError($inRes) && $projectDetail['username'] != $username) {
- DB::table('project_users')->where([
- 'type' => '成员',
- 'projectid' => $projectid,
- 'username' => $username,
- ])->delete();
- $logArray[] = [
- 'type' => '日志',
- 'projectid' => $projectDetail['id'],
- 'username' => $user['username'],
- 'detail' => '将成员移出项目',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'username',
- 'username' => $username,
- ])
- ];
- }
- break;
- }
- default: {
- if (Base::isError($inRes)) {
- DB::table('project_users')->insert([
- 'type' => '成员',
- 'projectid' => $projectid,
- 'isowner' => 0,
- 'username' => $username,
- 'indate' => Base::time()
- ]);
- $logArray[] = [
- 'type' => '日志',
- 'projectid' => $projectDetail['id'],
- 'username' => $user['username'],
- 'detail' => '邀请成员加入项目',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'username',
- 'username' => $username,
- ])
- ];
- }
- break;
- }
- }
- }
- if ($logArray) {
- DB::table('project_log')->insert($logArray);
- }
- return Base::retSuccess('操作完成!');
- }
- /**
- * 项目子分类-添加分类
- *
- * @apiParam {Number} projectid 项目ID
- * @apiParam {String} title 分类名称
- */
- public function label__add()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $projectid = trim(Request::input('projectid'));
- $inRes = Project::inThe($projectid, $user['username']);
- if (Base::isError($inRes)) {
- return $inRes;
- }
- //
- $title = trim(Request::input('title'));
- if (empty($title)) {
- return Base::retError('列表名称不能为空!');
- } elseif (mb_strlen($title) > 32) {
- return Base::retError('列表名称最多只能设置32个字!');
- }
- //
- $count = DB::table('project_label')->where('projectid', $projectid)->where('title', $title)->count();
- if ($count > 0) {
- return Base::retError('列表名称已存在!');
- }
- if (DB::table('project_label')->where('projectid', $projectid)->count() + 1 >= 100) {
- return Base::retError(['列表最多不能超过%个!', 100]);
- }
- //
- $id = DB::table('project_label')->insertGetId([
- 'projectid' => $projectid,
- 'title' => $title,
- 'inorder' => intval(DB::table('project_label')->where('projectid', $projectid)->orderByDesc('inorder')->value('inorder')) + 1,
- ]);
- if (empty($id)) {
- return Base::retError('系统繁忙,请稍后再试!');
- }
- DB::table('project_log')->insert([
- 'type' => '日志',
- 'projectid' => $projectid,
- 'username' => $user['username'],
- 'detail' => '添加任务列表【' . $title . '】',
- 'indate' => Base::time()
- ]);
- //
- $row = Base::DBC2A(DB::table('project_label')->where('id', $id)->first());
- $row['taskLists'] = [];
- return Base::retSuccess('添加成功!', $row);
- }
- /**
- * 项目子分类-重命名分类
- *
- * @apiParam {Number} projectid 项目ID
- * @apiParam {Number} labelid 分类ID
- * @apiParam {String} title 新分类名称
- */
- public function label__rename()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $projectid = trim(Request::input('projectid'));
- $inRes = Project::inThe($projectid, $user['username']);
- if (Base::isError($inRes)) {
- return $inRes;
- }
- //
- $title = trim(Request::input('title'));
- if (empty($title)) {
- return Base::retError('列表名称不能为空!');
- } elseif (mb_strlen($title) > 32) {
- return Base::retError('列表名称最多只能设置32个字!');
- }
- //
- $labelid = intval(Request::input('labelid'));
- $count = DB::table('project_label')->where('id', '!=', $labelid)->where('projectid', $projectid)->where('title', $title)->count();
- if ($count > 0) {
- return Base::retError('列表名称已存在!');
- }
- //
- $labelDetail = Base::DBC2A(DB::table('project_label')->where('id', $labelid)->where('projectid', $projectid)->first());
- if (empty($labelDetail)) {
- return Base::retError('列表不存在或已被删除!');
- }
- //
- if (DB::table('project_label')->where('id', $labelDetail['id'])->update([ 'title' => $title ])) {
- DB::table('project_log')->insert([
- 'type' => '日志',
- 'projectid' => $projectid,
- 'username' => $user['username'],
- 'detail' => '任务列表【' . $labelDetail['title'] . '】重命名【' . $title . '】',
- 'indate' => Base::time()
- ]);
- }
- //
- return Base::retSuccess('修改成功!');
- }
- /**
- * 项目子分类-删除分类
- *
- * @apiParam {Number} projectid 项目ID
- * @apiParam {Number} labelid 分类ID
- *
- * @throws \Throwable
- */
- public function label__delete()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $projectid = trim(Request::input('projectid'));
- $inRes = Project::inThe($projectid, $user['username']);
- if (Base::isError($inRes)) {
- return $inRes;
- }
- //
- $labelid = intval(Request::input('labelid'));
- $labelDetail = Base::DBC2A(DB::table('project_label')->where('id', $labelid)->where('projectid', $projectid)->first());
- if (empty($labelDetail)) {
- return Base::retError('列表不存在或已被删除!');
- }
- //
- return DB::transaction(function () use ($user, $projectid, $labelDetail) {
- $taskLists = Base::DBC2A(DB::table('project_task')->where('labelid', $labelDetail['id'])->get());
- $logArray = [];
- foreach ($taskLists AS $task) {
- $logArray[] = [
- 'type' => '日志',
- 'projectid' => $projectid,
- 'taskid' => $task['id'],
- 'username' => $user['username'],
- 'detail' => '删除列表任务',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'task',
- 'id' => $task['id'],
- 'title' => $task['title'],
- ])
- ];
- }
- $logArray[] = [
- 'type' => '日志',
- 'projectid' => $projectid,
- 'taskid' => 0,
- 'username' => $user['username'],
- 'detail' => '删除任务列表【' . $labelDetail['title'] . '】',
- 'indate' => Base::time(),
- 'other' => Base::array2string([])
- ];
- DB::table('project_task')->where('labelid', $labelDetail['id'])->update([
- 'delete' => 1,
- 'deletedate' => Base::time()
- ]);
- DB::table('project_label')->where('id', $labelDetail['id'])->delete();
- DB::table('project_log')->insert($logArray);
- Project::updateNum($projectid);
- //
- return Base::retSuccess('删除成功!');
- });
- }
- /**
- * 项目任务-列表
- *
- * @apiParam {Number} [projectid] 项目ID
- * @apiParam {Number} [labelid] 项目子分类ID
- * @apiParam {String} [username] 负责人用户名(如果项目ID为空时此参数无效只获取自己的任务)
- * @apiParam {Number} [level] 任务等级(1~4)
- * @apiParam {String} [archived] 任务是否归档
- * - 未归档 (默认)
- * - 已归档
- * - 全部
- * @apiParam {String} [type] 任务类型
- * - 全部(默认)
- * - 未完成
- * - 已超期
- * - 已完成
- * @apiParam {Number} [createuser] 是否仅获取自己创建的项目(1:是;赋值时projectid和username不强制)
- * @apiParam {Number} [attention] 是否仅获取关注数据(1:是;赋值时projectid和username不强制)
- * @apiParam {Number} [statistics] 是否获取统计数据(1:获取)
- * @apiParam {String} [startdate] 任务开始时间,格式:YYYY-MM-DD
- * @apiParam {String} [enddate] 任务结束时间,格式:YYYY-MM-DD
- *
- * @apiParam {Object} [sorts] 排序方式,格式:{key:'', order:''}
- * - key: title|labelid|enddate|username|level|indate|type|inorder(默认)|userorder
- * - order: asc|desc
- * - 【archived=已归档】或【startdate和enddate赋值】时无效
- *
- * @apiParam {Number} [page] 当前页,默认:1
- * @apiParam {Number} [pagesize] 每页显示数量,默认:20,最大:100
- * @apiParam {Number} [export] 是否导出并返回下载地址(1:是;仅支持projectid赋值时)
- */
- public function task__lists()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $projectid = intval(Request::input('projectid'));
- $export = intval(Request::input('export'));
- if ($projectid > 0) {
- $inRes = Project::inThe($projectid, $user['username']);
- if (Base::isError($inRes)) {
- return $inRes;
- }
- } else {
- $export = 0;
- }
- //
- $orderBy = '`inorder` DESC,`id` DESC';
- $sorts = Base::json2array(Request::input('sorts'));
- if (in_array($sorts['order'], ['asc', 'desc'])) {
- switch ($sorts['key']) {
- case 'title':
- case 'labelid':
- case 'enddate':
- case 'username':
- case 'level':
- case 'indate':
- case 'inorder':
- case 'userorder':
- $orderBy = '`' . $sorts['key'] . '` ' . $sorts['order'] . ',`id` DESC';
- break;
- case 'type':
- $orderBy = 'CASE WHEN `complete`= 0 AND `enddate` BETWEEN 1 AND ' . Base::time() . ' THEN 0 ELSE 1 END ' . $sorts['order'] . ', `complete` ' . $sorts['order'] . ',`id` DESC';
- break;
- }
- }
- //
- $builder = DB::table('project_task');
- $selectArray = ['project_task.*'];
- $whereRaw = null;
- $whereFunc = null;
- $whereArray = [];
- $whereArray[] = ['project_task.delete', '=', 0];
- if (intval(Request::input('createuser')) === 1) {
- $whereArray[] = ['project_task.createuser', '=', $user['username']];
- if ($projectid > 0) {
- $whereArray[] = ['project_lists.id', '=', $projectid];
- }
- if (trim(Request::input('username'))) {
- $whereArray[] = ['project_task.username', '=', trim(Request::input('username'))];
- }
- } else if (intval(Request::input('attention')) === 1) {
- if ($projectid > 0) {
- $whereArray[] = ['project_lists.id', '=', $projectid];
- }
- if (trim(Request::input('username'))) {
- $whereArray[] = ['project_task.username', '=', trim(Request::input('username'))];
- }
- } else {
- if ($projectid > 0) {
- $whereArray[] = ['project_lists.id', '=', $projectid];
- if (trim(Request::input('username'))) {
- $whereArray[] = ['project_task.username', '=', trim(Request::input('username'))];
- }
- } else {
- $builder->where(function ($query) use ($user) {
- $query->where('project_task.username', $user['username']);
- $query->orWhereIn('project_task.id', function ($inQuery) use ($user) {
- $inQuery->from('project_users')
- ->select('taskid')
- ->where('username', $user['username'])
- ->where('type', '负责人');
- });
- });
- }
- }
- if (intval(Request::input('labelid')) > 0) {
- $whereArray[] = ['project_task.labelid', '=', intval(Request::input('labelid'))];
- }
- if (intval(Request::input('level')) > 0) {
- $whereArray[] = ['project_task.level', '=', intval(Request::input('level'))];
- }
- $archived = trim(Request::input('archived'));
- if (empty($archived)) $archived = "未归档";
- switch ($archived) {
- case '已归档':
- $whereArray[] = ['project_task.archived', '=', 1];
- $orderBy = '`archiveddate` DESC';
- break;
- case '未归档':
- $whereArray[] = ['project_task.archived', '=', 0];
- break;
- }
- $type = trim(Request::input('type'));
- switch ($type) {
- case '未完成':
- $whereArray[] = ['project_task.complete', '=', 0];
- break;
- case '已超期':
- $whereArray[] = ['project_task.complete', '=', 0];
- $whereArray[] = ['project_task.enddate', '>', 0];
- $whereArray[] = ['project_task.enddate', '<=', Base::time()];
- break;
- case '已完成':
- $whereArray[] = ['project_task.complete', '=', 1];
- break;
- }
- $startdate = trim(Request::input('startdate'));
- $enddate = trim(Request::input('enddate'));
- if (Base::isDate($startdate) || Base::isDate($enddate)) {
- $startdate = strtotime($startdate . ' 00:00:00');
- $enddate = strtotime($enddate . ' 23:59:59');
- $whereRaw.= $whereRaw ? ' AND ' : '';
- $whereRaw.= "((`startdate` >= " . $startdate . " OR `startdate` = 0) AND (`enddate` <= " . $enddate . " OR `enddate` = 0))";
- $orderBy = '`startdate` DESC';
- }
- //
- if ($projectid > 0) {
- $builder->join('project_lists', 'project_lists.id', '=', 'project_task.projectid');
- }
- if (intval(Request::input('attention')) === 1) {
- $builder->join('project_users', 'project_users.taskid', '=', 'project_task.id');
- $builder->where([
- ['project_users.type', '=', '关注'],
- ['project_users.username', '=', $user['username']],
- ]);
- $selectArray[] = 'project_users.indate AS attentiondate';
- }
- if ($whereRaw) {
- $builder->whereRaw($whereRaw);
- }
- $builder->select($selectArray)->where($whereArray)->orderByRaw($orderBy);
- if ($export) {
- //导出excel
- $checkRole = Project::role('project_role_export', $projectid);
- if (Base::isError($checkRole)) {
- return $checkRole;
- }
- $lists = Base::DBC2A($builder->get());
- if (empty($lists)) {
- return Base::retError('未找到任何相关的任务!');
- }
- $labels = DB::table('project_label')->select(['id', 'title'])->where('projectid', $projectid)->pluck('title', 'id');
- $fileName = str_replace(['/', '\\', ':', '*', '"', '<', '>', '|', '?'], '_', $checkRole['data']['title'] ?: $projectid) . '_' . Base::time() . '.xls';
- $filePath = "temp/task/export/" . date("Ym", Base::time());
- $headings = [];
- $headings[] = '任务ID';
- $headings[] = '任务标题';
- $headings[] = '任务阶段';
- $headings[] = '计划时间(开始)';
- $headings[] = '计划时间(结束)';
- $headings[] = '负责人';
- $headings[] = '负责人(昵称)';
- $headings[] = '创建人';
- $headings[] = '创建人(昵称)';
- $headings[] = '优先级';
- $headings[] = '状态';
- $headings[] = '是否超期';
- $headings[] = '创建时间';
- $data = [];
- foreach ($lists AS $info) {
- $overdue = Project::taskIsOverdue($info);
- $data[] = [
- $info['id'],
- $info['title'],
- $labels[$info['labelid']] ?: '-',
- $info['startdate'] ? date("Y-m-d H:i:s", $info['startdate']) : '-',
- $info['enddate'] ? date("Y-m-d H:i:s", $info['enddate']) : '-',
- $info['username'],
- DBCache::table('users')->where('username', $info['username'])->value('nickname') ?: $info['username'],
- $info['createuser'],
- DBCache::table('users')->where('username', $info['createuser'])->value('nickname') ?: $info['createuser'],
- 'P' . $info['level'],
- ($overdue ? '已超期' : ($info['complete'] ? '已完成' : '未完成')),
- $overdue ? '是' : '-',
- date("Y-m-d H:i:s", $info['indate'])
- ];
- }
- $res = BillExport::create()->setHeadings($headings)->setData($data)->store($filePath . "/" . $fileName);
- if ($res != 1) {
- return Base::retError(['导出失败,%!', $fileName]);
- }
- //
- $xlsPath = storage_path("app/" . $filePath . "/" . $fileName);
- $zipFile = "app/" . $filePath . "/" . Base::rightDelete($fileName, '.xls'). ".zip";
- $zipPath = storage_path($zipFile);
- if (file_exists($zipPath)) {
- Base::deleteDirAndFile($zipPath, true);
- }
- try {
- Madzipper::make($zipPath)->add($xlsPath)->close();
- } catch (\Exception $e) { }
- //
- if (file_exists($zipPath)) {
- $base64 = base64_encode(Base::array2string([
- 'projectid' => $projectid,
- 'file' => $zipFile,
- ]));
- Session::put('task::export:username', $user['username']);
- return Base::retSuccess("success", [
- 'size' => Base::twoFloat(filesize($zipPath) / 1024, true),
- 'url' => Base::fillUrl('api/project/task/export?data=' . urlencode($base64)),
- ]);
- } else {
- return Base::retError('打包失败,请稍后再试...');
- }
- }
- $lists = $builder->paginate(Base::getPaginate(100, 20));
- $lists = Base::getPageList($lists);
- if (intval(Request::input('statistics')) == 1) {
- $lists['statistics_unfinished'] = $type === '未完成' ? $lists['total'] : DB::table('project_task')->where('projectid', $projectid)->where('delete', 0)->where('archived', 0)->where('complete', 0)->count();
- $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();
- $lists['statistics_complete'] = $type === '已完成' ? $lists['total'] : DB::table('project_task')->where('projectid', $projectid)->where('delete', 0)->where('archived', 0)->where('complete', 1)->count();
- }
- if ($lists['total'] == 0) {
- return Base::retError('未找到任何相关的任务!', $lists);
- }
- foreach ($lists['lists'] AS $key => $info) {
- $info['persons'] = Project::taskPersons($info);
- $info['overdue'] = Project::taskIsOverdue($info);
- $info['subtask'] = Base::string2array($info['subtask']);
- $info['follower'] = Base::string2array($info['follower']);
- $lists['lists'][$key] = array_merge($info, Users::username2basic($info['username']));
- }
- return Base::retSuccess('success', $lists);
- }
- /**
- * 项目任务-导出结果
- *
- * @apiParam {String} data base64
- */
- public function task__export()
- {
- $username = Session::get('task::export:username');
- if (empty($username)) {
- return Base::ajaxError("请求已过期,请重新导出!", [], 0, 502);
- }
- $array = Base::string2array(base64_decode(urldecode(Request::input('data'))));
- $projectid = intval($array['projectid']);
- $file = $array['file'];
- if (empty($projectid)) {
- return Base::ajaxError("参数错误!", [], 0, 502);
- }
- if (empty($file) || !file_exists(storage_path($file))) {
- return Base::ajaxError("文件不存在!", [], 0, 502);
- }
- $checkRole = Project::role('project_role_export', $projectid, 0, $username);
- if (Base::isError($checkRole)) {
- return Base::ajaxError($checkRole['msg'], [], 0, 502);
- }
- return response()->download(storage_path($file), ($checkRole['data']['title'] ?: Base::time()) . '.zip');
- }
- /**
- * 项目任务-详情(与任务有关系的用户(关注的、在项目里的、负责人、创建者)都可以查到)
- *
- * @apiParam {Number} taskid 任务ID
- */
- public function task__detail()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $taskid = intval(Request::input('taskid'));
- $tmpLists = Project::taskSomeUsers($taskid);
- if (!in_array($user['username'], $tmpLists)) {
- return Base::retError('未能找到此任务或无法管理此任务!');
- }
- //
- $task = Base::DBC2A(DB::table('project_task')->where('id', $taskid)->first());
- $task['persons'] = Project::taskPersons($task);
- $task['overdue'] = Project::taskIsOverdue($task);
- $task['subtask'] = Base::string2array($task['subtask']);
- $task['follower'] = Base::string2array($task['follower']);
- $task = array_merge($task, Users::username2basic($task['username']));
- $task['projectTitle'] = $task['projectid'] > 0 ? DB::table('project_lists')->where('id', $task['projectid'])->value('title') : '';
- return Base::retSuccess('success', $task);
- }
- /**
- * 项目任务-描述(任务有关系的用户(关注的、在项目里的、负责人、创建者)都可以查到)
- *
- * @apiParam {Number} taskid 任务ID
- */
- public function task__desc()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $taskid = intval(Request::input('taskid'));
- $tmpLists = Project::taskSomeUsers($taskid);
- if (!in_array($user['username'], $tmpLists)) {
- return Base::retError('未能找到此任务或无法管理此任务!');
- }
- //
- $desc = DB::table('project_content')->where('taskid', $taskid)->value('content');
- if (empty($desc)) {
- $desc = DB::table('project_task')->where('id', $taskid)->value('desc');
- }
- return Base::retSuccess('success', [
- 'taskid' => $taskid,
- 'desc' => $desc
- ]);
- }
- /**
- * 项目任务-获取数量
- *
- * @apiParam {Number} [level] 任务等级(1~4,留空获取所有)
- */
- public function task__levelnum()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $whereArray = [];
- $whereArray[] = ['project_task.delete', '=', 0];
- $whereArray[] = ['project_task.username', '=', $user['username']];
- $whereArray[] = ['project_task.archived', '=', 0];
- $array = [
- 'level_1' => 0,
- 'level_2' => 0,
- 'level_3' => 0,
- 'level_4' => 0,
- ];
- $level = intval(Request::input('level'));
- if ($level > 0) {
- $array = [];
- $array['level_' . $level] = 0;
- }
- foreach ($array AS $key => $val) {
- $level = intval(Base::leftDelete($key, 'level_'));
- $array[$key] = DB::table('project_task')->where($whereArray)->where('level', $level)->count();
- }
- return Base::retSuccess('success', $array);
- }
- /**
- * 项目任务-添加任务
- *
- * @apiParam {String} title 任务标题
- * @apiParam {Number} [projectid] 项目ID
- * @apiParam {Number} [labelid] 项目子分类ID
- * @apiParam {Number} [level] 任务紧急级别(1~4,默认:2)
- * @apiParam {String} [username] 任务负责人用户名(如果项目ID为空时此参数无效,负责人为自己)
- * @apiParam {Number} [insertbottom] 是否添加至列表结尾(1:是,默认:0,仅适用于项目分类列表)
- *
- * @throws \Throwable
- */
- public function task__add()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $projectid = intval(Request::input('projectid'));
- $labelid = intval(Request::input('labelid'));
- $insertbottom = intval(Request::input('insertbottom'));
- if ($projectid > 0) {
- $projectDetail = Base::DBC2A(DB::table('project_lists')->where('id', $projectid)->where('delete', 0)->first());
- if (empty($projectDetail)) {
- return Base::retError('项目不存在或已被删除!');
- }
- //
- $labelDetail = Base::DBC2A(DB::table('project_label')->where('id', $labelid)->where('projectid', $projectid)->first());
- if (empty($labelDetail)) {
- return Base::retError('项目子分类不存在或已被删除!');
- }
- //
- $inRes = Project::inThe($projectid, $user['username']);
- if (Base::isError($inRes)) {
- return $inRes;
- }
- $checkRole = Project::role('add_role', $projectid, 0);
- if (Base::isError($checkRole)) {
- return $checkRole;
- }
- //
- $username = trim(Request::input('username'));
- if (empty($username)) {
- $username = $user['username'];
- }
- if ($username != $user['username']) {
- $inRes = Project::inThe($projectid, $username);
- if (Base::isError($inRes)) {
- return Base::retError('负责人不在项目成员内!');
- }
- }
- } else {
- $username = $user['username'];
- }
- //
- $title = trim(Request::input('title'));
- if (empty($title)) {
- return Base::retError('任务标题不能为空!');
- } elseif (mb_strlen($title) > 255) {
- return Base::retError('任务标题最多只能设置255个字!');
- }
- //
- $level = max(1, min(4, intval(Request::input('level'))));
- if (empty($projectid)) {
- $inorder = 0;
- } else {
- $inorder = intval(DB::table('project_task')->where('projectid', $projectid)->orderBy('inorder', $insertbottom ? 'asc' : 'desc')->value('inorder')) + ($insertbottom ? -1 : 1);
- }
- $userorder = intval(DB::table('project_task')->where('username', $user['username'])->where('level', $level)->orderByDesc('userorder')->value('userorder')) + 1;
- //
- $inArray = [
- 'projectid' => $projectid,
- 'labelid' => $labelid,
- 'createuser' => $user['username'],
- 'username' => $username,
- 'title' => $title,
- 'level' => $level,
- 'inorder' => $inorder,
- 'userorder' => $userorder,
- 'indate' => Base::time(),
- 'startdate' => Base::time(),
- 'subtask' => Base::array2string([]),
- 'follower' => Base::array2string([]),
- ];
- return DB::transaction(function () use ($inArray) {
- $taskid = DB::table('project_task')->insertGetId($inArray);
- if (empty($taskid)) {
- return Base::retError('系统繁忙,请稍后再试!');
- }
- DB::table('project_log')->insert([
- 'type' => '日志',
- 'projectid' => $inArray['projectid'],
- 'taskid' => $taskid,
- 'username' => $inArray['createuser'],
- 'detail' => '添加任务',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'task',
- 'id' => $taskid,
- 'title' => $inArray['title'],
- ])
- ]);
- Project::updateNum($inArray['projectid']);
- //
- $task = Base::DBC2A(DB::table('project_task')->where('id', $taskid)->first());
- $task['persons'] = Project::taskPersons($task);
- $task['overdue'] = Project::taskIsOverdue($task);
- $task['subtask'] = Base::string2array($task['subtask']);
- $task['follower'] = Base::string2array($task['follower']);
- $task = array_merge($task, Users::username2basic($task['username']));
- return Base::retSuccess('添加成功!', $task);
- });
- }
- /**
- * {post} 项目任务-修改
- *
- * @apiParam {Number} taskid 任务ID
- * @apiParam {String} act 修改字段|操作类型
- * - title: 标题
- * - desc: 描述
- * - level: 优先级
- * - username: 负责人
- * - plannedtime: 设置计划时间
- * - unplannedtime: 取消计划时间
- * - complete: 标记完成
- * - unfinished: 标记未完成
- * - archived: 归档
- * - unarchived: 取消归档
- * - delete: 删除任务
- * - comment: 评论
- * - attention: 添加关注
- * - subtask: 修改子任务
- * @apiParam {String} [content] 内容数据
- *
- * @throws \Throwable
- */
- public function task__edit()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $act = trim(Base::getPostValue('act'));
- $taskid = intval(Base::getPostValue('taskid'));
- $task = Base::DBC2A(DB::table('project_task')
- ->where([
- ['delete', '=', 0],
- ['id', '=', $taskid],
- ])
- ->first());
- if (empty($task)) {
- return Base::retError('任务不存在!');
- }
- if ($task['projectid'] > 0) {
- if (!Project::isPersons($task, $user['username'])) {
- $inRes = Project::inThe($task['projectid'], $user['username']);
- if (Base::isError($inRes)) {
- return $inRes;
- }
- }
- if (!in_array($act, ['comment', 'attention'])) {
- $checkRole = Project::role('edit_role', $task['projectid'], $task['id']);
- if (Base::isError($checkRole)) {
- return $checkRole;
- }
- switch ($act) {
- case 'complete':
- case 'unfinished':
- $checkRole = Project::role('complete_role', $task['projectid'], $task['id']);
- if (Base::isError($checkRole)) {
- return $checkRole;
- }
- break;
- case 'archived':
- case 'unarchived':
- $checkRole = Project::role('archived_role', $task['projectid'], $task['id']);
- if (Base::isError($checkRole)) {
- return $checkRole;
- }
- break;
- case 'delete':
- $checkRole = Project::role('del_role', $task['projectid'], $task['id']);
- if (Base::isError($checkRole)) {
- return $checkRole;
- }
- break;
- }
- }
- } else {
- if (!Project::isPersons($task, $user['username'])) {
- return Base::retError('此操作只允许任务负责人!');
- }
- }
- //
- $content = Base::newTrim(Base::getPostValue('content'));
- $message = "";
- $upArray = [];
- $logArray = [];
- switch ($act) {
- /**
- * 修改标题
- */
- case 'title': {
- if ($content == $task['title']) {
- return Base::retError('标题未做改变!');
- }
- $upArray['title'] = $content;
- $logArray[] = [
- 'type' => '日志',
- 'projectid' => $task['projectid'],
- 'taskid' => $task['id'],
- 'username' => $user['username'],
- 'detail' => '修改任务标题',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'task',
- 'id' => $task['id'],
- 'title' => $content,
- 'old_title' => $task['title'],
- ])
- ];
- break;
- }
- /**
- * 修改描述
- */
- case 'desc': {
- preg_match_all("/<img\s*src=\"data:image\/(png|jpg|jpeg);base64,(.*?)\"/s", $content, $matchs);
- foreach ($matchs[2] as $key => $text) {
- $p = "uploads/projects/" . ($task['projectid'] ?: Users::token2userid()) . "/";
- Base::makeDir(public_path($p));
- $p.= md5($text) . "." . $matchs[1][$key];
- $r = file_put_contents(public_path($p), base64_decode($text));
- if ($r) {
- $content = str_replace($matchs[0][$key], '<img src="' . Base::fillUrl($p) . '"', $content);
- }
- }
- Base::DBUPIN('project_content', [
- 'taskid' => $task['id'],
- ], [
- 'content' => $content,
- ], [
- 'projectid' => $task['projectid'],
- 'content' => $content,
- 'indate' => Base::time()
- ]);
- $upArray['desc'] = $content ? Base::time() : '';
- $logArray[] = [
- 'type' => '日志',
- 'projectid' => $task['projectid'],
- 'taskid' => $task['id'],
- 'username' => $user['username'],
- 'detail' => '修改任务描述',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'task',
- 'id' => $task['id'],
- 'title' => $task['title'],
- 'old_desc' => $task['desc'],
- ])
- ];
- break;
- }
- /**
- * 调整任务等级
- */
- case 'level': {
- $content = intval($content);
- if ($content == $task['level']) {
- return Base::retError('优先级未做改变!');
- }
- if ($content > 4 || $content < 1) {
- return Base::retError('优先级参数错误!');
- }
- $upArray['level'] = $content;
- $logArray[] = [
- 'type' => '日志',
- 'projectid' => $task['projectid'],
- 'taskid' => $task['id'],
- 'username' => $user['username'],
- 'detail' => '调整任务等级为【P' . $content . '】',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'task',
- 'id' => $task['id'],
- 'title' => $task['title'],
- 'old_level' => $task['level'],
- ])
- ];
- break;
- }
- /**
- * 修改任务负责人
- */
- case 'username': {
- if ($content == $task['username']) {
- return Base::retError('负责人未做改变!');
- }
- if ($task['projectid'] > 0) {
- $inRes = Project::inThe($task['projectid'], $content);
- if (Base::isError($inRes)) {
- return Base::retError(['%不在成员列表内!', $content]);
- }
- }
- $upArray['username'] = $content;
- $logArray[] = [
- 'type' => '日志',
- 'projectid' => $task['projectid'],
- 'taskid' => $task['id'],
- 'username' => $user['username'],
- 'detail' => '修改负责人',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'task',
- 'id' => $task['id'],
- 'title' => $task['title'],
- 'old_username' => $task['username'],
- ])
- ];
- break;
- }
- /**
- * 修改计划时间
- */
- case 'plannedtime': {
- list($startdate, $enddate) = explode(",", $content);
- if (!Base::isDate($startdate) || !Base::isDate($enddate)) {
- return Base::retError('计划时间参数错误!');
- }
- $startdate = strtotime($startdate);
- $enddate = strtotime($enddate);
- if ($startdate == $task['startdate'] && $enddate == $task['enddate']) {
- return Base::retError('与原计划时间一致!');
- }
- if ($startdate == $enddate) {
- return Base::retError('开始时间与结束时间一致!');
- }
- $upArray['startdate'] = $startdate;
- $upArray['enddate'] = $enddate;
- $logArray[] = [
- 'type' => '日志',
- 'projectid' => $task['projectid'],
- 'taskid' => $task['id'],
- 'username' => $user['username'],
- 'detail' => '设置计划时间',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'task',
- 'id' => $task['id'],
- 'title' => $task['title'],
- 'old_startdate' => $task['startdate'],
- 'old_enddate' => $task['enddate'],
- ])
- ];
- break;
- }
- /**
- * 取消计划时间
- */
- case 'unplannedtime': {
- $startdate = 0;
- $enddate = 0;
- if ($startdate == $task['startdate'] && $enddate == $task['enddate']) {
- return Base::retError('与原计划时间一致!');
- }
- $upArray['startdate'] = $startdate;
- $upArray['enddate'] = $enddate;
- $logArray[] = [
- 'type' => '日志',
- 'projectid' => $task['projectid'],
- 'taskid' => $task['id'],
- 'username' => $user['username'],
- 'detail' => '取消计划时间',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'task',
- 'id' => $task['id'],
- 'title' => $task['title'],
- 'old_startdate' => $task['startdate'],
- 'old_enddate' => $task['enddate'],
- ])
- ];
- break;
- }
- /**
- * 标记完成
- */
- case 'complete': {
- if ($task['complete'] == 1) {
- return Base::retError('任务已标记完成,请勿重复操作!');
- }
- $upArray['complete'] = 1;
- $upArray['completedate'] = Base::time();
- $logArray[] = [
- 'type' => '日志',
- 'projectid' => $task['projectid'],
- 'taskid' => $task['id'],
- 'username' => $user['username'],
- 'detail' => '标记已完成',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'task',
- 'id' => $task['id'],
- 'title' => $task['title'],
- ])
- ];
- break;
- }
- /**
- * 标记未完成
- */
- case 'unfinished': {
- if ($task['complete'] == 0) {
- return Base::retError('任务未完成,无法标记未完成!');
- }
- $upArray['complete'] = 0;
- $logArray[] = [
- 'type' => '日志',
- 'projectid' => $task['projectid'],
- 'taskid' => $task['id'],
- 'username' => $user['username'],
- 'detail' => '标记未完成',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'task',
- 'id' => $task['id'],
- 'title' => $task['title'],
- ])
- ];
- break;
- }
- /**
- * 归档
- */
- case 'archived': {
- if ($task['archived'] == 1) {
- return Base::retError('任务已经归档,请勿重复操作!');
- }
- $upArray['archived'] = 1;
- $upArray['archiveddate'] = Base::time();
- $logArray[] = [
- 'type' => '日志',
- 'projectid' => $task['projectid'],
- 'taskid' => $task['id'],
- 'username' => $user['username'],
- 'detail' => '任务归档',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'task',
- 'id' => $task['id'],
- 'title' => $task['title'],
- ])
- ];
- break;
- }
- /**
- * 取消归档
- */
- case 'unarchived': {
- if ($task['archived'] == 0) {
- return Base::retError('任务未归档,无法取消归档操作!');
- }
- $upArray['archived'] = 0;
- $logArray[] = [
- 'type' => '日志',
- 'projectid' => $task['projectid'],
- 'taskid' => $task['id'],
- 'username' => $user['username'],
- 'detail' => '取消归档',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'task',
- 'id' => $task['id'],
- 'title' => $task['title'],
- ])
- ];
- break;
- }
- /**
- * 删除任务
- */
- case 'delete': {
- if ($task['delete'] == 1) {
- return Base::retError('任务已删除,请勿重复操作!');
- }
- $upArray['delete'] = 1;
- $upArray['deletedate'] = Base::time();
- $logArray[] = [
- 'type' => '日志',
- 'projectid' => $task['projectid'],
- 'taskid' => $task['id'],
- 'username' => $user['username'],
- 'detail' => '删除任务',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'task',
- 'id' => $task['id'],
- 'title' => $task['title'],
- ])
- ];
- $message = "删除成功!";
- break;
- }
- /**
- * 评论任务
- */
- case 'comment': {
- if (mb_strlen($content) < 2) {
- return Base::retError('评论内容至少2个字!');
- }
- $logArray[] = [
- 'type' => '评论',
- 'projectid' => $task['projectid'],
- 'taskid' => $task['id'],
- 'username' => $user['username'],
- 'detail' => $content,
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'task',
- 'id' => $task['id'],
- 'title' => $task['title'],
- ])
- ];
- $message = "评论成功!";
- break;
- }
- /**
- * 添加关注
- */
- case 'attention': {
- $userArray = explode(",", $content);
- DB::transaction(function () use ($user, $task, $userArray) {
- foreach ($userArray AS $uname) {
- $uid = Users::username2id($uname);
- if (empty($uid)) {
- continue;
- }
- $row = Base::DBC2A(DB::table('project_users')->where([
- 'type' => '关注',
- 'taskid' => $task['id'],
- 'username' => $uname,
- ])->lockForUpdate()->first());
- if (empty($row)) {
- DB::table('project_users')->insert([
- 'type' => '关注',
- 'projectid' => $task['projectid'],
- 'taskid' => $task['id'],
- 'isowner' => $task['username'] == $uname ? 1 : 0,
- 'username' => $uname,
- 'indate' => Base::time()
- ]);
- DB::table('project_log')->insert([
- 'type' => '日志',
- 'projectid' => $task['projectid'],
- 'taskid' => $task['id'],
- 'username' => $uname,
- 'detail' => $uname == $user['username'] ? '关注任务' : '加入关注',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'task',
- 'id' => $task['id'],
- 'title' => $task['title'],
- 'operator' => $user['username'],
- 'action' => 'attention',
- ])
- ]);
- }
- }
- });
- $tempRow = Base::DBC2A(DB::table('project_users')->select(['username'])->where([ 'type' => '关注', 'taskid' => $task['id'] ])->get()->pluck('username'));
- $upArray['follower'] = Base::array2string($tempRow);
- $message = "保存成功!";
- break;
- }
- /**
- * 取消关注
- */
- case 'unattention': {
- $userArray = explode(",", $content);
- DB::transaction(function () use ($user, $task, $userArray) {
- foreach ($userArray AS $uname) {
- if (DB::table('project_users')->where([
- 'type' => '关注',
- 'taskid' => $task['id'],
- 'username' => $uname,
- ])->delete()) {
- DB::table('project_log')->insert([
- 'type' => '日志',
- 'projectid' => $task['projectid'],
- 'taskid' => $task['id'],
- 'username' => $uname,
- 'detail' => $uname == $user['username'] ? '取消关注' : '移出关注',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'task',
- 'id' => $task['id'],
- 'title' => $task['title'],
- 'operator' => $user['username'],
- 'action' => 'unattention',
- ])
- ]);
- }
- }
- });
- $tempRow = Base::DBC2A(DB::table('project_users')->select(['username'])->where([ 'type' => '关注', 'taskid' => $task['id'] ])->get()->pluck('username'));
- $upArray['follower'] = Base::array2string($tempRow);
- $message = "保存成功!";
- break;
- }
- /**
- * 修改子任务
- */
- case 'subtask': {
- if (!is_array($content)) {
- $content = [];
- }
- $subNames = [];
- foreach ($content AS $tmp) {
- if ($tmp['uname'] && !in_array($tmp['uname'], $subNames)) {
- $subNames[] = $tmp['uname'];
- }
- }
- $content = Base::array2string($content);
- if ($content == $task['subtask']) {
- return Base::retError('子任务未做改变!');
- }
- $upArray['subtask'] = $content;
- //
- $detail = '修改子任务';
- $subtype = 'modify';
- $new_count = count(Base::string2array($content));
- $old_count = count(Base::string2array($task['subtask']));
- if ($new_count > $old_count) {
- $detail = '添加子任务';
- $subtype = 'add';
- } elseif ($new_count < $old_count) {
- $detail = '删除子任务';
- $subtype = 'del';
- }
- //
- if ($subNames) {
- DB::transaction(function() use ($task, $subNames) {
- foreach ($subNames AS $uname) {
- $row = Base::DBC2A(DB::table('project_users')->where([
- 'type' => '负责人',
- 'taskid' => $task['id'],
- 'username' => $uname,
- ])->lockForUpdate()->first());
- if (empty($row)) {
- DB::table('project_users')->insert([
- 'type' => '负责人',
- 'projectid' => $task['projectid'],
- 'taskid' => $task['id'],
- 'isowner' => $task['username'] == $uname ? 1 : 0,
- 'username' => $uname,
- 'indate' => Base::time()
- ]);
- }
- }
- DB::table('project_users')->where([
- 'type' => '负责人',
- 'taskid' => $task['id'],
- ])->whereNotIn('username', $subNames)->delete();
- });
- } else {
- DB::table('project_users')->where([
- 'type' => '负责人',
- 'taskid' => $task['id'],
- ])->delete();
- }
- //
- $logArray[] = [
- 'type' => '日志',
- 'projectid' => $task['projectid'],
- 'taskid' => $task['id'],
- 'username' => $user['username'],
- 'detail' => $detail,
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'task',
- 'subtype' => $subtype,
- 'id' => $task['id'],
- 'title' => $task['title'],
- 'subtask' => $content,
- 'old_subtask' => $task['subtask'],
- ])
- ];
- break;
- }
- default: {
- return Base::retError('参数错误!');
- }
- }
- //
- if ($upArray) {
- DB::table('project_task')->where('id', $taskid)->update($upArray);
- }
- if ($logArray) {
- DB::table('project_log')->insert($logArray);
- }
- //
- if (in_array($act, ['complete', 'unfinished'])) {
- Project::updateNum($task['projectid']);
- }
- //
- $task = array_merge($task, $upArray);
- $task['persons'] = Project::taskPersons($task);
- $task['overdue'] = Project::taskIsOverdue($task);
- $task['subtask'] = Base::string2array($task['subtask']);
- $task['follower'] = Base::string2array($task['follower']);
- $task['projectTitle'] = $task['projectid'] > 0 ? DB::table('project_lists')->where('id', $task['projectid'])->value('title') : '';
- $task = array_merge($task, Users::username2basic($task['username']));
- return Base::retSuccess($message ?: '修改成功!', $task);
- }
- /**
- * 项目任务-待推送日志
- *
- * @apiParam {Number} taskid 任务ID
- * @apiParam {Number} [page] 当前页,默认:1
- * @apiParam {Number} [pagesize] 每页显示数量,默认:20,最大:100
- * @throws \Throwable
- */
- public function task__pushlog()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- return DB::transaction(function () {
- $taskid = intval(Request::input('taskid'));
- $task = Base::DBC2A(DB::table('project_task')
- ->select(['pushlid', 'follower', 'username'])
- ->where([
- ['delete', '=', 0],
- ['id', '=', $taskid],
- ])
- ->lockForUpdate()
- ->first());
- if (empty($task)) {
- return Base::retError('任务不存在!');
- }
- $task['follower'] = Base::string2array($task['follower']);
- $task['follower'][] = $task['username'];
- //
- $pushlid = $task['pushlid'];
- $lists = DB::table('project_log')
- ->select(['id', 'username', 'indate', 'detail', 'other'])
- ->where([
- ['id', '>', $pushlid],
- ['taskid', '=', $taskid],
- ['indate', '>', Base::time() - 60]
- ])
- ->orderBy('id')->paginate(Base::getPaginate(100, 20));
- $lists = Base::getPageList($lists, false);
- if (count($lists['lists']) == 0) {
- return Base::retError('no lists');
- }
- $array = [];
- foreach ($lists['lists'] AS $key => $item) {
- $item = array_merge($item, Users::username2basic($item['username']));
- $item['other'] = Base::string2array($item['other'], ['type' => '']);
- if (!in_array($item['other']['action'], ['attention', 'unattention'])) {
- $array[] = $item;
- }
- $pushlid = $item['id'];
- }
- $lists['lists'] = $array;
- if ($pushlid != $task['pushlid']) {
- DB::table('project_task')->where('id', $taskid)->update([
- 'pushlid' => $pushlid
- ]);
- }
- return Base::retSuccess('success', array_merge($lists, $task));
- });
- }
- /**
- * 项目文件-列表
- *
- * @apiParam {Number} [projectid] 项目ID
- * @apiParam {Number} [taskid] 任务ID(如果项目ID为空时此参必须赋值且任务必须是自己负责人或在任务所在的项目里)
- * @apiParam {String} [name] 文件名称
- * @apiParam {String} [username] 上传者用户名
- * @apiParam {Object} [sorts] 排序方式,格式:{key:'', order:''}
- * - key: name|size|username|indate
- * - order: asc|desc
- * @apiParam {Number} [page] 当前页,默认:1
- * @apiParam {Number} [pagesize] 每页显示数量,默认:20,最大:100
- */
- public function files__lists()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $taskid = intval(Request::input('taskid'));
- if ($taskid > 0) {
- $projectid = intval(DB::table('project_task')->select(['projectid'])->where([ 'id' => $taskid])->value('projectid'));
- } else {
- $projectid = intval(Request::input('projectid'));
- }
- if ($projectid > 0) {
- $inRes = Project::inThe($projectid, $user['username']);
- if (Base::isError($inRes)) {
- return $inRes;
- }
- }
- //
- $orderBy = '`id` DESC';
- $sorts = Base::json2array(Request::input('sorts'));
- if (in_array($sorts['order'], ['asc', 'desc'])) {
- switch ($sorts['key']) {
- case 'name':
- case 'size':
- case 'download':
- case 'username':
- case 'indate':
- $orderBy = '`' . $sorts['key'] . '` ' . $sorts['order'] . ',`id` DESC';
- break;
- }
- }
- //
- $whereArray = [];
- if ($projectid > 0) {
- $whereArray[] = ['projectid', '=', $projectid];
- if ($taskid > 0) {
- $whereArray[] = ['taskid', '=', $taskid];
- }
- } else {
- if ($taskid <= 0) {
- return Base::retError('参数错误!');
- }
- $tmpLists = Project::taskSomeUsers($taskid);
- if (!in_array($user['username'], $tmpLists)) {
- return Base::retError('未能找到此任务或无法管理此任务!');
- }
- $whereArray[] = ['taskid', '=', $taskid];
- }
- $whereArray[] = ['delete', '=', 0];
- if (intval(Request::input('taskid')) > 0) {
- $whereArray[] = ['taskid', '=', intval(Request::input('taskid'))];
- }
- if (trim(Request::input('name'))) {
- $whereArray[] = ['name', 'like', '%' . trim(Request::input('name')) . '%'];
- }
- if (trim(Request::input('username'))) {
- $whereArray[] = ['username', '=', trim(Request::input('username'))];
- }
- //
- $lists = DB::table('project_files')
- ->where($whereArray)
- ->orderByRaw($orderBy)->paginate(Base::getPaginate(100, 20));
- $lists = Base::getPageList($lists);
- if ($lists['total'] == 0) {
- return Base::retError('未找到任何相关的文件', $lists);
- }
- foreach ($lists['lists'] AS $key => $item) {
- $lists['lists'][$key]['path'] = Base::fillUrl($item['path']);
- $lists['lists'][$key]['thumb'] = Base::fillUrl($item['thumb']);
- $lists['lists'][$key]['yetdown'] = intval(Session::get('filesDownload:' . $item['id']));
- }
- return Base::retSuccess('success', $lists);
- }
- /**
- * 项目文件-上传
- *
- * @apiParam {Number} [projectid] get-项目ID
- * @apiParam {Number} [taskid] get-任务ID(如果项目ID为空时此参必须赋值且任务必须是自己负责人)
- * @apiParam {String} [filename] post-文件名称
- * @apiParam {String} [image64] post-base64图片(二选一)
- * @apiParam {File} [files] post-文件对象(二选一)
- */
- public function files__upload()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $projectid = intval(Request::input('projectid'));
- $taskid = intval(Request::input('taskid'));
- if ($projectid > 0) {
- $inRes = Project::inThe($projectid, $user['username']);
- if (Base::isError($inRes)) {
- return $inRes;
- }
- } else {
- if ($taskid <= 0) {
- return Base::retError('参数错误!');
- }
- $tmpLists = Project::taskSomeUsers($taskid);
- if (!in_array($user['username'], $tmpLists)) {
- return Base::retError('未能找到此任务或无法管理此任务!');
- }
- $projectid = DB::table('project_task')->where('id', $taskid)->value('projectid');
- }
- //
- $path = "uploads/projects/" . ($projectid ?: Users::token2userid()) . "/";
- $image64 = trim(Base::getPostValue('image64'));
- $fileName = trim(Base::getPostValue('filename'));
- if ($image64) {
- $data = Base::image64save([
- "image64" => $image64,
- "path" => $path,
- "fileName" => $fileName,
- ]);
- } else {
- $data = Base::upload([
- "file" => Request::file('files'),
- "type" => 'file',
- "path" => $path,
- "fileName" => $fileName,
- ]);
- }
- //
- if (Base::isError($data)) {
- return Base::retError($data['msg']);
- } else {
- $fileData = $data['data'];
- $fileData['thumb'] = $fileData['thumb'] ?: 'images/files/file.png';
- switch ($fileData['ext']) {
- case "docx":
- $fileData['thumb'] = 'images/files/doc.png';
- break;
- case "xlsx":
- $fileData['thumb'] = 'images/files/xls.png';
- break;
- case "pptx":
- $fileData['thumb'] = 'images/files/ppt.png';
- break;
- case "doc":
- case "xls":
- case "ppt":
- case "txt":
- case "esp":
- case "gif":
- $fileData['thumb'] = 'images/files/' . $fileData['ext'] . '.png';
- break;
- }
- $array = [
- 'projectid' => $projectid,
- 'taskid' => $taskid,
- 'name' => $fileData['name'],
- 'size' => $fileData['size'] * 1024,
- 'ext' => $fileData['ext'],
- 'path' => $fileData['path'],
- 'thumb' => $fileData['thumb'],
- 'username' => $user['username'],
- 'indate' => Base::time(),
- ];
- $id = DB::table('project_files')->insertGetId($array);
- $array['id'] = $id;
- $array['path'] = Base::fillUrl($array['path']);
- $array['thumb'] = Base::fillUrl($array['thumb']);
- $array['download'] = 0;
- $array['yetdown'] = 0;
- DB::table('project_log')->insert([
- 'type' => '日志',
- 'projectid' => $projectid,
- 'taskid' => $taskid,
- 'username' => $user['username'],
- 'detail' => '上传文件',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'file',
- 'id' => $id,
- 'name' => $fileData['name'],
- ])
- ]);
- if ($taskid > 0) {
- DB::table('project_task')->where('id', $taskid)->increment('filenum');
- }
- return Base::retSuccess('success', $array);
- }
- }
- /**
- * 项目文件-下载
- *
- * @apiParam {Number} fileid 文件ID
- */
- public function files__download()
- {
- $fileDetail = Base::DBC2A(DB::table('project_files')->where('id', intval(Request::input('fileid')))->where('delete', 0)->first());
- if (empty($fileDetail)) {
- return abort(404, '文件不存在或已被删除!');
- }
- $filePath = public_path($fileDetail['path']);
- if (!file_exists($filePath)) {
- return abort(404, '文件不存在或已被删除。');
- }
- if (intval(Session::get('filesDownload:' . $fileDetail['id'])) !== 1) {
- Session::put('filesDownload:' . $fileDetail['id'], 1);
- DB::table('project_files')->where('id', $fileDetail['id'])->increment('download');
- }
- return response()->download($filePath, $fileDetail['name']);
- }
- /**
- * 项目文件-重命名
- *
- * @apiParam {Number} fileid 文件ID
- * @apiParam {String} name 新文件名称
- */
- public function files__rename()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $fileDetail = Base::DBC2A(DB::table('project_files')->where('id', intval(Request::input('fileid')))->where('delete', 0)->first());
- if (empty($fileDetail)) {
- return Base::retError('文件不存在或已被删除!');
- }
- if ($fileDetail['username'] != $user['username']) {
- $inRes = Project::inThe($fileDetail['projectid'], $user['username'], true);
- if (Base::isError($inRes)) {
- return Base::retError('此操作仅支持管理员或上传者!');
- }
- }
- //
- $name = Base::rightDelete(trim(Request::input('name')), '.' . $fileDetail['ext']);
- if (empty($name)) {
- return Base::retError('文件名称不能为空!');
- } elseif (mb_strlen($name) > 32) {
- return Base::retError('文件名称最多只能设置32个字!');
- }
- //
- $name .= '.' . $fileDetail['ext'];
- if (DB::table('project_files')->where('id', $fileDetail['id'])->update([ 'name' => $name ])) {
- DB::table('project_log')->insert([
- 'type' => '日志',
- 'projectid' => $fileDetail['projectid'],
- 'taskid' => $fileDetail['taskid'],
- 'username' => $user['username'],
- 'detail' => '文件【' . $fileDetail['name'] . '】重命名',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'file',
- 'id' => $fileDetail['id'],
- 'name' => $name,
- ])
- ]);
- }
- //
- return Base::retSuccess('修改成功!', [
- 'name' => $name,
- ]);
- }
- /**
- * 项目文件-删除
- *
- * @apiParam {Number} fileid 文件ID
- */
- public function files__delete()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $fileDetail = Base::DBC2A(DB::table('project_files')->where('id', intval(Request::input('fileid')))->where('delete', 0)->first());
- if (empty($fileDetail)) {
- return Base::retError('文件不存在或已被删除!');
- }
- if ($fileDetail['username'] != $user['username']) {
- $inRes = Project::inThe($fileDetail['projectid'], $user['username'], true);
- if (Base::isError($inRes)) {
- return Base::retError('此操作仅支持管理员或上传者!');
- }
- }
- //
- DB::table('project_files')->where('id', $fileDetail['id'])->update([
- 'delete' => 1,
- 'deletedate' => Base::time()
- ]);
- DB::table('project_log')->insert([
- 'type' => '日志',
- 'projectid' => $fileDetail['projectid'],
- 'taskid' => $fileDetail['taskid'],
- 'username' => $user['username'],
- 'detail' => '删除文件',
- 'indate' => Base::time(),
- 'other' => Base::array2string([
- 'type' => 'file',
- 'id' => $fileDetail['id'],
- 'name' => $fileDetail['name'],
- ])
- ]);
- if ($fileDetail['taskid'] > 0) {
- DB::table('project_task')->where('id', $fileDetail['taskid'])->decrement('filenum');
- }
- //
- return Base::retSuccess('删除成功!');
- }
- /**
- * 项目动态-列表
- *
- * @apiParam {Number} [projectid] 项目ID
- * @apiParam {Number} [taskid] 任务ID(如果项目ID为空时此参必须赋值且任务必须是自己负责人)
- * @apiParam {String} [type] 类型
- * - 全部: 日志+评论(默认)
- * - 日志
- * - 评论
- * @apiParam {String} [username] 用户名
- * @apiParam {Number} [page] 当前页,默认:1
- * @apiParam {Number} [pagesize] 每页显示数量,默认:20,最大:100
- */
- public function log__lists()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $projectid = intval(Request::input('projectid'));
- if ($projectid > 0) {
- $inRes = Project::inThe($projectid, $user['username']);
- if (Base::isError($inRes)) {
- return $inRes;
- }
- }
- //
- $taskid = intval(Request::input('taskid'));
- $whereArray = [];
- $whereFunc = null;
- if ($projectid > 0) {
- $whereArray[] = ['projectid', '=', $projectid];
- if ($taskid > 0) {
- $whereArray[] = ['taskid', '=', $taskid];
- }
- } else {
- if ($taskid < 0) {
- return Base::retError('参数错误!');
- }
- $tmpLists = Project::taskSomeUsers($taskid);
- if (!in_array($user['username'], $tmpLists)) {
- return Base::retError('未能找到此任务或无法管理此任务!');
- }
- $whereArray[] = ['taskid', '=', $taskid];
- }
- if (trim(Request::input('username'))) {
- $whereArray[] = ['username', '=', trim(Request::input('username'))];
- }
- switch (trim(Request::input('type'))) {
- case '日志': {
- $whereArray[] = ['type', '=', '日志'];
- break;
- }
- case '评论': {
- $whereArray[] = ['type', '=', '评论'];
- break;
- }
- default: {
- $whereFunc = function ($query) {
- $query->whereIn('type', ['日志', '评论']);
- };
- break;
- }
- }
- //
- $lists = DB::table('project_log')
- ->where($whereArray)
- ->where($whereFunc)
- ->orderByDesc('indate')->paginate(Base::getPaginate(100, 20));
- $lists = Base::getPageList($lists);
- if ($lists['total'] == 0) {
- return Base::retError('未找到任何相关的记录', $lists);
- }
- foreach ($lists['lists'] AS $key => $item) {
- $item = array_merge($item, Users::username2basic($item['username']));
- if (empty($item['userimg'])) {
- $item['userimg'] = Users::userimg($item['userimg']);
- }
- $item['timeData'] = [
- 'ymd' => date(date("Y", $item['indate']) == date("Y", Base::time()) ? "m-d" : "Y-m-d", $item['indate']),
- 'hi' => date("h:i", $item['indate']) ,
- 'week' => "周" . Base::getTimeWeek($item['indate']),
- 'segment' => Base::getTimeDayeSegment($item['indate']),
- ];
- $item['other'] = Base::string2array($item['other'], ['type' => '']);
- $lists['lists'][$key] = $item;
- }
- return Base::retSuccess('success', $lists);
- }
- }
|