forked from anuko/timetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathttOrgHelper.class.php
More file actions
105 lines (93 loc) · 4.17 KB
/
Copy pathttOrgHelper.class.php
File metadata and controls
105 lines (93 loc) · 4.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
// +----------------------------------------------------------------------+
// | Anuko Time Tracker
// +----------------------------------------------------------------------+
// | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
// +----------------------------------------------------------------------+
// | LIBERAL FREEWARE LICENSE: This source code document may be used
// | by anyone for any purpose, and freely redistributed alone or in
// | combination with other software, provided that the license is obeyed.
// |
// | There are only two ways to violate the license:
// |
// | 1. To redistribute this code in source form, with the copyright
// | notice or license removed or altered. (Distributing in compiled
// | forms without embedded copyright notices is permitted).
// |
// | 2. To redistribute modified versions of this code in *any* form
// | that bears insufficient indications that the modifications are
// | not the work of the original author(s).
// |
// | This license applies to this document only, not any other software
// | that it may be combined with.
// |
// +----------------------------------------------------------------------+
// | Contributors:
// | https://www.anuko.com/time_tracker/credits.htm
// +----------------------------------------------------------------------+
// Class ttOrgHelper contains helper functions that operate with organizations.
// Organizations are collections of nested groups of users.
class ttOrgHelper {
// The getOrgs function returns an array of all active organizations on the server.
static function getOrgs() {
$result = array();
$mdb2 = getConnection();
$sql = "select id, name, created, lang from tt_groups".
" where status = 1 and org_id = id and parent_id is NULL order by id desc";
$res = $mdb2->query($sql);
$result = array();
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$val['date'] = substr($val['created'], 0, 10); // Strip the time.
$result[] = $val;
}
return $result;
}
return false;
}
// The getName function returns organization name (which is a name of its top group).
static function getName($org_id) {
$mdb2 = getConnection();
$sql = "select name from tt_groups where id = $org_id and (status = 1 or status = 0) and parent_id is NULL";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
$val = $res->fetchRow();
return $val['name'];
}
return false;
}
// The getInactiveOrgs is a maintenance function that returns an array of inactive organization ids (max 5 for now).
static function getInactiveOrgs() {
$inactive_orgs = array();
$mdb2 = getConnection();
// Determine inactive organizations by querying the database for max access timestamp for its users.
$cutoff_timestamp = $mdb2->quote(date('Y-m-d', strtotime('-1 year')));
$sql = "select org_id from".
" (select max(accessed) as last_access, org_id from tt_users group by org_id order by last_access, org_id) as t".
" where last_access is null or last_access < $cutoff_timestamp limit 5"; // Max 5 orgs at a time for now...
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
$inactive_orgs[] = $val['org_id'];
}
return $inactive_orgs;
}
return false;
}
// deleteOrg deletes data for the entire organization from database permanently.
// Work in progress, currently not fully implemented.
static function deleteOrg($org_id) {
// We shall do it in a straightforward way by a delete operation from all tables by org_id.
// However, at this time not all tables have org_id.
// So, we need to add the field as we write code here.
// Delete predefined expenses.
$sql = "delete from tt_predefined_expenses where org_id = $org_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
// Delete monthly quotas.
$sql = "delete from tt_monthly_quotas where org_id = $org_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error')) return false;
return true; // Work in progress, currently not fully implemented.
}
}