-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathMonthlyQuota.class.php
More file actions
178 lines (146 loc) · 5.77 KB
/
MonthlyQuota.class.php
File metadata and controls
178 lines (146 loc) · 5.77 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<?php
/* Copyright (c) Anuko International Ltd. https://www.anuko.com
License: See license.txt */
import('ttTimeHelper');
// MontlyQuota class implements handling of work hour quotas.
class MonthlyQuota {
var $db; // Database connection.
var $group_id; // Group id.
var $org_id; // Organization id.
function __construct() {
$this->db = getConnection();
global $user;
$this->group_id = $user->getGroup();
$this->org_id = $user->org_id;
}
// update - deletes a quota, then inserts a new one.
public function update($year, $month, $minutes) {
$deleteSql = "delete from tt_monthly_quotas".
" where year = $year and month = $month and group_id = $this->group_id and org_id = $this->org_id";
$this->db->exec($deleteSql);
if ($minutes){
$insertSql = "insert into tt_monthly_quotas (group_id, org_id, year, month, minutes)".
" values ($this->group_id, $this->org_id, $year, $month, $minutes)";
$affected = $this->db->exec($insertSql);
if (is_a($affected, 'PEAR_Error'))
return false;
}
// Update entities_modified, too.
if (!ttGroupHelper::updateEntitiesModified())
return false;
return true;
}
// get - obtains either a single month quota or an array of quotas for an entire year.
// Month starts with 1 for January, not 0.
public function get($year, $month = null) {
if (is_null($month)){
return $this->getMany($year);
}
return $this->getSingle($year, $month);
}
// getSingle - obtains a quota for a single month.
private function getSingle($year, $month) {
$sql = "select minutes from tt_monthly_quotas".
" where year = $year and month = $month and group_id = $this->group_id and org_id = $this->org_id";
$reader = $this->db->query($sql);
if (is_a($reader, 'PEAR_Error')) {
return false;
}
$row = $reader->fetchRow();
if ($row)
return $row['minutes'];
// If we did not find a record, return a calculated monthly quota.
$numWorkdays = $this->getNumWorkdays($month, $year);
global $user;
return $numWorkdays * $user->getWorkdayMinutes();
}
// getUserQuota - obtains a quota for user for a single month.
// This quota is adjusted by quota_percent value for user.
public function getUserQuota($year, $month) {
global $user;
$minutes = $this->getSingle($year, $month);
$userMinutes = (int) $minutes * $user->getQuotaPercent() / 100;
return $userMinutes;
}
// getUserQuotaFrom1st - obtains a quota for user
// from 1st of the month up to and inclusive of $selected_date.
public function getUserQuotaFrom1st($selected_date) {
// TODO: we may need a better algorithm here. Review.
$monthQuotaMinutes = $this->getUserQuota($selected_date->year, $selected_date->month);
$workdaysInMonth = $this->getNumWorkdays($selected_date->month, $selected_date->year);
// Iterate from 1st up to selected date.
$workdaysFrom1st = 0;
for ($i = 1; $i <= $selected_date->day; $i++) {
$date = ttTimeHelper::dateInDatabaseFormat($selected_date->year, $selected_date->month, $i);
if (!ttTimeHelper::isWeekend($date) && !ttTimeHelper::isHoliday($date)) {
$workdaysFrom1st++;
}
}
$quotaMinutesFrom1st = (int) ($monthQuotaMinutes * $workdaysFrom1st / $workdaysInMonth);
return $quotaMinutesFrom1st;
}
// getMany - returns an array of quotas for a given year for group.
private function getMany($year){
$sql = "select month, minutes from tt_monthly_quotas".
" where year = $year and group_id = $this->group_id and org_id = $this->org_id";
$result = array();
$res = $this->db->query($sql);
if (is_a($res, 'PEAR_Error')) {
return false;
}
while ($val = $res->fetchRow()) {
$result[$val['month']] = $val['minutes'];
}
return $result;
}
// getNumWorkdays returns a number of work days in a given month.
private function getNumWorkdays($month, $year) {
$daysInMonth = date('t', mktime(0, 0, 0, $month, 1, $year));
$workdaysInMonth = 0;
// Iterate through the entire month.
for ($i = 1; $i <= $daysInMonth; $i++) {
$date = "$year-$month-$i";
$date = ttTimeHelper::dateInDatabaseFormat($year, $month, $i);
if (!ttTimeHelper::isWeekend($date) && !ttTimeHelper::isHoliday($date)) {
$workdaysInMonth++;
}
}
return $workdaysInMonth;
}
// isValidQuota validates a localized value as an hours quota string (in hours and minutes).
public function isValidQuota($value) {
if (strlen($value) == 0 || !isset($value)) return true;
if (preg_match('/^[0-9]{1,3}h?$/', $value )) { // 000 - 999
return true;
}
if (preg_match('/^[0-9]{1,3}:[0-5][0-9]$/', $value )) { // 000:00 - 999:59
return true;
}
global $user;
$localizedPattern = '/^([0-9]{1,3})?['.$user->getDecimalMark().'][0-9]{1,4}h?$/';
if (preg_match($localizedPattern, $value )) { // decimal values like 000.5, 999.25h, ... .. 999.9999h (or with comma)
return true;
}
return false;
}
// quotaToFloat converts a valid quota value to a float.
public function quotaToFloat($value) {
if (preg_match('/^[0-9]{1,3}h?$/', $value )) { // 000 - 999
return (float) $value;
}
if (preg_match('/^[0-9]{1,3}:[0-5][0-9]$/', $value )) { // 000:00 - 999:59
$minutes = ttTimeHelper::toMinutes($value);
return ($minutes / 60.0);
}
global $user;
$localizedPattern = '/^([0-9]{1,3})?['.$user->getDecimalMark().'][0-9]{1,4}h?$/';
if (preg_match($localizedPattern, $value )) { // decimal values like 000.5, 999.25h, ... .. 999.9999h (or with comma)
// Strip optional h in the end.
$value = trim($value, 'h');
if ($user->getDecimalMark() == ',')
$value = str_replace(',', '.', $value);
return (float) $value;
}
return null;
}
}