Web-Push notifications client library. In order to get it works you need:
- Have HTTPS set up.
- Configure your web server to serve
app.js
andserviceWorker.js
files from the same domain, where content is served from. If you use CDN for static files like css, js and imaged this two files MUST NOT be served from CDN. - Configure your web server to send
Service-Worker-Allowed: /
header forserviceWorker.js
file. - Configure your web server NOT to cache
app.js
andserviceWorker.js
files.
npm install pushilka
var pushilka = new Pushilka({
source: "<source token>",
serviceWorker: "/node_modules/pushilka/dist/serviceWorker.js"
})
pushilka.run()
-
endpoint
- endpoint where subscription will be sent to. (Default: https://push.wuazu.net/push_subscription.php) -
serviceWorker
- path to service worker. Not that service worker MUST be served from the same domain (Default:"/serviceWorker.js"
) -
serviceWorkerOptions
- service worker options. (Default:{scope: "/"}
), -
applicationServerKey
- public key that the push server will use to authenticate your application server. -
source
- you will obtain this from pushilka's team -
var1
,var2
,var3
,var4
- custom tracking parameters. -
done
- callback that will be called when user press Allow or Deny
location ~ /node_modules/pushilka/dist/(serviceWorker|app).js$ {
add_header 'Service-Worker-Allowed' '/';
expires -1;
}
<Location ~ "/(serviceWorker|app).js$">
Header set Service-Worker-Allowed /
Header unset ETag
Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires "Wed, 11 Jan 1984 05:00:00 GMT"
</Location>
- Deploy pushilka-cloudfront-headers application. During deployment you will be asked for application name, choose any you want. For example "pushilka".
- Go to the Servies -> IAM -> Roles and find recently created role for your function. If begins with aws-serverless-repository-pushilka-*.
Open Role and under
Trust relationships
change the line:
"Service": "lambda.amazonaws.com"
with the following:
"Service": [
"lambda.amazonaws.com",
"edgelambda.amazonaws.com"
]
- Find and open created function (Services -> Lambda -> Functions). Open it and publish new version of function. Choose
Publish new version
underActions
menu. - In the new version find CloufFront in Designer block and then enter CloudFront distribution which serves your js files and choose Origin Response event. Also selected "Enable trigger and replicate". Then press Add and Save function.
- Go to the Services -> CloudFront and wait until your distribution change state to Deployed. Then check, that headers are sent correctly.