mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-08 20:22:45 +01:00
use text/plain on /api/metrics
This commit is contained in:
parent
b30be6e4a2
commit
8eaacfea18
@ -41,13 +41,17 @@ function submitEvents() {
|
||||
events
|
||||
})
|
||||
],
|
||||
{ type: 'application/json' }
|
||||
{ type: 'text/plain' } // see http://crbug.com/490015
|
||||
);
|
||||
events.splice(0);
|
||||
if (!navigator.sendBeacon) {
|
||||
return;
|
||||
}
|
||||
navigator.sendBeacon('/api/metrics', data);
|
||||
try {
|
||||
navigator.sendBeacon('/api/metrics', data);
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
}
|
||||
}
|
||||
|
||||
async function addEvent(event_type, event_properties) {
|
||||
|
@ -136,6 +136,7 @@
|
||||
"dependencies": {
|
||||
"@google-cloud/storage": "^2.4.2",
|
||||
"aws-sdk": "^2.400.0",
|
||||
"body-parser": "^1.18.3",
|
||||
"choo": "^6.12.1",
|
||||
"cldr-core": "^34.0.0",
|
||||
"convict": "^4.4.1",
|
||||
|
@ -1,5 +1,5 @@
|
||||
const crypto = require('crypto');
|
||||
const express = require('express');
|
||||
const bodyParser = require('body-parser');
|
||||
const helmet = require('helmet');
|
||||
const uaparser = require('ua-parser-js');
|
||||
const storage = require('../storage');
|
||||
@ -69,7 +69,8 @@ module.exports = function(app) {
|
||||
res.set('Cache-Control', 'no-cache');
|
||||
next();
|
||||
});
|
||||
app.use(express.json());
|
||||
app.use(bodyParser.json());
|
||||
app.use(bodyParser.text());
|
||||
app.get('/', language, pages.index);
|
||||
app.get('/oauth', language, pages.blank);
|
||||
app.get('/legal', language, pages.legal);
|
||||
|
@ -2,7 +2,7 @@ const { sendBatch, clientEvent } = require('../amplitude');
|
||||
|
||||
module.exports = async function(req, res) {
|
||||
try {
|
||||
const data = req.body;
|
||||
const data = JSON.parse(req.body); // see http://crbug.com/490015
|
||||
const deltaT = Date.now() - data.now;
|
||||
const events = data.events.map(e =>
|
||||
clientEvent(
|
||||
|
Loading…
Reference in New Issue
Block a user