2019-05-02 22:04:06 +00:00
|
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
var mysql = require("mysql");
|
|
|
|
var obtenerAnime_1 = require("./Anime/obtenerAnime");
|
|
|
|
var obtenerTodosAnimes_1 = require("./Anime/obtenerTodosAnimes");
|
|
|
|
var webPush = require("web-push");
|
|
|
|
exports.con = mysql.createConnection({
|
2019-03-30 23:39:49 +00:00
|
|
|
host: "127.0.0.1",
|
|
|
|
user: "pseubntq_araozu",
|
|
|
|
password: "@Xsakah4b",
|
2019-05-02 22:04:06 +00:00
|
|
|
database: "pseubntq_pseudosubs",
|
|
|
|
multipleStatements: true
|
2019-03-30 23:39:49 +00:00
|
|
|
});
|
2019-05-02 22:04:06 +00:00
|
|
|
exports.con.connect(function (err) {
|
2019-03-30 23:39:49 +00:00
|
|
|
if (err) {
|
2019-05-02 22:04:06 +00:00
|
|
|
console.error("Error al conectarse a la base de datos :c\n" + err);
|
|
|
|
}
|
|
|
|
else {
|
2019-03-30 23:39:49 +00:00
|
|
|
console.log("Exito al conectarse a la base de datos :D");
|
|
|
|
}
|
|
|
|
});
|
2019-05-02 22:04:06 +00:00
|
|
|
exports.fun = function (app) {
|
|
|
|
var bodyParser = require("body-parser");
|
|
|
|
app.use(bodyParser.urlencoded({ extended: true }));
|
|
|
|
// app.use(bodyParser.json);
|
|
|
|
webPush.setVapidDetails("mailto:tbyuyfcjjll@gmail.com", "BPA_MfechJ8EwyMC_5-GZsWFtjPCD6f2qAzW5ouxnMs73mGTsgtD47of0pO1rKtpyWiWKE8yZVHHzTGhLHbfVRI", "6dOp0WChG-fLFSo9hRnMUn5S1BVBm3KhK9r0m4L-GoA");
|
|
|
|
app.post("/anime/:id", obtenerAnime_1.default);
|
|
|
|
app.post("/anime", obtenerTodosAnimes_1.default);
|
|
|
|
app.post("/u/validar", require("./Usuarios/ValidarUsuario").fun);
|
|
|
|
app.post("/n/registrar", require("./Notificaciones/RegistrarSubcripcion").fun);
|
|
|
|
app.post("/op/:anime_ID", require("./OP-ED/obtenerOP").fun);
|
|
|
|
app.post("/ed/:anime_ID", require("./OP-ED/obtenerED").fun);
|
|
|
|
app.post("/eps/links/", require("./Links/crearLinks").fun);
|
|
|
|
/**
|
|
|
|
* Rutas Legacy :c */
|
|
|
|
app.post('/links', require('./LinksAnimes/obtenerLinks').obtenerLinks);
|
|
|
|
app.put('/links', require('./LinksAnimes/modificarLink').modificarLinks);
|
|
|
|
app.post('/eps/variantes/:anime_ID', require('./Admin/Eps/obtenerVariantes').obtenerVariantes);
|
|
|
|
app.put('/eps/variantes/', require('./Admin/Eps/crearVariante').crearVariante);
|
|
|
|
app.put('/eps/mensaje/', require('./Admin/Eps/cambiarMensaje').cambiarMensaje);
|
|
|
|
app.post('/eps/links/:opcion_ID', require('./Admin/Eps/obtenerLinks').obtenerLinks);
|
|
|
|
app.post('/estadisticas', require('./Admin/Eps/estadisticas').estadisticas);
|
|
|
|
// Fin
|
|
|
|
/*
|
|
|
|
* Claves VAPID
|
|
|
|
* Publica: BPA_MfechJ8EwyMC_5-GZsWFtjPCD6f2qAzW5ouxnMs73mGTsgtD47of0pO1rKtpyWiWKE8yZVHHzTGhLHbfVRI
|
|
|
|
* Privada: 6dOp0WChG-fLFSo9hRnMUn5S1BVBm3KhK9r0m4L-GoA
|
|
|
|
* */
|
|
|
|
app.get("/n/test", function (req, res) {
|
|
|
|
console.log("Deberia enviar push...");
|
|
|
|
var payload = JSON.stringify({
|
|
|
|
title: "Push de ejemplo :3"
|
|
|
|
});
|
|
|
|
var subscripcion = { "endpoint": "https://fcm.googleapis.com/fcm/send/e-n6_jndfTw:APA91bGQrFOYgICLRm-diDHwJnI4909TiQB_FqnffBd6PnyyoiB2rDqehn41KxXMyw5Upa0IqqDnlr58-n3B9w6WCN6xY-sluDk8fpya928S_NPgJyAvbhFERN3Gqqy36s4J4OVDz6qL", "expirationTime": null, "keys": { "p256dh": "BGNpJIqpEkJPjVZcccV42TdXQi-G3nt6gVWXIMkRs69fWyQeLN7K-sEBs7ffyCiosJm4ApwY9_ol2Q57Zv5fg08", "auth": "DzzSWijI-WfBPWrI6eGcuw" } };
|
|
|
|
webPush.sendNotification(subscripcion, payload)
|
|
|
|
.then(function (response) {
|
|
|
|
console.log(JSON.stringify(response));
|
|
|
|
res.status(200);
|
|
|
|
res.send("Exito :D");
|
|
|
|
})
|
|
|
|
.catch(function (err) {
|
|
|
|
console.log(JSON.stringify(err));
|
|
|
|
res.status(400);
|
|
|
|
res.send("Error al enviar push :c\n" + err);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
exports.default = (function (app, http) {
|
|
|
|
exports.fun(app);
|
|
|
|
});
|