forked from gloob/redmine-google_apps_scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpostTimesheet.js
148 lines (119 loc) · 3.78 KB
/
postTimesheet.js
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
/*
* Post timesheet from Google Docs to Redmine
*
* Copyright (c) 2014 David Juhasz
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Author: David Juhasz <[email protected]>
*
*/
function postTimesheet() {
timesheet = new Timesheet;
// Parse timesheet
timesheet.parse();
// Combine duplicate entries for the same day
timesheet.rollup();
// Send timesheet to Redmine
timesheet.send();
function Activity(actName) {
// Lookup table
this.activityIds = {
'Administration' : '16',
'Analysis/Design': '18',
'Deployment' : '12',
'Development' : '9',
'Documentation' : '10',
'QA/Testing' : '13',
'Support' : '14',
'Training' : '22',
'Travel' : '24',
'Operations' : '23'
}
this.name = actName;
this.id = this.activityIds[actName];
return this;
}
function Row(ssRow) {
this.issueNum = ssRow[0].toString();
this.desc = ssRow[1];
this.start = ssRow[2];
this.end = ssRow[3];
this.hours = parseFloat(ssRow[4]);
this.date = ssRow[5];
// Lookup activityId
activity = new Activity(ssRow[6]);
this.activityId = activity.id;
// Convert date to ISO string
if (this.date.toString() !== '') {
this.date = new Date(ssRow[5]);
this.date = this.date.toISOString();
// Truncate time
var t = this.date.indexOf('T');
if (t > -1) {
this.date = this.date.substr(0,t);
}
}
this.isValid = function() {
if (this.issueNum.toString() === '' || this.hours.toString() === '' || this.date.toString() === '') {
return false;
}
return true;
}
return this;
}
function Timesheet() {
this.dates = {};
this.issueNums = {};
this.rows = [];
// Add valid timesheet entries to internal array
this.parse = function() {
var sheet = SpreadsheetApp.getActiveSheet();
var data = sheet.getDataRange().getValues();
for (var i = 2; i < data.length; i++) {
var row = new Row(data[i]);
if (row.isValid()) {
this.rows.push(row);
}
}
}
// Combine duplicate entries of same issue number in same day
this.rollup = function() {
for (var i = 0; i < this.rows.length; i++) {
var removeRows = [];
for (var j = i + 1; j < this.rows.length; j++) {
// If issue # and date match
if (this.rows[i].issueNum == this.rows[j].issueNum && this.rows[i].date == this.rows[j].date) {
// Add hours together
this.rows[i].hours += this.rows[j].hours;
// Concatenate descriptions if not the same
if (this.rows[i].desc != this.rows[j].desc) {
this.rows[i].desc += '; ' + this.rows[j].desc;
}
// Mark duplicate rows for removal, but don't do it now to avoid array index problems
removeRows.push(j);
}
}
// Remove duplicate rows backwards, to avoid issues with changing indexes
for (var j = removeRows.length - 1; j >= 0; j--) {
this.rows.splice(removeRows[j], 1);
}
}
}
// Call redmine method to post time entries
this.send = function() {
for (var i = 0; i < this.rows.length; i++) {
redmine = new Redmine;
redmine.addTimeEntry(this.rows[i]);
}
}
}
}