forked from huhani/xe-noti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice-worker.js
194 lines (165 loc) · 5.57 KB
/
service-worker.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
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
'use strict';
// ServiceWorker에선 localStorage, Cookies를 사용할 수 없다.
// 당연히 DOM(window, document)에도 접근이 불가능하다. 하지만 indexedDB는 사용 가능하다.
var DB = null;
function openDB() {
return DB ? Promise.resolve(DB) : new Promise(function(resolve, reject) {
var open = self.indexedDB.open("swpushnotidb");
open.onerror = reject;
open.onsuccess = function() {
var result = open.result;
if (result.objectStoreNames.contains("swpushnotistore")) {
DB = result;
resolve(DB);
} else {
return self.indexedDB.deleteDatabase("swpushnotidb"), openDB();
}
};
open.onupgradeneeded = upgradeDB
})
}
function upgradeDB(DBResult) {
DBResult = DBResult.target.result;
if(DBResult.objectStoreNames.contains("swpushnotistore")) {
DBResult.deleteObjectStore("swpushnotistore");
}
DBResult.createObjectStore("swpushnotistore", {
keyPath: "key"
});
};
function putDB(key, value) {
return openDB().then(function(db) {
var obj = {};
obj.key = key;
obj.value = value;
return new Promise(function(resolve, reject) {
var result = db.transaction("swpushnotistore", "readwrite").objectStore("swpushnotistore").put(obj);
result.onsuccess = resolve;
result.onerror = reject;
})
})
}
function getDB(target) {
return openDB().then(function(db) {
return new Promise(function(resolve, reject) {
var DBResult = db.transaction("swpushnotistore").objectStore("swpushnotistore").get(target);
DBResult.onsuccess = function() {
var result = DBResult.result;
resolve(result ? result.value : null)
};
DBResult.onerror = function() {
reject('Unable to get key "' + target + '" from object store.')
}
})
}).catch (function() {
return Promise.reject("Unable to open IndexedDB.")
});
}
var notiClick = function(endpoint, reg_srl) {
var data = new FormData();
data.append("endpoint", endpoint);
data.append("reg_srl", reg_srl);
return fetch('/index.php?act=procNotiClickNotification', {
method: "POST",
body: data
});
}
self.addEventListener('push', function(event) {
event.waitUntil(self.registration.pushManager.getSubscription().then(function(subscription) {
if(!subscription) {
throw new Error('PushManager: Can\'t get endpoint info.');
}
//return 구문 꼬박꼬박 안 붙여주면 백그라운드에서 업데이트 되었다고 추가적으로 알림 뜬다.
//크롬 최신버전에선 그래도 왠만해선 안 뜨는데 삼성브라우저 4와 같이 크로미움이 상당히 구버전이면
// 추가 알림이 뜨는 문제가 있다. 물론 showNotification가 포함되어 있지 않다면
// 크로미움 최신 버전에서도 추가 알림이 뜬다.
// 해당 문제에 대해선 http://stackoverflow.com/questions/31108699 참고 바람.
return Promise.all([getDB('Endpoint'), getDB('reg_srl')]).then(function(result) {
var endpoint = subscription.endpoint.split("/").slice(-1).pop();
var reg_srl = result[1];
var data = new FormData();
data.append("endpoint", endpoint);
data.append("reg_srl", reg_srl);
if(endpoint && result[0] && endpoint !== result[0]) {
console.log("Endpoint value is changed.");
console.log(result[0] + "=== TO ===" + endpoint);
putDB('Endpoint', endpoint);
}
return fetch("/index.php?act=getNotiNotificationByServiceWorker", {
method: "POST",
body: data
}).then(function(response) {
//console.log(response);
if(response.status !== 200) {
console.log('Server Error. Status Code: ' + response.status);
throw new Error();
}
return response.json().then(function(data) {
if(data.error) {
console.error('The API returned an error.', data.error);
throw new Error();
}
// requireInteraction 값이 true이면 클릭할때까지 절대로 안꺼짐.
// 안드로이드의 경우 현재 개발하는 시점에선 이 값에 상관없이 안꺼짐.
if(data.type == 'test' || data.status != 'SUCCESS') {
return self.registration.showNotification(data.default_title, {
body: data.default_message,
icon: data.default_icon,
data: {
endpoint: null,
target_url: data.default_url,
reg_srl: null
},
requireInteraction: false
});
}
var title = data.title;
var message = data.content_summary;
var icon = data.target_profile_image;
var last_recv = data.date;
if(!icon) {
icon = '/modules/noti/tpl/default.jpg';
}
data.endpoint = endpoint;
data.reg_srl = reg_srl;
putDB('LastReceive', last_recv);
// data항목 파이어폭스 모바일에선 안 먹히는 현상이 있음.
// 나중에 icon URL 뒤에 data항목을 json stringfy한 뒤 넘겨주기.
return self.registration.showNotification(title, {
body: message,
icon: icon,
data: data,
requireInteraction: false
});
});
});
});
}).catch(function(e) {
console.log(e);
}));
});
self.addEventListener('notificationclick', function (event) {
//console.log(event);
var data = event.notification.data;
event.notification.close();
event.waitUntil(clients.matchAll({
type: "window",
includeUncontrolled: true
}).then(function (clientList) {
for(var i = 0; i < clientList.length; i++) {
var client = clientList[i];
if(client.url == '/' && 'focus' in client) {
return client.focus();
}
}
if(clients.openWindow) {
return clients.openWindow(data.target_url);
}
}));
event.waitUntil(notiClick(data.endpoint, data.reg_srl));
});
self.addEventListener('notificationclose', function(event) {
event.waitUntil(
Promise.all([])
);
});