A better comment
[timetracker.git] / user_delete.php
1 <?php
2 // +----------------------------------------------------------------------+
3 // | Anuko Time Tracker
4 // +----------------------------------------------------------------------+
5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
6 // +----------------------------------------------------------------------+
7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
8 // | by anyone for any purpose, and freely redistributed alone or in
9 // | combination with other software, provided that the license is obeyed.
10 // |
11 // | There are only two ways to violate the license:
12 // |
13 // | 1. To redistribute this code in source form, with the copyright
14 // |    notice or license removed or altered. (Distributing in compiled
15 // |    forms without embedded copyright notices is permitted).
16 // |
17 // | 2. To redistribute modified versions of this code in *any* form
18 // |    that bears insufficient indications that the modifications are
19 // |    not the work of the original author(s).
20 // |
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
23 // |
24 // +----------------------------------------------------------------------+
25 // | Contributors:
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
28
29 require_once('initialize.php');
30 import('form.Form');
31 import('ttUserHelper');
32
33 // Access check.
34 if (!ttAccessCheck(right_manage_team)) {
35   header('Location: access_denied.php');
36   exit();
37 }
38
39 // Get user id we are deleting from the request.
40 // A cast to int is for safety against manipulation of request parameter (sql injection). 
41 $user_id = (int) $request->getParameter('id');
42
43 // We need user name and login to display.
44 $user_details = ttUserHelper::getUserDetails($user_id);
45
46 // Security checks.
47 $ok_to_go = $user->canManageTeam(); // Are we authorized for user deletes?
48 if ($ok_to_go) $ok_to_go = $ok_to_go && $user_details; // Are we deleting a real user?
49 if ($ok_to_go) $ok_to_go = $ok_to_go && ($user->team_id == $user_details['team_id']); // User belongs to our team?
50 if ($ok_to_go && $user->isCoManager() && (ROLE_COMANAGER == $user_details['role']))
51   $ok_to_go = ($user->id == $user_details['id']); // Comanager is not allowed to delete other comanagers.
52 if ($ok_to_go && $user->isCoManager() && (ROLE_MANAGER == $user_details['role']))
53   $ok_to_go = false; // Comanager is not allowed to delete a manager.
54
55 if (!$ok_to_go)
56   die ($i18n->getKey('error.sys'));
57 else
58   $smarty->assign('user_to_delete', $user_details['name']." (".$user_details['login'].")");
59
60 // Create confirmation form.
61 $form = new Form('userDeleteForm');
62 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$user_id));
63 $form->addInput(array('type'=>'submit','name'=>'btn_delete','value'=>$i18n->getKey('label.delete')));
64 $form->addInput(array('type'=>'submit','name'=>'btn_cancel','value'=>$i18n->getKey('button.cancel')));
65
66 if ($request->isPost()) {
67   if ($request->getParameter('btn_delete')) {
68     if (ttUserHelper::markDeleted($user_id)) {
69       // If we deleted the "on behalf" user reset its info in session.
70       if ($user_id == $user->behalf_id) {
71         unset($_SESSION['behalf_id']);
72         unset($_SESSION['behalf_name']);
73       }
74       // If we deleted our own account, do housekeeping and logout.
75       if ($user->id == $user_id) {
76         // Remove tt_login cookie that stores login name.
77         unset($_COOKIE['tt_login']);
78         setcookie('tt_login', NULL, -1);
79
80         $auth->doLogout();
81         header('Location: login.php');
82       } else {
83         header('Location: users.php');
84       }
85       exit();
86     } else {
87       $err->add($i18n->getKey('error.db'));
88     }
89   }
90   if ($request->getParameter('btn_cancel')) {
91     header('Location: users.php');
92     exit();
93   }
94 } // isPost
95
96 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
97 $smarty->assign('title', $i18n->getKey('title.delete_user'));
98 $smarty->assign('content_page_name', 'user_delete.tpl');
99 $smarty->display('index.tpl');