Welcome to mirror list, hosted at ThFree Co, Russian Federation.

task.js « models « src - github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 232643a88460272db62e47e067804b4453696d31 (plain)
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
/**
 * Nextcloud - Tasks
 *
 * @author John Molakvoæ
 * @copyright 2018 John Molakvoæ <skjnldsv@protonmail.com>
 *
 * @author Raimund Schlüßler
 * @copyright 2018 Raimund Schlüßler <raimund.schluessler@mailbox.org>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or any later version.
 *
 * This library 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 AFFERO GENERAL PUBLIC LICENSE for more details.
 *
 * You should have received a copy of the GNU Affero General Public
 * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

import uuid from 'uuid'
import ICAL from 'ical.js'

export default class Task {

	/**
	 * Creates an instance of Task
	 *
	 * @param {string} vcalendar the vcalendar data as string with proper new lines
	 * @param {object} calendar the calendar which the task belongs to
	 * @param {object} raw the raw vcalendar data
	 * @memberof Task
	 */
	constructor(vcalendar, calendar, raw) {
		if (typeof vcalendar !== 'string' || vcalendar.length === 0) {
			throw new Error('Invalid vCalendar')
		}
		this.vcalendar = vcalendar

		let jCal = ICAL.parse(vcalendar)
		if (jCal[0] !== 'vcalendar') {
			throw new Error('Only one task is allowed in the vCalendar data')
		}

		this.jCal = jCal
		this.calendar = calendar
		this.vCalendar = new ICAL.Component(this.jCal)

		// used to state a task is not up to date with
		// the server and cannot be pushed (etag)
		this.conflict = false

		// if no uid set, create one
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		if (!vtodo.hasProperty('uid')) {
			console.debug('This task did not have a proper uid. Setting a new one for ', this)
			vtodo.addPropertyWithValue('uid', uuid())
		}

		this.uri = raw.url.substr(raw.url.lastIndexOf('/') + 1)
	}

	/**
	 * Update internal data of this task
	 *
	 * @param {jCal} jCal jCal object from ICAL.js
	 * @memberof Task
	 */
	updateTask(jCal) {
		this.jCal = jCal
		this.vCalendar = new ICAL.Component(this.jCal)
	}

	/**
	 * Update linked calendar of this task
	 *
	 * @param {Object} calendar the calendar
	 * @memberof Contact
	 */
	updateCalendar(calendar) {
		this.calendar = calendar
	}

	/**
	 * Ensure we're normalizing the possible arrays
	 * into a string by taking the first element
	 * e.g. ORG:ABC\, Inc.; will output an array because of the semi-colon
	 *
	 * @param {Array|string} data the data to normalize
	 * @returns {string}
	 * @memberof Task
	 */
	firstIfArray(data) {
		return Array.isArray(data) ? data[0] : data
	}

	/**
	 * Return the key
	 *
	 * @readonly
	 * @memberof Task
	 */
	get key() {
		return this.uid + '~' + this.calendar.id
	}

	/**
	 * Return the url
	 *
	 * @readonly
	 * @memberof Task
	 */
	get url() {
		if (this.dav) {
			return this.dav.url
		}
		return ''
	}

	/**
	 * Return the uid
	 *
	 * @readonly
	 * @memberof Task
	 */
	get uid() {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		return vtodo.getFirstPropertyValue('uid') || ''
	}

	/**
	 * Set the uid
	 *
	 * @param {string} uid the uid to set
	 * @memberof Task
	 */
	set uid(uid) {
		this.vCalendar.updatePropertyWithValue('uid', uid)
		this.vcalendar = this.vCalendar.toString()
		return true
	}

	/**
	 * Return the first summary
	 *
	 * @readonly
	 * @memberof Task
	 */
	get summary() {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		return vtodo.getFirstPropertyValue('summary')
	}

	/**
	 * Set the summary
	 *
	 * @param {string} summary the summary
	 * @memberof Task
	 */
	set summary(summary) {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		vtodo.updatePropertyWithValue('summary', summary)
		this.updateLastModified()
		this.vcalendar = this.vCalendar.toString()
	}

	get priority() {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		return vtodo.getFirstPropertyValue('priority')
	}

	set priority(priority) {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		// TODO: check that priority is >= 0 and <10
		vtodo.updatePropertyWithValue('priority', priority)
		this.updateLastModified()
		this.vcalendar = this.vCalendar.toString()
	}

	get complete() {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		return vtodo.getFirstPropertyValue('percent-complete') || 0
	}

	set complete(complete) {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		vtodo.updatePropertyWithValue('percent-complete', complete)
		this.updateLastModified()
		this.vcalendar = this.vCalendar.toString()
		if (complete < 100) {
			this.completed = null
			if (complete === 0) {
				this.status = 'NEEDS-ACTION'
			} else {
				this.status = 'IN-PROCESS'
			}
		} else {
			this.completed = ICAL.Time.now()
			this.status = 'COMPLETED'
		}
	}

	get completed() {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		var comp = vtodo.getFirstPropertyValue('completed')
		if (comp) {
			return true
		} else {
			return false
		}
	}

	set completed(completed) {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		if (completed) {
			vtodo.updatePropertyWithValue('completed', completed)
		} else {
			vtodo.removeProperty('completed')
		}
		this.updateLastModified()
		this.vcalendar = this.vCalendar.toString()
	}

	get completedDate() {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		var comp = vtodo.getFirstPropertyValue('completed')
		if (comp) {
			return comp.toJSDate()
		} else {
			return null
		}
	}

	get status() {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		return vtodo.getFirstPropertyValue('status')
	}

	set status(status) {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		vtodo.updatePropertyWithValue('status', status)
		this.updateLastModified()
		this.vcalendar = this.vCalendar.toString()
	}

	get note() {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		return vtodo.getFirstPropertyValue('description') || ''
	}

	set note(note) {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		vtodo.updatePropertyWithValue('description', note)
		this.updateLastModified()
		this.vcalendar = this.vCalendar.toString()
	}

	get related() {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		return vtodo.getFirstPropertyValue('related-to') || null
	}

	set related(related) {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		if (related) {
			vtodo.updatePropertyWithValue('related-to', related)
		} else {
			vtodo.removeProperty('related-to')
		}
		this.updateLastModified()
		this.vcalendar = this.vCalendar.toString()
	}

	get hideSubtasks() {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		return +vtodo.getFirstPropertyValue('x-oc-hidesubtasks') || 0
	}

	set hideSubtasks(hide) {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		vtodo.updatePropertyWithValue('x-oc-hidesubtasks', +hide)
		this.updateLastModified()
		this.vcalendar = this.vCalendar.toString()
	}

	get hideCompletedSubtasks() {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		return +vtodo.getFirstPropertyValue('x-oc-hidecompletedsubtasks') || 0
	}

	set hideCompletedSubtasks(hide) {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		vtodo.updatePropertyWithValue('x-oc-hidecompletedsubtasks', +hide)
		this.updateLastModified()
		this.vcalendar = this.vCalendar.toString()
	}

	get start() {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		return vtodo.getFirstPropertyValue('dtstart')
	}

	set start(start) {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		if (start) {
			vtodo.updatePropertyWithValue('dtstart', start)
		} else {
			vtodo.removeProperty('dtstart')
		}
		this.updateLastModified()
		this.vcalendar = this.vCalendar.toString()
	}

	get due() {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		return vtodo.getFirstPropertyValue('due')
	}

	set due(due) {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		if (due) {
			vtodo.updatePropertyWithValue('due', due)
		} else {
			vtodo.removeProperty('due')
		}
		this.updateLastModified()
		this.vcalendar = this.vCalendar.toString()
	}

	get allDay() {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		var start = vtodo.getFirstPropertyValue('dtstart')
		var due = vtodo.getFirstPropertyValue('due')
		var d = due || start
		return d !== null && d.isDate
	}

	set allDay(allDay) {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		var start = vtodo.getFirstPropertyValue('dtstart')
		if (start) {
			start.isDate = allDay
			vtodo.updatePropertyWithValue('dtstart', start)
		}
		var due = vtodo.getFirstPropertyValue('due')
		if (due) {
			due.isDate = allDay
			vtodo.updatePropertyWithValue('due', due)
		}
		this.updateLastModified()
		this.vcalendar = this.vCalendar.toString()
	}

	get comments() {
		return null
	}

	get loadedCompleted() {
		return this.loaded
	}

	set loadedCompleted(loadedCompleted) {
		this.loaded = loadedCompleted
	}

	get reminder() {
		return null
	}

	/**
	 * Return the categories
	 *
	 * @readonly
	 * @memberof Task
	 */
	get categories() {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		var categories = vtodo.getFirstProperty('categories')
		if (categories) {
			return categories.getValues()
		} else {
			return []
		}
	}

	/**
	 * Set the categories
	 *
	 * @param {string} newCategories the categories
	 * @memberof Task
	 */
	set categories(newCategories) {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		var categories = vtodo.getFirstProperty('categories')
		if (newCategories.length > 0) {
			if (categories) {
				categories.setValues(newCategories)
			} else {
				var prop = new ICAL.Property('categories')
				prop.setValues(newCategories)
				categories = vtodo.addProperty(prop)
			}
		} else {
			vtodo.removeProperty('categories')
		}
		this.updateLastModified()
		this.vcalendar = this.vCalendar.toString()
	}

	updateLastModified() {
		var vtodo = this.vCalendar.getFirstSubcomponent('vtodo')
		vtodo.updatePropertyWithValue('last-modified', ICAL.Time.now())
		vtodo.updatePropertyWithValue('dtstamp', ICAL.Time.now())
	}

}