-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpeople.js
97 lines (80 loc) · 3 KB
/
people.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
const GLib = imports.gi.GLib;
const Gio = imports.gi.Gio;
const Lang = imports.lang;
const Signals = imports.signals;
const ExtensionUtils = imports.misc.extensionUtils;
const Me = ExtensionUtils.getCurrentExtension();
const Person = Me.imports.person;
const Convenience = Me.imports.convenience;
var People = new Lang.Class({
Name: 'People',
_init: function() {
this._cancellable = null;
this._settings = Convenience.getSettings();
this._path = this._getFilename();
this._file = Gio.file_new_for_uri(this._path);
this._githubToken = this._settings.get_string("github-token").trim();
this._monitor = this._file.monitor(Gio.FileMonitorFlags.NONE, null);
this._monitorChangedSignalId = this._monitor.connect('changed',
Lang.bind(this, function(a, b, c, d) {
if (d != 1) return;
this.emit('changed');
}));
},
destroy: function() {
this._monitor.disconnect(this._monitorChangedSignalId);
this.parent();
},
_getFilename: function() {
let f = this._settings.get_string("path-to-people-json").trim();
if (f == "")
f = "file://" + GLib.build_filenamev([GLib.get_home_dir(), 'people.json']);
return f;
},
_sortByTimezone: function(a, b) {
let d = a.offset - b.offset;
if (d < 0)
return -1;
else if (d > 0)
return 1;
return 0;
},
getPeople: function(cb) {
if (this._cancellable != null) {
this._cancellable.cancel();
}
this._cancellable = new Gio.Cancellable();
this._getPeopleOriginalCB = cb;
this._file.load_contents_async(this._cancellable, Lang.bind(this, this._getPeopleCB));
},
_getPeopleCB: function(a, res) {
let contents, success, tag, rawPeople;
try {
[success, contents, tag] = this._file.load_contents_finish(res);
} catch (e) {
if (e.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.CANCELLED)) {
log('[timezone] Ignoring previous getPeople() call');
return;
}
log('Error parsing %s: %s'.format(this._path, e));
this._getPeopleOriginalCB({error: 'Make sure to put a file "people.json" in your home directory'});
return;
}
try {
rawPeople = JSON.parse(contents);
} catch (e) {
log('Error parsing %s: %s'.format(this._path, e));
this._getPeopleOriginalCB({error: 'There was an error parsing people.json file'});
return;
}
let people = [];
Person.resetPeopleCount();
rawPeople.forEach(Lang.bind(this, function(person) {
person._githubToken = this._githubToken;
people.push(new Person.Person(person));
}));
people.sort(this._sortByTimezone);
this._getPeopleOriginalCB(people);
}
});
Signals.addSignalMethods(People.prototype);