trytocleanRemoveUI
This commit is contained in:
parent
53d150b64e
commit
ee6696dbf8
@ -25,39 +25,6 @@ CREATE TABLE `streams`
|
|||||||
(`id`)
|
(`id`)
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
||||||
|
|
||||||
INSERT INTO streams (
|
|
||||||
streamName
|
|
||||||
, streamURL) VALUES
|
|
||||||
('Gold', 'http://SERVER1.cheesywotsit.gq:8090'),
|
|
||||||
('Insanity', 'https://trippy.pro:443'),
|
|
||||||
('PremiumPlus', 'http://kibb.link:8080'),
|
|
||||||
('GunSlinger', 'http://gunslingertv.org:8080'),
|
|
||||||
('VIP', 'http://shark.brokenwarrior.xyz:8080'),
|
|
||||||
('Technoid', 'http://capoisagod2021.org:8080'),
|
|
||||||
('Old Premium', 'https://caporeds.online:443'),
|
|
||||||
('New Premium', 'http://fckbrexit.link:8080'),
|
|
||||||
('Sol', 'http://tv.realot.xyz:35001'),
|
|
||||||
('Bluemoon', 'http://www.tvxclnt.com:8080'),
|
|
||||||
('AIRWOLF', 'http://iptv.satplex.co.uk:8080'),
|
|
||||||
('Gambler', 'http://37723998.to:2052'),
|
|
||||||
('Liveclub', 'http://apkdns.store:8080'),
|
|
||||||
('Opplex', 'http://opplex.tv:8080'),
|
|
||||||
('DIAZ', 'http://gold.mypsx.net:8880'),
|
|
||||||
('USA', 'http://pimptv.dnsabr.com:8080'),
|
|
||||||
('VIPER', 'http://tavaratv.xyz:2095'),
|
|
||||||
('SUNBED', 'http://cms-tan.media:8880'),
|
|
||||||
('Knightrider', 'http://streamknighttv.xyz:8080'),
|
|
||||||
('Simple', 'http://covidsucks.xyz:8080'),
|
|
||||||
('KDB', 'http://mytv.digital:8080/'),
|
|
||||||
('PYTHON', 'http://foxmedia.bounceme.net:8282'),
|
|
||||||
('KEANO', 'http://ip365.cx:80'),
|
|
||||||
('FODEN', 'http://ac.mustardsubs.tk:8880'),
|
|
||||||
('Titan', 'http://titanmedia.tech:8080');
|
|
||||||
ON DUPLICATE KEY
|
|
||||||
UPDATE `streamName` = VALUES
|
|
||||||
(`streamName`), `streamURL` = VALUES
|
|
||||||
(`streamURL`);
|
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `userAccounts`;
|
DROP TABLE IF EXISTS `userAccounts`;
|
||||||
CREATE TABLE `userAccounts`
|
CREATE TABLE `userAccounts`
|
||||||
(
|
(
|
||||||
|
30
app.js
30
app.js
@ -1,35 +1,15 @@
|
|||||||
var createError = require('http-errors');
|
|
||||||
var express = require('express');
|
var express = require('express');
|
||||||
var path = require('path');
|
const basicAuth = require('express-basic-auth')
|
||||||
var cookieParser = require('cookie-parser');
|
|
||||||
var cors = require('cors')
|
|
||||||
var logger = require('morgan');
|
|
||||||
|
|
||||||
const { getUsers } = require('./lib/getUsers')
|
const { getUsers } = require('./lib/getUsers')
|
||||||
|
|
||||||
var indexRouter = require('./routes/index');
|
var indexRouter = require('./routes/index');
|
||||||
var streamsRouter = require('./routes/getStreams');
|
|
||||||
var getUserAccounts = require('./routes/getUserAccounts')
|
var getUserAccounts = require('./routes/getUserAccounts')
|
||||||
var singleUserCheck = require('./routes/singleCheck')
|
var singleUserCheck = require('./routes/singleCheck')
|
||||||
var addAccount = require('./routes/addAccount')
|
var addAccount = require('./routes/addAccount')
|
||||||
var deleteAccount = require('./routes/deleteAccount')
|
var deleteAccount = require('./routes/deleteAccount')
|
||||||
var readCookie = require('./routes/readCookie')
|
|
||||||
var getStreamNames = require('./routes/getStreamNames')
|
|
||||||
var login = require('./routes/login')
|
var login = require('./routes/login')
|
||||||
var app = express();
|
var app = express();
|
||||||
const basicAuth = require('express-basic-auth')
|
|
||||||
|
|
||||||
|
|
||||||
// view engine setup
|
|
||||||
app.set('views', path.join(__dirname, 'views'));
|
|
||||||
app.set('view engine', 'jade');
|
|
||||||
|
|
||||||
app.use(cors({ origin: true, credentials: true, methods: 'GET,PUT,POST,OPTIONS', allowedHeaders: 'Content-Type,Authorization' }));
|
|
||||||
app.use(logger('dev'));
|
|
||||||
app.use(express.json());
|
|
||||||
app.use(express.urlencoded({ extended: false }));
|
|
||||||
app.use(cookieParser('82e4e438a0705fabf61f9854e3b575af'));
|
|
||||||
app.use(express.static(path.join(__dirname, 'public')));
|
|
||||||
|
|
||||||
let usersList = getUsers()
|
let usersList = getUsers()
|
||||||
|
|
||||||
@ -40,14 +20,10 @@ const users = {
|
|||||||
|
|
||||||
app.use('/', indexRouter);
|
app.use('/', indexRouter);
|
||||||
app.use('/login', basicAuth(users), login)
|
app.use('/login', basicAuth(users), login)
|
||||||
// app.use('/getStreams', streamsRouter);
|
|
||||||
app.use('/getUserAccounts', basicAuth(users), getUserAccounts);
|
app.use('/getUserAccounts', basicAuth(users), getUserAccounts);
|
||||||
app.use('/singleCheck', basicAuth(users), singleUserCheck)
|
app.use('/singleCheck', basicAuth(users), singleUserCheck)
|
||||||
app.use('/addAccount', basicAuth(users), addAccount)
|
app.use('/addAccount', basicAuth(users), addAccount)
|
||||||
app.use('/deleteAccount', basicAuth(users), deleteAccount)
|
app.use('/deleteAccount', basicAuth(users), deleteAccount)
|
||||||
// app.use('/readCookie', readCookie)
|
|
||||||
// app.use('/getStreamNames', getStreamNames)
|
|
||||||
|
|
||||||
|
|
||||||
// catch 404 and forward to error handler
|
// catch 404 and forward to error handler
|
||||||
app.use(function (req, res, next) {
|
app.use(function (req, res, next) {
|
||||||
|
@ -1,19 +0,0 @@
|
|||||||
FROM node:12-alpine
|
|
||||||
|
|
||||||
LABEL version="1.0"
|
|
||||||
LABEL description="FRONTEND"
|
|
||||||
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
COPY ["package.json", "package-lock.json", "./"]
|
|
||||||
|
|
||||||
ENV PORT=6969
|
|
||||||
|
|
||||||
# RUN apk --no-cache add curl
|
|
||||||
RUN npm install --production
|
|
||||||
|
|
||||||
COPY . .
|
|
||||||
|
|
||||||
EXPOSE 6969
|
|
||||||
|
|
||||||
CMD ["npm", "start"]
|
|
@ -1,2 +0,0 @@
|
|||||||
node_modules
|
|
||||||
npm-debug.log
|
|
23
client/.gitignore
vendored
23
client/.gitignore
vendored
@ -1,23 +0,0 @@
|
|||||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
||||||
|
|
||||||
# dependencies
|
|
||||||
/node_modules
|
|
||||||
/.pnp
|
|
||||||
.pnp.js
|
|
||||||
|
|
||||||
# testing
|
|
||||||
/coverage
|
|
||||||
|
|
||||||
# production
|
|
||||||
/build
|
|
||||||
|
|
||||||
# misc
|
|
||||||
.DS_Store
|
|
||||||
.env.local
|
|
||||||
.env.development.local
|
|
||||||
.env.test.local
|
|
||||||
.env.production.local
|
|
||||||
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
@ -1,18 +0,0 @@
|
|||||||
# stage1 - build react app first
|
|
||||||
FROM node:12-alpine as build
|
|
||||||
WORKDIR /app
|
|
||||||
ENV PATH /app/node_modules/.bin:$PATH
|
|
||||||
COPY ./package.json /app/
|
|
||||||
COPY ./yarn.lock /app/
|
|
||||||
RUN yarn
|
|
||||||
COPY . /app
|
|
||||||
RUN yarn build
|
|
||||||
|
|
||||||
# stage 2 - build the final image and copy the react build files
|
|
||||||
FROM nginx:1.17.8-alpine
|
|
||||||
COPY --from=build /app/build /usr/share/nginx/html
|
|
||||||
RUN apk --no-cache add curl
|
|
||||||
RUN rm /etc/nginx/conf.d/default.conf
|
|
||||||
COPY nginx/nginx.conf /etc/nginx/conf.d
|
|
||||||
EXPOSE 6969
|
|
||||||
CMD ["nginx", "-g", "daemon off;"]
|
|
@ -1,70 +0,0 @@
|
|||||||
# Getting Started with Create React App
|
|
||||||
|
|
||||||
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
|
|
||||||
|
|
||||||
## Available Scripts
|
|
||||||
|
|
||||||
In the project directory, you can run:
|
|
||||||
|
|
||||||
### `yarn start`
|
|
||||||
|
|
||||||
Runs the app in the development mode.\
|
|
||||||
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
|
|
||||||
|
|
||||||
The page will reload if you make edits.\
|
|
||||||
You will also see any lint errors in the console.
|
|
||||||
|
|
||||||
### `yarn test`
|
|
||||||
|
|
||||||
Launches the test runner in the interactive watch mode.\
|
|
||||||
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
|
|
||||||
|
|
||||||
### `yarn build`
|
|
||||||
|
|
||||||
Builds the app for production to the `build` folder.\
|
|
||||||
It correctly bundles React in production mode and optimizes the build for the best performance.
|
|
||||||
|
|
||||||
The build is minified and the filenames include the hashes.\
|
|
||||||
Your app is ready to be deployed!
|
|
||||||
|
|
||||||
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
|
|
||||||
|
|
||||||
### `yarn eject`
|
|
||||||
|
|
||||||
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
|
|
||||||
|
|
||||||
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
|
|
||||||
|
|
||||||
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
|
|
||||||
|
|
||||||
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
|
|
||||||
|
|
||||||
## Learn More
|
|
||||||
|
|
||||||
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
|
|
||||||
|
|
||||||
To learn React, check out the [React documentation](https://reactjs.org/).
|
|
||||||
|
|
||||||
### Code Splitting
|
|
||||||
|
|
||||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
|
|
||||||
|
|
||||||
### Analyzing the Bundle Size
|
|
||||||
|
|
||||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
|
|
||||||
|
|
||||||
### Making a Progressive Web App
|
|
||||||
|
|
||||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
|
|
||||||
|
|
||||||
### Advanced Configuration
|
|
||||||
|
|
||||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
|
|
||||||
|
|
||||||
### Deployment
|
|
||||||
|
|
||||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
|
|
||||||
|
|
||||||
### `yarn build` fails to minify
|
|
||||||
|
|
||||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
|
|
@ -1,21 +0,0 @@
|
|||||||
server {
|
|
||||||
|
|
||||||
listen 6969;
|
|
||||||
|
|
||||||
location / {
|
|
||||||
root /usr/share/nginx/html;
|
|
||||||
index index.html index.htm;
|
|
||||||
|
|
||||||
# to redirect all the requests to index.html,
|
|
||||||
# useful when you are using react-router
|
|
||||||
|
|
||||||
try_files $uri /index.html;
|
|
||||||
}
|
|
||||||
|
|
||||||
error_page 500 502 503 504 /50x.html;
|
|
||||||
|
|
||||||
location = /50x.html {
|
|
||||||
root /usr/share/nginx/html;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
16131
client/package-lock.json
generated
16131
client/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -1,43 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "client",
|
|
||||||
"version": "0.1.0",
|
|
||||||
"private": true,
|
|
||||||
"dependencies": {
|
|
||||||
"@testing-library/react": "^11.1.0",
|
|
||||||
"react": "^17.0.1",
|
|
||||||
"react-dom": "^17.0.1",
|
|
||||||
"react-dropdown": "^1.9.2",
|
|
||||||
"react-scripts": "4.0.2",
|
|
||||||
"web-vitals": "^1.0.1",
|
|
||||||
"@material-ui/core": "^4.11.3",
|
|
||||||
"@material-ui/icons": "^4.11.2",
|
|
||||||
"axios": "^0.21.1",
|
|
||||||
"material-table": "^1.69.2",
|
|
||||||
"react-router-dom": "^5.2.0"
|
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"start": "set URL=vps.k-world.me.uk && set PORT=6969 && react-scripts start",
|
|
||||||
"build": "react-scripts build",
|
|
||||||
"test": "react-scripts test",
|
|
||||||
"eject": "react-scripts eject"
|
|
||||||
},
|
|
||||||
"proxy": "http://localhost:3001",
|
|
||||||
"eslintConfig": {
|
|
||||||
"extends": [
|
|
||||||
"react-app",
|
|
||||||
"react-app/jest"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"browserslist": {
|
|
||||||
"production": [
|
|
||||||
">0.2%",
|
|
||||||
"not dead",
|
|
||||||
"not op_mini all"
|
|
||||||
],
|
|
||||||
"development": [
|
|
||||||
"last 1 chrome version",
|
|
||||||
"last 1 firefox version",
|
|
||||||
"last 1 safari version"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
Binary file not shown.
Before Width: | Height: | Size: 3.8 KiB |
@ -1,22 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
||||||
<meta name="theme-color" content="#000000" />
|
|
||||||
<meta
|
|
||||||
name="description"
|
|
||||||
content="Web site created using create-react-app"
|
|
||||||
/>
|
|
||||||
<link
|
|
||||||
rel="stylesheet"
|
|
||||||
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
|
|
||||||
/>
|
|
||||||
<title>React App</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
||||||
<div id="root"></div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Binary file not shown.
Before Width: | Height: | Size: 5.2 KiB |
Binary file not shown.
Before Width: | Height: | Size: 9.4 KiB |
@ -1,25 +0,0 @@
|
|||||||
{
|
|
||||||
"short_name": "React App",
|
|
||||||
"name": "Create React App Sample",
|
|
||||||
"icons": [
|
|
||||||
{
|
|
||||||
"src": "favicon.ico",
|
|
||||||
"sizes": "64x64 32x32 24x24 16x16",
|
|
||||||
"type": "image/x-icon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"src": "logo192.png",
|
|
||||||
"type": "image/png",
|
|
||||||
"sizes": "192x192"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"src": "logo512.png",
|
|
||||||
"type": "image/png",
|
|
||||||
"sizes": "512x512"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"start_url": ".",
|
|
||||||
"display": "standalone",
|
|
||||||
"theme_color": "#000000",
|
|
||||||
"background_color": "#ffffff"
|
|
||||||
}
|
|
@ -1,3 +0,0 @@
|
|||||||
# https://www.robotstxt.org/robotstxt.html
|
|
||||||
User-agent: *
|
|
||||||
Disallow:
|
|
@ -1,53 +0,0 @@
|
|||||||
/* Pen-specific styles */
|
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
font-size: 1.25rem;
|
|
||||||
font-family: sans-serif;
|
|
||||||
line-height: 150%;
|
|
||||||
text-shadow: 0 2px 2px #1b1917;
|
|
||||||
}
|
|
||||||
|
|
||||||
section {
|
|
||||||
color: #fff;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
div {
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
article {
|
|
||||||
position: absolute;
|
|
||||||
top: 50%;
|
|
||||||
left: 50%;
|
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
width: 100%;
|
|
||||||
padding: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 1.75rem;
|
|
||||||
margin: 0 0 0.75rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Pattern styles */
|
|
||||||
.container {
|
|
||||||
display: table;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.left-half {
|
|
||||||
background-color: #060b4d9f;
|
|
||||||
position: absolute;
|
|
||||||
left: 0px;
|
|
||||||
width: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.right-half {
|
|
||||||
background-color: #060b4d9f;
|
|
||||||
position: absolute;
|
|
||||||
right: 0px;
|
|
||||||
width: 50%;
|
|
||||||
}
|
|
@ -1,21 +0,0 @@
|
|||||||
import React from "react";
|
|
||||||
import { BrowserRouter as Router, Route, Switch } from "react-router-dom";
|
|
||||||
import { Navigation, Footer, Home, Accounts, ServerList, AddAccount } from "./components";
|
|
||||||
function App() {
|
|
||||||
return (
|
|
||||||
<div className="App">
|
|
||||||
<Router>
|
|
||||||
<Navigation />
|
|
||||||
<Switch>
|
|
||||||
<Route path="/" exact component={() => <Home />} />
|
|
||||||
<Route path="/Accounts" exact component={() => <Accounts />} />
|
|
||||||
<Route path="/ServerList" exact component={() => <ServerList />} />
|
|
||||||
<Route path="/AddAccount" exact component={() => <AddAccount />} />
|
|
||||||
</Switch>
|
|
||||||
<Footer />
|
|
||||||
</Router>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default App;
|
|
@ -1,18 +0,0 @@
|
|||||||
import axios from "axios";
|
|
||||||
|
|
||||||
async function readCookie() {
|
|
||||||
|
|
||||||
try {
|
|
||||||
const res = await axios.get("http://vps.k-world.me.uk:3001/readCookie", { withCredentials: true });
|
|
||||||
console.log('IM CHECKING AUTH')
|
|
||||||
if (res.data === "No Cookie Set") {
|
|
||||||
console.log('I CHECKED AUTH')
|
|
||||||
document.location = "/";
|
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
console.log(e);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default readCookie;
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
|||||||
import React from "react";
|
|
||||||
import MTable from "./accountTable";
|
|
||||||
import readCookie from "../checkAuth";
|
|
||||||
|
|
||||||
function Accounts() {
|
|
||||||
readCookie();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div style={{ padding: "30px" }}>
|
|
||||||
<MTable />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default Accounts;
|
|
@ -1,136 +0,0 @@
|
|||||||
import React, { Component } from "react";
|
|
||||||
import axios from "axios";
|
|
||||||
import Dropdown from "react-dropdown";
|
|
||||||
import "react-dropdown/style.css";
|
|
||||||
import readCookie from "../checkAuth";
|
|
||||||
|
|
||||||
let arr = [];
|
|
||||||
class AddAccount extends Component {
|
|
||||||
constructor() {
|
|
||||||
// readCookie();
|
|
||||||
|
|
||||||
super();
|
|
||||||
this.state = {
|
|
||||||
username: "",
|
|
||||||
password: "",
|
|
||||||
stream: "",
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
this.fetchOptions();
|
|
||||||
}
|
|
||||||
|
|
||||||
fetchOptions() {
|
|
||||||
try {
|
|
||||||
fetch("http://vps.k-world.me.uk:3001/getStreamNames",
|
|
||||||
{ withCredentials: true})
|
|
||||||
.then((res) => {
|
|
||||||
return res.json();
|
|
||||||
})
|
|
||||||
.then((json) => {
|
|
||||||
json.forEach((account) => {
|
|
||||||
arr.push(account.streamName);
|
|
||||||
});
|
|
||||||
this.setState({ options: arr });
|
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
console.log(error);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
_onSelect = (e) => {
|
|
||||||
/*
|
|
||||||
Because we named the inputs to match their
|
|
||||||
corresponding values in state, it's
|
|
||||||
super easy to update the state
|
|
||||||
*/
|
|
||||||
this.setState({ stream: e.value });
|
|
||||||
};
|
|
||||||
|
|
||||||
onChange = (e) => {
|
|
||||||
/*
|
|
||||||
Because we named the inputs to match their
|
|
||||||
corresponding values in state, it's
|
|
||||||
super easy to update the state
|
|
||||||
*/
|
|
||||||
this.setState({ [e.target.name]: e.target.value });
|
|
||||||
};
|
|
||||||
|
|
||||||
onSubmit = (e) => {
|
|
||||||
e.preventDefault();
|
|
||||||
// get our form data out of state
|
|
||||||
const { username, password, stream } = this.state;
|
|
||||||
|
|
||||||
console.log({ username, password, stream });
|
|
||||||
|
|
||||||
axios
|
|
||||||
.post(
|
|
||||||
"http://vps.k-world.me.uk:3001/addAccount",
|
|
||||||
{
|
|
||||||
username,
|
|
||||||
password,
|
|
||||||
stream,
|
|
||||||
},
|
|
||||||
{ withCredentials: true }
|
|
||||||
)
|
|
||||||
.then((res) => {
|
|
||||||
console.log(res);
|
|
||||||
console.log(res.data);
|
|
||||||
if (res.data.includes("Added successfully")) {
|
|
||||||
document.location = "/accounts";
|
|
||||||
} else {
|
|
||||||
document.location = "/AddAccount";
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
const { username, password } = this.state;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<section class="container">
|
|
||||||
<div class="left-half">
|
|
||||||
<article>
|
|
||||||
<h1>Add An Account</h1>
|
|
||||||
<p>
|
|
||||||
<form onSubmit={this.onSubmit}>
|
|
||||||
<p>
|
|
||||||
UserName -
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
name="username"
|
|
||||||
value={username}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Password -
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
name="password"
|
|
||||||
value={password}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Stream Name -
|
|
||||||
<Dropdown
|
|
||||||
options={arr}
|
|
||||||
onChange={this._onSelect}
|
|
||||||
// defaultValue={arr[3]}
|
|
||||||
// value={arr[0]}
|
|
||||||
placeholder="Select an account"
|
|
||||||
/>
|
|
||||||
</p>
|
|
||||||
<br />
|
|
||||||
<button type="submit">Add Account</button>
|
|
||||||
</form>
|
|
||||||
</p>
|
|
||||||
</article>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
export default AddAccount;
|
|
@ -1,17 +0,0 @@
|
|||||||
import React from "react";
|
|
||||||
|
|
||||||
function Footer() {
|
|
||||||
return (
|
|
||||||
<div className="footer">
|
|
||||||
<footer class="py-5 bg-dark fixed-bottom">
|
|
||||||
<div class="container">
|
|
||||||
<p class="m-0 text-center text-white">
|
|
||||||
Copyright © 2021
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default Footer;
|
|
@ -1,55 +0,0 @@
|
|||||||
import React, { useState, useEffect } from "react";
|
|
||||||
import ReactDOM from "react-dom";
|
|
||||||
|
|
||||||
import axios from "axios";
|
|
||||||
|
|
||||||
function App() {
|
|
||||||
const deleteCookie = async () => {
|
|
||||||
try {
|
|
||||||
// await axios.get("http://" + process.env.URL + ":3001/readCookie/clear");
|
|
||||||
await axios.get("http://vps.k-world.me.uk:3001/readCookie/clear");
|
|
||||||
|
|
||||||
} catch (e) {
|
|
||||||
console.log(e);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const [username, setUsername] = useState();
|
|
||||||
const [password, setPassword] = useState();
|
|
||||||
|
|
||||||
const auth = async () => {
|
|
||||||
try {
|
|
||||||
// const res = await axios.get("http://" + process.env.URL + ":3001/login", {
|
|
||||||
const res = await axios.get("http://vps.k-world.me.uk:3001/login", {
|
|
||||||
auth: { username, password },
|
|
||||||
});
|
|
||||||
if (res.data.auth === "Success") {
|
|
||||||
document.location = "/accounts";
|
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
console.log(e);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="App">
|
|
||||||
<div>
|
|
||||||
<label>Username: </label>
|
|
||||||
<br />
|
|
||||||
<input type="text" onChange={(e) => setUsername(e.target.value)} />
|
|
||||||
<br />
|
|
||||||
<label>Password: </label>
|
|
||||||
<br />
|
|
||||||
<input type="password" onChange={(e) => setPassword(e.target.value)} />
|
|
||||||
<br />
|
|
||||||
<button onClick={auth}>Login</button> -
|
|
||||||
<button onClick={deleteCookie}>Logout</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default App;
|
|
||||||
|
|
||||||
const rootElement = document.getElementById("root");
|
|
||||||
ReactDOM.render(<App />, rootElement);
|
|
@ -1,51 +0,0 @@
|
|||||||
import React from "react";
|
|
||||||
import { Link, withRouter } from "react-router-dom";
|
|
||||||
|
|
||||||
function Navigation(props) {
|
|
||||||
return (
|
|
||||||
<div className="navigation">
|
|
||||||
<nav className="navbar navbar-expand navbar-dark bg-dark">
|
|
||||||
<div className="container">
|
|
||||||
<Link className="navbar-brand" to="/">
|
|
||||||
BBLB_DNS
|
|
||||||
</Link>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<ul className="navbar-nav ml-auto">
|
|
||||||
<li
|
|
||||||
className={`nav-item ${
|
|
||||||
props.location.pathname === "/" ? "active" : ""
|
|
||||||
}`}
|
|
||||||
>
|
|
||||||
<Link className="nav-link" to="/">
|
|
||||||
Home
|
|
||||||
<span className="sr-only">(current)</span>
|
|
||||||
</Link>
|
|
||||||
</li>
|
|
||||||
<li
|
|
||||||
className={`nav-item ${
|
|
||||||
props.location.pathname === "/accounts" ? "active" : ""
|
|
||||||
}`}
|
|
||||||
>
|
|
||||||
<Link className="nav-link" to="/accounts">
|
|
||||||
Accounts
|
|
||||||
</Link>
|
|
||||||
</li>
|
|
||||||
<li
|
|
||||||
className={`nav-item ${
|
|
||||||
props.location.pathname === "/AddAccount" ? "active" : ""
|
|
||||||
}`}
|
|
||||||
>
|
|
||||||
<Link className="nav-link" to="/AddAccount">
|
|
||||||
Add Account
|
|
||||||
</Link>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default withRouter(Navigation);
|
|
@ -1,56 +0,0 @@
|
|||||||
import React, { Component } from "react";
|
|
||||||
|
|
||||||
class ServerList extends Component {
|
|
||||||
constructor() {
|
|
||||||
super();
|
|
||||||
this.state = {
|
|
||||||
fname: "",
|
|
||||||
lname: "",
|
|
||||||
streams: [],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
fetch("/getStreams")
|
|
||||||
.then((res) => res.json())
|
|
||||||
.then((streams) => this.setState({ streams }));
|
|
||||||
}
|
|
||||||
|
|
||||||
onChange = (e) => {
|
|
||||||
/*
|
|
||||||
Because we named the inputs to match their
|
|
||||||
corresponding values in state, it's
|
|
||||||
super easy to update the state
|
|
||||||
*/
|
|
||||||
this.setState({ [e.target.name]: e.target.value });
|
|
||||||
};
|
|
||||||
|
|
||||||
onSubmit = (e) => {
|
|
||||||
e.preventDefault();
|
|
||||||
// get our form data out of state
|
|
||||||
const { fname, lname } = this.state;
|
|
||||||
console.log({ fname, lname });
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
return (
|
|
||||||
<div className="contact">
|
|
||||||
<div class="container">
|
|
||||||
<div class="row align-items-center my-5">
|
|
||||||
<div class="col-lg-7">
|
|
||||||
<h1>Stream Details</h1>
|
|
||||||
</div>
|
|
||||||
<div class="col-lg-5">
|
|
||||||
{this.state.streams.map((stream) => (
|
|
||||||
<div key={stream.StreamName}>
|
|
||||||
{stream.StreamName} - {stream.StreamURL}
|
|
||||||
</div>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
export default ServerList;
|
|
@ -1,70 +0,0 @@
|
|||||||
import React from "react";
|
|
||||||
import Dropdown from "react-dropdown";
|
|
||||||
import "react-dropdown/style.css";
|
|
||||||
|
|
||||||
var values;
|
|
||||||
let arr = [];
|
|
||||||
class DropDown extends React.Component {
|
|
||||||
constructor() {
|
|
||||||
super();
|
|
||||||
this.state = {
|
|
||||||
options: [],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
this.fetchOptions();
|
|
||||||
}
|
|
||||||
|
|
||||||
fetchOptions() {
|
|
||||||
fetch("http://vps.k-world.me.uk:3001/getStreamNames")
|
|
||||||
.then((res) => {
|
|
||||||
return res.json();
|
|
||||||
})
|
|
||||||
.then((json) => {
|
|
||||||
values = json;
|
|
||||||
|
|
||||||
values.forEach((element) => {
|
|
||||||
arr.push(element.streamName);
|
|
||||||
});
|
|
||||||
this.setState({ options: arr });
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
handleChange = (event) => {
|
|
||||||
this.setState({
|
|
||||||
value: event.target.value,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
_onSelect = (e) => {
|
|
||||||
/*
|
|
||||||
Because we named the inputs to match their
|
|
||||||
corresponding values in state, it's
|
|
||||||
super easy to update the state
|
|
||||||
*/
|
|
||||||
this.setState({ stream: e.value });
|
|
||||||
};
|
|
||||||
|
|
||||||
onChange = (e) => {
|
|
||||||
/*
|
|
||||||
Because we named the inputs to match their
|
|
||||||
corresponding values in state, it's
|
|
||||||
super easy to update the state
|
|
||||||
*/
|
|
||||||
this.setState({ [e.target.name]: e.target.value });
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
return (
|
|
||||||
<Dropdown
|
|
||||||
options={arr}
|
|
||||||
onChange={this._onSelect}
|
|
||||||
value={arr[0]}
|
|
||||||
placeholder="Select an option"
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default DropDown;
|
|
@ -1,91 +0,0 @@
|
|||||||
import React, { Component } from "react";
|
|
||||||
import axios from "axios"; // npm instal axios
|
|
||||||
import { forwardRef } from "react";
|
|
||||||
import MaterialTable from "material-table";
|
|
||||||
import ArrowDownward from "@material-ui/icons/ArrowDownward";
|
|
||||||
import ChevronLeft from "@material-ui/icons/ChevronLeft";
|
|
||||||
import ChevronRight from "@material-ui/icons/ChevronRight";
|
|
||||||
import Clear from "@material-ui/icons/Clear";
|
|
||||||
import FilterList from "@material-ui/icons/FilterList";
|
|
||||||
import FirstPage from "@material-ui/icons/FirstPage";
|
|
||||||
import LastPage from "@material-ui/icons/LastPage";
|
|
||||||
import Search from "@material-ui/icons/Search";
|
|
||||||
|
|
||||||
const tableIcons = {
|
|
||||||
// DetailPanel: forwardRef((props, ref) => <ChevronRight {...props} ref={ref} />),
|
|
||||||
Filter: forwardRef((props, ref) => <FilterList {...props} ref={ref} />),
|
|
||||||
FirstPage: forwardRef((props, ref) => <FirstPage {...props} ref={ref} />),
|
|
||||||
LastPage: forwardRef((props, ref) => <LastPage {...props} ref={ref} />),
|
|
||||||
NextPage: forwardRef((props, ref) => <ChevronRight {...props} ref={ref} />),
|
|
||||||
PreviousPage: forwardRef((props, ref) => (
|
|
||||||
<ChevronLeft {...props} ref={ref} />
|
|
||||||
)),
|
|
||||||
ResetSearch: forwardRef((props, ref) => <Clear {...props} ref={ref} />),
|
|
||||||
Search: forwardRef((props, ref) => <Search {...props} ref={ref} />),
|
|
||||||
SortArrow: forwardRef((props, ref) => <ArrowDownward {...props} ref={ref} />),
|
|
||||||
};
|
|
||||||
|
|
||||||
export default class MatDataTable extends Component {
|
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
this.state = { person: [] };
|
|
||||||
}
|
|
||||||
|
|
||||||
componentDidMount(prevProps) {
|
|
||||||
const url = "http://vps.k-world.me.uk:3001/getUserAccounts";
|
|
||||||
axios.get(url, { withCredentials: true }).then((results) => {
|
|
||||||
console.log(results);
|
|
||||||
console.log(results.data);
|
|
||||||
this.setState({ person: results.data });
|
|
||||||
|
|
||||||
var newArr = results.data.map(function (val) {
|
|
||||||
let date = new Date(val.expiaryDate * 1000);
|
|
||||||
let d = date.toGMTString();
|
|
||||||
return {
|
|
||||||
username: val.username,
|
|
||||||
streamName: val.streamName,
|
|
||||||
streamURL: val.streamURL,
|
|
||||||
expiaryDate: d,
|
|
||||||
};
|
|
||||||
});
|
|
||||||
console.log(results.data.results);
|
|
||||||
this.setState(
|
|
||||||
{
|
|
||||||
tableArray: newArr, //set state of the weather5days
|
|
||||||
},
|
|
||||||
() => {
|
|
||||||
console.log(this.state.tableArray);
|
|
||||||
console.log("this.tableArray ", this.state.tableArray);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
render() {
|
|
||||||
return (
|
|
||||||
<div
|
|
||||||
style={{ maxWidth: "100%", marginLeft: "50px", marginRight: "50px" }}
|
|
||||||
>
|
|
||||||
<MaterialTable
|
|
||||||
icons={tableIcons}
|
|
||||||
options={{
|
|
||||||
grouping: false,
|
|
||||||
}}
|
|
||||||
columns={[
|
|
||||||
{
|
|
||||||
title: "Username",
|
|
||||||
field: "username",
|
|
||||||
type: "numeric",
|
|
||||||
align: "left",
|
|
||||||
},
|
|
||||||
{ title: "Stream Name", field: "streamName" },
|
|
||||||
{ title: "Stream URL", field: "streamURL" },
|
|
||||||
{ title: "Expiry Date", field: "expiaryDate", type: "numeric" },
|
|
||||||
]}
|
|
||||||
data={this.state.tableArray}
|
|
||||||
title="Stream Details"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,7 +0,0 @@
|
|||||||
export { default as Navigation } from "./Navigation";
|
|
||||||
export { default as Footer } from "./Footer";
|
|
||||||
export { default as Home } from "./Home";
|
|
||||||
export { default as Accounts } from "./Accounts";
|
|
||||||
export { default as ServerList } from "./ServerList";
|
|
||||||
export { default as AddAccount } from "./AddAccount"
|
|
||||||
export {default as DropDown } from "./accountDropDown"
|
|
@ -1,13 +0,0 @@
|
|||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
||||||
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
||||||
sans-serif;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
}
|
|
||||||
|
|
||||||
code {
|
|
||||||
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
||||||
monospace;
|
|
||||||
}
|
|
@ -1,17 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
import ReactDOM from 'react-dom';
|
|
||||||
import './index.css';
|
|
||||||
import App from './App';
|
|
||||||
import reportWebVitals from './reportWebVitals';
|
|
||||||
|
|
||||||
ReactDOM.render(
|
|
||||||
<React.StrictMode>
|
|
||||||
<App />
|
|
||||||
</React.StrictMode>,
|
|
||||||
document.getElementById('root')
|
|
||||||
);
|
|
||||||
|
|
||||||
// If you want to start measuring performance in your app, pass a function
|
|
||||||
// to log results (for example: reportWebVitals(console.log))
|
|
||||||
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
|
||||||
reportWebVitals();
|
|
@ -1,81 +0,0 @@
|
|||||||
import React, { Component } from 'react';
|
|
||||||
import axios from 'axios';
|
|
||||||
import './App.css';
|
|
||||||
class App extends Component {
|
|
||||||
constructor() {
|
|
||||||
super();
|
|
||||||
this.state = {
|
|
||||||
fname: '',
|
|
||||||
lname: '',
|
|
||||||
streams: []
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
fetch('/getStreams')
|
|
||||||
.then(res => res.json())
|
|
||||||
.then(streams => this.setState({ streams }));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
onChange = (e) => {
|
|
||||||
/*
|
|
||||||
Because we named the inputs to match their
|
|
||||||
corresponding values in state, it's
|
|
||||||
super easy to update the state
|
|
||||||
*/
|
|
||||||
this.setState({ [e.target.name]: e.target.value });
|
|
||||||
}
|
|
||||||
|
|
||||||
onSubmit = (e) => {
|
|
||||||
e.preventDefault();
|
|
||||||
// get our form data out of state
|
|
||||||
const { fname, lname } = this.state;
|
|
||||||
console.log({ fname, lname })
|
|
||||||
}
|
|
||||||
|
|
||||||
render() {
|
|
||||||
const { fname, lname } = this.state;
|
|
||||||
return (
|
|
||||||
<section class="container">
|
|
||||||
<div class="left-half">
|
|
||||||
<article>
|
|
||||||
<h1>User Login</h1>
|
|
||||||
<p>
|
|
||||||
<form onSubmit={this.onSubmit}>
|
|
||||||
<p>UserName
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
name="fname"
|
|
||||||
value={fname}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
</p>
|
|
||||||
<p>Password
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
name="lname"
|
|
||||||
value={lname}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
</p>
|
|
||||||
<br />
|
|
||||||
<button type="submit">Login</button>
|
|
||||||
</form>
|
|
||||||
</p>
|
|
||||||
</article>
|
|
||||||
</div>
|
|
||||||
<div class="right-half">
|
|
||||||
<article>
|
|
||||||
<h1>Stream Details</h1>
|
|
||||||
{this.state.streams.map(stream =>
|
|
||||||
<div key={stream.StreamName}>{stream.StreamName} - {stream.StreamURL}</div>
|
|
||||||
)}
|
|
||||||
</article>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
export default App;
|
|
@ -1,13 +0,0 @@
|
|||||||
const reportWebVitals = onPerfEntry => {
|
|
||||||
if (onPerfEntry && onPerfEntry instanceof Function) {
|
|
||||||
import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
|
|
||||||
getCLS(onPerfEntry);
|
|
||||||
getFID(onPerfEntry);
|
|
||||||
getFCP(onPerfEntry);
|
|
||||||
getLCP(onPerfEntry);
|
|
||||||
getTTFB(onPerfEntry);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default reportWebVitals;
|
|
@ -1,5 +0,0 @@
|
|||||||
// jest-dom adds custom jest matchers for asserting on DOM nodes.
|
|
||||||
// allows you to do things like:
|
|
||||||
// expect(element).toHaveTextContent(/react/i)
|
|
||||||
// learn more: https://github.com/testing-library/jest-dom
|
|
||||||
import '@testing-library/jest-dom';
|
|
11392
client/yarn.lock
11392
client/yarn.lock
File diff suppressed because it is too large
Load Diff
141
lib/checker.js
141
lib/checker.js
@ -1,7 +1,5 @@
|
|||||||
|
|
||||||
let streamArrays = require('./streamArray.json')
|
|
||||||
|
|
||||||
let users = require('./logins.json')
|
|
||||||
|
|
||||||
const { getStreamsNew } = require('../routes/getStreams')
|
const { getStreamsNew } = require('../routes/getStreams')
|
||||||
|
|
||||||
@ -25,59 +23,6 @@ async function buildURL(streamURL, username, password) {
|
|||||||
return url
|
return url
|
||||||
}
|
}
|
||||||
|
|
||||||
async function singleCheck(username) {
|
|
||||||
let user = users.find(user => user.username === username)
|
|
||||||
for (let index = 0; index < streamArrays.length; index++) {
|
|
||||||
await delay(500);
|
|
||||||
const stream = streamArrays[index];
|
|
||||||
process.stdout.write('.')
|
|
||||||
// let url = stream.StreamURL + "/player_api.php?username=" + user.username + "&password=" + user.password
|
|
||||||
let url = await buildURL(stream.streamURL, user.username, user.password)
|
|
||||||
let t = await gotRequest(url)
|
|
||||||
let body = t.body
|
|
||||||
if (t.statusCode == 200 && body !== "") {
|
|
||||||
body = JSON.parse(body)
|
|
||||||
if (body.user_info.auth) {
|
|
||||||
var date = new Date(body.user_info.exp_date * 1000)
|
|
||||||
process.stdout.write('\n')
|
|
||||||
console.log('Match - ' + user.username + ' - ' + stream.StreamURL + ' - ' + stream.StreamName + ' - Expires - ' + date)
|
|
||||||
stream.username = user.username
|
|
||||||
stream.expiaryDate = date.toLocaleDateString('en-GB')
|
|
||||||
return (stream)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
process.stdout.write('\nEnd Of Streams\n\n')
|
|
||||||
}
|
|
||||||
|
|
||||||
async function main() {
|
|
||||||
for (let index = 0; index < users.length; index++) {
|
|
||||||
const user = users[index];
|
|
||||||
console.log('Trying ' + user.username)
|
|
||||||
for (let index = 0; index < streamArrays.length; index++) {
|
|
||||||
await delay(500);
|
|
||||||
const stream = streamArrays[index];
|
|
||||||
process.stdout.write('.')
|
|
||||||
let url = await buildURL(stream.streamURL, user.username, user.password)
|
|
||||||
let t = await gotRequest(url)
|
|
||||||
let body = t.body
|
|
||||||
if (t.statusCode == 200 && body !== "") {
|
|
||||||
try {
|
|
||||||
body = JSON.parse(body)
|
|
||||||
if (body.user_info.auth) {
|
|
||||||
// var date = new Date(body.user_info.exp_date * 1000).toLocaleDateString('en-GB')
|
|
||||||
process.stdout.write('\n')
|
|
||||||
console.log('Match - ' + user.username + ' - ' + stream.StreamURL + ' - ' + stream.StreamName + ' - Expires - ' + body.user_info.exp_date)
|
|
||||||
break
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
process.stdout.write('\nEnd Of Streams\n\n')
|
|
||||||
}
|
|
||||||
console.log('Finished')
|
|
||||||
}
|
|
||||||
|
|
||||||
async function newCheck() {
|
async function newCheck() {
|
||||||
streamURLS = await getStreamsNew()
|
streamURLS = await getStreamsNew()
|
||||||
@ -191,7 +136,7 @@ async function updateAccounts(userAccount, streamURLS) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
async function newUserCheck(accountData) {
|
async function userCheck(accountData) {
|
||||||
console.log(Date.now())
|
console.log(Date.now())
|
||||||
streamURLS = await getStreamsNew()
|
streamURLS = await getStreamsNew()
|
||||||
let userAccounts = await getUserAccountsCheck(accountData.userId)
|
let userAccounts = await getUserAccountsCheck(accountData.userId)
|
||||||
@ -221,7 +166,7 @@ async function newUserCheck(accountData) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
async function newSingleCheck(accountData) {
|
async function singleCheck(accountData) {
|
||||||
streamURLS = await getStreamsNew()
|
streamURLS = await getStreamsNew()
|
||||||
let userAccounts = await getUserAccountsCheck(accountData.userId)
|
let userAccounts = await getUserAccountsCheck(accountData.userId)
|
||||||
userAccounts = userAccounts.map(user => {
|
userAccounts = userAccounts.map(user => {
|
||||||
@ -253,88 +198,10 @@ async function newSingleCheck(accountData) {
|
|||||||
"userId": accountData.userId
|
"userId": accountData.userId
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
// console.log('not found')
|
|
||||||
|
|
||||||
// for (let userAccount of result) {
|
|
||||||
// if (userAccount.expiaryDate != 123 && Math.round(Date.now() / 1000) > userAccount.expiaryDate) {
|
|
||||||
// setExpired(userAccount)
|
|
||||||
// } else {
|
|
||||||
// for (let streamURL of streamURLS) {
|
|
||||||
// process.stdout.write('.')
|
|
||||||
// let url = await buildURL(streamURL, userAccount.username, userAccount.passwordDecryped)
|
|
||||||
// console.log('trying ' + url)
|
|
||||||
// let t = await gotRequest(url)
|
|
||||||
// let body = t.body
|
|
||||||
// if (t.statusCode == 200 && body !== "") {
|
|
||||||
// try {
|
|
||||||
// body = JSON.parse(body)
|
|
||||||
// if (body.user_info.auth) {
|
|
||||||
// var date = new Date(body.user_info.exp_date * 1000).toLocaleDateString(undefined, { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' })
|
|
||||||
// // process.stdout.write('\n')
|
|
||||||
// console.log(`${userAccount.username} - ${userAccount.stream} - ${streamURL} - Expires ${date}.`)
|
|
||||||
// await updateStreamData(userAccount, streamURL, body.user_info.exp_date)
|
|
||||||
// return true
|
|
||||||
// }
|
|
||||||
// } catch (error) {
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// removeAccountFromDB({
|
|
||||||
// "user": userAccount.username,
|
|
||||||
// "stream": userAccount.stream,
|
|
||||||
// "userId": accountData.userId
|
|
||||||
// })
|
|
||||||
// return false
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// async function newSingleCheck(userData) {
|
|
||||||
// streamURLS = await getStreamsNew()
|
|
||||||
// for (let streamURL of streamURLS) {
|
|
||||||
// process.stdout.write('.')
|
|
||||||
// let url = await buildURL(streamURL, userData.username, userData.password)
|
|
||||||
// // console.log(url)
|
|
||||||
// let t = await gotRequest(url)
|
|
||||||
// let body = t.body
|
|
||||||
// if (t.statusCode == 200 && body !== "") {
|
|
||||||
// try {
|
|
||||||
// body = JSON.parse(body)
|
|
||||||
// if (body.user_info.auth) {
|
|
||||||
// // var date = new Date(body.user_info.exp_date * 1000).toLocaleDateString('en-GB')
|
|
||||||
// // process.stdout.write('\n')
|
|
||||||
// await updateStreamData(userAccount, streamURL, body.user_info.exp_date)
|
|
||||||
// console.log(`Match - ${username} - ${streamURL} - Expires - ${body.user_info.exp_date}`)
|
|
||||||
// return (`Match - ${username} - ${streamURL} - Expires - ${body.user_info.exp_date}`)
|
|
||||||
// // break
|
|
||||||
// }
|
|
||||||
// } catch (error) {
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// // }
|
|
||||||
|
|
||||||
// newSingleCheck
|
|
||||||
|
|
||||||
// main()
|
|
||||||
// singleCheck('Karl2903')
|
|
||||||
// newCheck()
|
|
||||||
// newUserCheck({
|
|
||||||
// "username": 'Karl0ss1709',
|
|
||||||
// "password": 'YEfbZskEH2Zu',
|
|
||||||
// "stream": "Badger",
|
|
||||||
// "userId": 5
|
|
||||||
// })
|
|
||||||
|
|
||||||
|
|
||||||
// newUserCheck(1)
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
newCheck,
|
newCheck,
|
||||||
singleCheck,
|
newSingleCheck: singleCheck,
|
||||||
main,
|
newUserCheck: userCheck
|
||||||
newSingleCheck,
|
|
||||||
newUserCheck
|
|
||||||
}
|
}
|
@ -1,78 +0,0 @@
|
|||||||
[
|
|
||||||
{
|
|
||||||
"username": "Karl2903",
|
|
||||||
"password": "kcshkzex"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"username": "Karl2404",
|
|
||||||
"password": "pkrcbobqau"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"username": "Karl2804",
|
|
||||||
"password": "ckazebawsk"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"username": "Karl2904",
|
|
||||||
"password": "peyofdjtau"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"username": "Karl150520",
|
|
||||||
"password": "snqqfndtpn"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"username": "Karl1505",
|
|
||||||
"password": "upfjwtouwc"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"username": "Karl2802",
|
|
||||||
"password": "hgChnj8Fks"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"username": "Karl0704",
|
|
||||||
"password": "CJXENz4vxy"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"username": "Karl24",
|
|
||||||
"password": "3vpfS48hHF"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"username": "Karl2206",
|
|
||||||
"password": "913TpVzp3F"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"username": "Darren1706",
|
|
||||||
"password": "IqEoN5RjN5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"username": "Dazg3012",
|
|
||||||
"password": "tXrD5tUvZB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"username": "Martin1607",
|
|
||||||
"password": "7Fw698gY7b"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"username": "Martin2204",
|
|
||||||
"password": "jpruheknsf"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"username": "Darren1607",
|
|
||||||
"password": "x5WJtSygdA"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"username": "Karloss0403",
|
|
||||||
"password": "dcwbg21naT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"username": "Karloss0403",
|
|
||||||
"password": "4V5t4M2DS3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"username": "Karl0ss1703",
|
|
||||||
"password": "xSZYpDWHo7"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"username": "Karl0ss1703",
|
|
||||||
"password": "HTS4QUTV9V"
|
|
||||||
}
|
|
||||||
]
|
|
@ -1 +0,0 @@
|
|||||||
[{"StreamName":"Insanity","StreamURL":"https://trippy.pro:443"},{"StreamName":"PremPlus","StreamURL":"https://itty.in:443"},{"StreamName":"GunSlinger","StreamURL":"http://gunslingertv.org:8080"},{"StreamName":"VIP","StreamURL":"http://shark.brokenwarrior.xyz:8080"},{"StreamName":"Technoid","StreamURL":"http://capoisagod2021.org:8080"},{"StreamName":"Old Premium","StreamURL":"https://caporeds.online:443"},{"StreamName":"??","StreamURL":"http://screamstreams.info:8080"},{"StreamName":"Gold","StreamURL":"http://bigbox.me.uk:2086"},{"StreamName":"??","StreamURL":"http://beautifilm.xyz:8080"},{"StreamName":"??","StreamURL":"http://mytv.digital:8080/"},{"StreamName":"??","StreamURL":"http://v2servers.tk:2052"},{"StreamName":"??","StreamURL":"http://ac.mustardsubs.tk:8880"},{"StreamName":"??","StreamURL":"http://ip365.cx:80"},{"StreamName":"??","StreamURL":"http://stream.streamhubtv.xyz:8080"},{"StreamName":"Gold","StreamURL":"http://foxmedia.bounceme.net:8282"},{"StreamName":"??","StreamURL":"http://gold.mypsx.net:8880"},{"StreamName":"??","StreamURL":"http://SERVER1.cheesywotsit.gq:8090"},{"StreamName":"Foden","StreamURL":"http://kibb.link:8080"},{"StreamName":"Shark","StreamURL":"http://pimptv.dnsabr.com:25461"},{"StreamName":"Keano","StreamURL":"http://tavaratv.xyz:2095"},{"StreamName":"??","StreamURL":"http://tanmedia.watch:8880"},{"StreamName":"Python","StreamURL":"http://streamknighttv.xyz:8080"},{"StreamName":"??","StreamURL":"http://covidsucks.xyz:8080"},{"StreamName":"??","StreamURL":"http://fckbrexit.link:8080"},{"StreamName":"??","StreamURL":"http://tv.realot.xyz:35001"},{"StreamName":"??","StreamURL":"http://iptv.satplex.co.uk:8080"},{"StreamName":"??","StreamURL":"http://sting.ltd:25461"},{"StreamName":"??","StreamURL":"http://gold.mypsx.net:8880"},{"StreamName":"??","StreamURL":"http://titanmedia.tech:8080"},{"StreamName":"??"},{"StreamName":"Gambler"},{"StreamName":"??"},{"StreamName":"??"},{"StreamName":"??"}]
|
|
385
package-lock.json
generated
385
package-lock.json
generated
@ -89,19 +89,6 @@
|
|||||||
"negotiator": "0.6.2"
|
"negotiator": "0.6.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"acorn": {
|
|
||||||
"version": "2.7.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/acorn/-/acorn-2.7.0.tgz",
|
|
||||||
"integrity": "sha1-q259nYhqrKiwhbwzEreaGYQz8Oc="
|
|
||||||
},
|
|
||||||
"acorn-globals": {
|
|
||||||
"version": "1.0.9",
|
|
||||||
"resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-1.0.9.tgz",
|
|
||||||
"integrity": "sha1-VbtemGkVB7dFedBRNBMhfDgMVM8=",
|
|
||||||
"requires": {
|
|
||||||
"acorn": "^2.1.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"agent-base": {
|
"agent-base": {
|
||||||
"version": "6.0.2",
|
"version": "6.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
|
||||||
@ -131,21 +118,6 @@
|
|||||||
"uri-js": "^4.2.2"
|
"uri-js": "^4.2.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"align-text": {
|
|
||||||
"version": "0.1.4",
|
|
||||||
"resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz",
|
|
||||||
"integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=",
|
|
||||||
"requires": {
|
|
||||||
"kind-of": "^3.0.2",
|
|
||||||
"longest": "^1.0.1",
|
|
||||||
"repeat-string": "^1.5.2"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"amdefine": {
|
|
||||||
"version": "1.0.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz",
|
|
||||||
"integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU="
|
|
||||||
},
|
|
||||||
"ansi-regex": {
|
"ansi-regex": {
|
||||||
"version": "2.1.1",
|
"version": "2.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
|
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
|
||||||
@ -188,11 +160,6 @@
|
|||||||
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
|
||||||
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
|
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
|
||||||
},
|
},
|
||||||
"async": {
|
|
||||||
"version": "3.2.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/async/-/async-3.2.1.tgz",
|
|
||||||
"integrity": "sha512-XdD5lRO/87udXCMC9meWdYiR+Nq6ZjUfXidViUZGu2F1MO4T3XwZ1et0hb2++BgLfhyJwy44BGB/yx80ABx8hg=="
|
|
||||||
},
|
|
||||||
"asynckit": {
|
"asynckit": {
|
||||||
"version": "0.4.0",
|
"version": "0.4.0",
|
||||||
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
||||||
@ -337,71 +304,16 @@
|
|||||||
"responselike": "^2.0.0"
|
"responselike": "^2.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"camelcase": {
|
|
||||||
"version": "1.2.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz",
|
|
||||||
"integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk="
|
|
||||||
},
|
|
||||||
"caseless": {
|
"caseless": {
|
||||||
"version": "0.12.0",
|
"version": "0.12.0",
|
||||||
"resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
|
"resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
|
||||||
"integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw="
|
"integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw="
|
||||||
},
|
},
|
||||||
"center-align": {
|
|
||||||
"version": "0.1.3",
|
|
||||||
"resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz",
|
|
||||||
"integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=",
|
|
||||||
"requires": {
|
|
||||||
"align-text": "^0.1.3",
|
|
||||||
"lazy-cache": "^1.0.3"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"character-parser": {
|
|
||||||
"version": "1.2.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/character-parser/-/character-parser-1.2.1.tgz",
|
|
||||||
"integrity": "sha1-wN3kqxgnE7kZuXCVmhI+zBow/NY="
|
|
||||||
},
|
|
||||||
"chownr": {
|
"chownr": {
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
|
||||||
"integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ=="
|
"integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ=="
|
||||||
},
|
},
|
||||||
"clean-css": {
|
|
||||||
"version": "3.4.28",
|
|
||||||
"resolved": "https://registry.npmjs.org/clean-css/-/clean-css-3.4.28.tgz",
|
|
||||||
"integrity": "sha1-vxlF6C/ICPVWlebd6uwBQA79A/8=",
|
|
||||||
"requires": {
|
|
||||||
"commander": "2.8.x",
|
|
||||||
"source-map": "0.4.x"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"commander": {
|
|
||||||
"version": "2.8.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz",
|
|
||||||
"integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=",
|
|
||||||
"requires": {
|
|
||||||
"graceful-readlink": ">= 1.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"cliui": {
|
|
||||||
"version": "2.1.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz",
|
|
||||||
"integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=",
|
|
||||||
"requires": {
|
|
||||||
"center-align": "^0.1.1",
|
|
||||||
"right-align": "^0.1.1",
|
|
||||||
"wordwrap": "0.0.2"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"wordwrap": {
|
|
||||||
"version": "0.0.2",
|
|
||||||
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz",
|
|
||||||
"integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8="
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"clone-response": {
|
"clone-response": {
|
||||||
"version": "1.0.2",
|
"version": "1.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
|
||||||
@ -423,11 +335,6 @@
|
|||||||
"delayed-stream": "~1.0.0"
|
"delayed-stream": "~1.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"commander": {
|
|
||||||
"version": "2.6.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/commander/-/commander-2.6.0.tgz",
|
|
||||||
"integrity": "sha1-nfflL7Kgyw+4kFjugMMQQiXzfh0="
|
|
||||||
},
|
|
||||||
"concat-map": {
|
"concat-map": {
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
||||||
@ -449,14 +356,6 @@
|
|||||||
"resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
|
||||||
"integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4="
|
"integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4="
|
||||||
},
|
},
|
||||||
"constantinople": {
|
|
||||||
"version": "3.0.2",
|
|
||||||
"resolved": "https://registry.npmjs.org/constantinople/-/constantinople-3.0.2.tgz",
|
|
||||||
"integrity": "sha1-S5RdmTeQe82Y7ldRIsOBdRZUQUE=",
|
|
||||||
"requires": {
|
|
||||||
"acorn": "^2.1.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"content-disposition": {
|
"content-disposition": {
|
||||||
"version": "0.5.2",
|
"version": "0.5.2",
|
||||||
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz",
|
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz",
|
||||||
@ -467,20 +366,6 @@
|
|||||||
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
|
||||||
"integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="
|
"integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="
|
||||||
},
|
},
|
||||||
"cookie": {
|
|
||||||
"version": "0.4.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz",
|
|
||||||
"integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg=="
|
|
||||||
},
|
|
||||||
"cookie-parser": {
|
|
||||||
"version": "1.4.5",
|
|
||||||
"resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.5.tgz",
|
|
||||||
"integrity": "sha512-f13bPUj/gG/5mDr+xLmSxxDsB9DQiTIfhJS/sqjrmfAWiAN+x2O4i/XguTL9yDZ+/IFDanJ+5x7hC4CXT9Tdzw==",
|
|
||||||
"requires": {
|
|
||||||
"cookie": "0.4.0",
|
|
||||||
"cookie-signature": "1.0.6"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"cookie-signature": {
|
"cookie-signature": {
|
||||||
"version": "1.0.6",
|
"version": "1.0.6",
|
||||||
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
|
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
|
||||||
@ -491,39 +376,11 @@
|
|||||||
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
|
||||||
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
|
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
|
||||||
},
|
},
|
||||||
"cors": {
|
|
||||||
"version": "2.8.5",
|
|
||||||
"resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz",
|
|
||||||
"integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==",
|
|
||||||
"requires": {
|
|
||||||
"object-assign": "^4",
|
|
||||||
"vary": "^1"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"cryptr": {
|
"cryptr": {
|
||||||
"version": "6.0.2",
|
"version": "6.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/cryptr/-/cryptr-6.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/cryptr/-/cryptr-6.0.2.tgz",
|
||||||
"integrity": "sha512-1TRHI4bmuLIB8WgkH9eeYXzhEg1T4tonO4vVaMBKKde8Dre51J68nAgTVXTwMYXAf7+mV2gBCkm/9wksjSb2sA=="
|
"integrity": "sha512-1TRHI4bmuLIB8WgkH9eeYXzhEg1T4tonO4vVaMBKKde8Dre51J68nAgTVXTwMYXAf7+mV2gBCkm/9wksjSb2sA=="
|
||||||
},
|
},
|
||||||
"css": {
|
|
||||||
"version": "1.0.8",
|
|
||||||
"resolved": "https://registry.npmjs.org/css/-/css-1.0.8.tgz",
|
|
||||||
"integrity": "sha1-k4aBHKgrzMnuf7WnMrHioxfIo+c=",
|
|
||||||
"requires": {
|
|
||||||
"css-parse": "1.0.4",
|
|
||||||
"css-stringify": "1.0.5"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"css-parse": {
|
|
||||||
"version": "1.0.4",
|
|
||||||
"resolved": "https://registry.npmjs.org/css-parse/-/css-parse-1.0.4.tgz",
|
|
||||||
"integrity": "sha1-OLBQP7+dqfVOnB29pg4UXHcRe90="
|
|
||||||
},
|
|
||||||
"css-stringify": {
|
|
||||||
"version": "1.0.5",
|
|
||||||
"resolved": "https://registry.npmjs.org/css-stringify/-/css-stringify-1.0.5.tgz",
|
|
||||||
"integrity": "sha1-sNBClG2ylTu50pKQCmy19tASIDE="
|
|
||||||
},
|
|
||||||
"dashdash": {
|
"dashdash": {
|
||||||
"version": "1.14.1",
|
"version": "1.14.1",
|
||||||
"resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
|
"resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
|
||||||
@ -547,11 +404,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"decamelize": {
|
|
||||||
"version": "1.2.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
|
|
||||||
"integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA="
|
|
||||||
},
|
|
||||||
"decompress-response": {
|
"decompress-response": {
|
||||||
"version": "6.0.0",
|
"version": "6.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
|
||||||
@ -825,11 +677,6 @@
|
|||||||
"responselike": "^2.0.0"
|
"responselike": "^2.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"graceful-readlink": {
|
|
||||||
"version": "1.0.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz",
|
|
||||||
"integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU="
|
|
||||||
},
|
|
||||||
"har-schema": {
|
"har-schema": {
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
|
||||||
@ -938,11 +785,6 @@
|
|||||||
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
|
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
|
||||||
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="
|
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="
|
||||||
},
|
},
|
||||||
"is-buffer": {
|
|
||||||
"version": "1.1.6",
|
|
||||||
"resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
|
|
||||||
"integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="
|
|
||||||
},
|
|
||||||
"is-fullwidth-code-point": {
|
"is-fullwidth-code-point": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
|
||||||
@ -951,11 +793,6 @@
|
|||||||
"number-is-nan": "^1.0.0"
|
"number-is-nan": "^1.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"is-promise": {
|
|
||||||
"version": "2.2.2",
|
|
||||||
"resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz",
|
|
||||||
"integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ=="
|
|
||||||
},
|
|
||||||
"is-typedarray": {
|
"is-typedarray": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
|
||||||
@ -971,33 +808,6 @@
|
|||||||
"resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
|
||||||
"integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo="
|
"integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo="
|
||||||
},
|
},
|
||||||
"jade": {
|
|
||||||
"version": "1.11.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/jade/-/jade-1.11.0.tgz",
|
|
||||||
"integrity": "sha1-nIDlOMEtP7lcjZu5VZ+gzAQEBf0=",
|
|
||||||
"requires": {
|
|
||||||
"character-parser": "1.2.1",
|
|
||||||
"clean-css": "^3.1.9",
|
|
||||||
"commander": "~2.6.0",
|
|
||||||
"constantinople": "~3.0.1",
|
|
||||||
"jstransformer": "0.0.2",
|
|
||||||
"mkdirp": "~0.5.0",
|
|
||||||
"transformers": "2.1.0",
|
|
||||||
"uglify-js": "^2.4.19",
|
|
||||||
"void-elements": "~2.0.1",
|
|
||||||
"with": "~4.0.0"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"mkdirp": {
|
|
||||||
"version": "0.5.5",
|
|
||||||
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
|
|
||||||
"integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
|
|
||||||
"requires": {
|
|
||||||
"minimist": "^1.2.5"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"jsbn": {
|
"jsbn": {
|
||||||
"version": "0.1.1",
|
"version": "0.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
|
"resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
|
||||||
@ -1034,25 +844,6 @@
|
|||||||
"verror": "1.10.0"
|
"verror": "1.10.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"jstransformer": {
|
|
||||||
"version": "0.0.2",
|
|
||||||
"resolved": "https://registry.npmjs.org/jstransformer/-/jstransformer-0.0.2.tgz",
|
|
||||||
"integrity": "sha1-eq4pqQPRls+glz2IXT5HlH7Ndqs=",
|
|
||||||
"requires": {
|
|
||||||
"is-promise": "^2.0.0",
|
|
||||||
"promise": "^6.0.1"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"promise": {
|
|
||||||
"version": "6.1.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/promise/-/promise-6.1.0.tgz",
|
|
||||||
"integrity": "sha1-LOcp9rlLRcJoka0GAsXJDgTG7vY=",
|
|
||||||
"requires": {
|
|
||||||
"asap": "~1.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"keyv": {
|
"keyv": {
|
||||||
"version": "4.0.3",
|
"version": "4.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/keyv/-/keyv-4.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/keyv/-/keyv-4.0.3.tgz",
|
||||||
@ -1061,24 +852,6 @@
|
|||||||
"json-buffer": "3.0.1"
|
"json-buffer": "3.0.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"kind-of": {
|
|
||||||
"version": "3.2.2",
|
|
||||||
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
|
|
||||||
"integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
|
|
||||||
"requires": {
|
|
||||||
"is-buffer": "^1.1.5"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"lazy-cache": {
|
|
||||||
"version": "1.0.4",
|
|
||||||
"resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz",
|
|
||||||
"integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4="
|
|
||||||
},
|
|
||||||
"longest": {
|
|
||||||
"version": "1.0.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz",
|
|
||||||
"integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc="
|
|
||||||
},
|
|
||||||
"lowercase-keys": {
|
"lowercase-keys": {
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz",
|
||||||
@ -1138,11 +911,6 @@
|
|||||||
"brace-expansion": "^1.1.7"
|
"brace-expansion": "^1.1.7"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"minimist": {
|
|
||||||
"version": "1.2.5",
|
|
||||||
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
|
|
||||||
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
|
|
||||||
},
|
|
||||||
"minipass": {
|
"minipass": {
|
||||||
"version": "3.1.3",
|
"version": "3.1.3",
|
||||||
"resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz",
|
"resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz",
|
||||||
@ -1165,18 +933,6 @@
|
|||||||
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
|
||||||
"integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="
|
"integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="
|
||||||
},
|
},
|
||||||
"morgan": {
|
|
||||||
"version": "1.9.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/morgan/-/morgan-1.9.1.tgz",
|
|
||||||
"integrity": "sha512-HQStPIV4y3afTiCYVxirakhlCfGkI161c76kKFca7Fk1JusM//Qeo1ej2XaMniiNeaZklMVrh3vTtIzpzwbpmA==",
|
|
||||||
"requires": {
|
|
||||||
"basic-auth": "~2.0.0",
|
|
||||||
"debug": "2.6.9",
|
|
||||||
"depd": "~1.1.2",
|
|
||||||
"on-finished": "~2.3.0",
|
|
||||||
"on-headers": "~1.0.1"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"ms": {
|
"ms": {
|
||||||
"version": "2.1.2",
|
"version": "2.1.2",
|
||||||
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
|
||||||
@ -1255,11 +1011,6 @@
|
|||||||
"ee-first": "1.1.1"
|
"ee-first": "1.1.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"on-headers": {
|
|
||||||
"version": "1.0.2",
|
|
||||||
"resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz",
|
|
||||||
"integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA=="
|
|
||||||
},
|
|
||||||
"once": {
|
"once": {
|
||||||
"version": "1.4.0",
|
"version": "1.4.0",
|
||||||
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
||||||
@ -1268,14 +1019,6 @@
|
|||||||
"wrappy": "1"
|
"wrappy": "1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"optimist": {
|
|
||||||
"version": "0.3.7",
|
|
||||||
"resolved": "https://registry.npmjs.org/optimist/-/optimist-0.3.7.tgz",
|
|
||||||
"integrity": "sha1-yQlBrVnkJzMokjB00s8ufLxuwNk=",
|
|
||||||
"requires": {
|
|
||||||
"wordwrap": "~0.0.2"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"p-cancelable": {
|
"p-cancelable": {
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.0.0.tgz",
|
||||||
@ -1389,11 +1132,6 @@
|
|||||||
"util-deprecate": "~1.0.1"
|
"util-deprecate": "~1.0.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"repeat-string": {
|
|
||||||
"version": "1.6.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
|
|
||||||
"integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc="
|
|
||||||
},
|
|
||||||
"request": {
|
"request": {
|
||||||
"version": "2.88.2",
|
"version": "2.88.2",
|
||||||
"resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz",
|
"resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz",
|
||||||
@ -1434,14 +1172,6 @@
|
|||||||
"lowercase-keys": "^2.0.0"
|
"lowercase-keys": "^2.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"right-align": {
|
|
||||||
"version": "0.1.3",
|
|
||||||
"resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz",
|
|
||||||
"integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=",
|
|
||||||
"requires": {
|
|
||||||
"align-text": "^0.1.1"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rimraf": {
|
"rimraf": {
|
||||||
"version": "3.0.2",
|
"version": "3.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
|
||||||
@ -1521,14 +1251,6 @@
|
|||||||
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz",
|
||||||
"integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA=="
|
"integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA=="
|
||||||
},
|
},
|
||||||
"source-map": {
|
|
||||||
"version": "0.4.4",
|
|
||||||
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz",
|
|
||||||
"integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=",
|
|
||||||
"requires": {
|
|
||||||
"amdefine": ">=0.0.4"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sqlstring": {
|
"sqlstring": {
|
||||||
"version": "2.3.1",
|
"version": "2.3.1",
|
||||||
"resolved": "https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.1.tgz",
|
"resolved": "https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.1.tgz",
|
||||||
@ -1632,48 +1354,6 @@
|
|||||||
"punycode": "^2.1.1"
|
"punycode": "^2.1.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"transformers": {
|
|
||||||
"version": "2.1.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/transformers/-/transformers-2.1.0.tgz",
|
|
||||||
"integrity": "sha1-XSPLNVYd2F3Gf7hIIwm0fVPM6ac=",
|
|
||||||
"requires": {
|
|
||||||
"css": "~1.0.8",
|
|
||||||
"promise": "~2.0",
|
|
||||||
"uglify-js": "~2.2.5"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"is-promise": {
|
|
||||||
"version": "1.0.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/is-promise/-/is-promise-1.0.1.tgz",
|
|
||||||
"integrity": "sha1-MVc3YcBX4zwukaq56W2gjO++duU="
|
|
||||||
},
|
|
||||||
"promise": {
|
|
||||||
"version": "2.0.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/promise/-/promise-2.0.0.tgz",
|
|
||||||
"integrity": "sha1-RmSKqdYFr10ucMMCS/WUNtoCuA4=",
|
|
||||||
"requires": {
|
|
||||||
"is-promise": "~1"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"source-map": {
|
|
||||||
"version": "0.1.43",
|
|
||||||
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz",
|
|
||||||
"integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=",
|
|
||||||
"requires": {
|
|
||||||
"amdefine": ">=0.0.4"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"uglify-js": {
|
|
||||||
"version": "2.2.5",
|
|
||||||
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.2.5.tgz",
|
|
||||||
"integrity": "sha1-puAqcNg5eSuXgEiLe4sYTAlcmcc=",
|
|
||||||
"requires": {
|
|
||||||
"optimist": "~0.3.5",
|
|
||||||
"source-map": "~0.1.7"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"tunnel-agent": {
|
"tunnel-agent": {
|
||||||
"version": "0.6.0",
|
"version": "0.6.0",
|
||||||
"resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
|
||||||
@ -1701,29 +1381,6 @@
|
|||||||
"resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
|
"resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
|
||||||
"integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c="
|
"integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c="
|
||||||
},
|
},
|
||||||
"uglify-js": {
|
|
||||||
"version": "2.8.29",
|
|
||||||
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz",
|
|
||||||
"integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=",
|
|
||||||
"requires": {
|
|
||||||
"source-map": "~0.5.1",
|
|
||||||
"uglify-to-browserify": "~1.0.0",
|
|
||||||
"yargs": "~3.10.0"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"source-map": {
|
|
||||||
"version": "0.5.7",
|
|
||||||
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
|
|
||||||
"integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"uglify-to-browserify": {
|
|
||||||
"version": "1.0.2",
|
|
||||||
"resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz",
|
|
||||||
"integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=",
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"unpipe": {
|
"unpipe": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
|
||||||
@ -1767,11 +1424,6 @@
|
|||||||
"extsprintf": "^1.2.0"
|
"extsprintf": "^1.2.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"void-elements": {
|
|
||||||
"version": "2.0.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz",
|
|
||||||
"integrity": "sha1-wGavtYK7HLQSjWDqkjkulNXp2+w="
|
|
||||||
},
|
|
||||||
"wide-align": {
|
"wide-align": {
|
||||||
"version": "1.1.3",
|
"version": "1.1.3",
|
||||||
"resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz",
|
"resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz",
|
||||||
@ -1780,32 +1432,6 @@
|
|||||||
"string-width": "^1.0.2 || 2"
|
"string-width": "^1.0.2 || 2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"window-size": {
|
|
||||||
"version": "0.1.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz",
|
|
||||||
"integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0="
|
|
||||||
},
|
|
||||||
"with": {
|
|
||||||
"version": "4.0.3",
|
|
||||||
"resolved": "https://registry.npmjs.org/with/-/with-4.0.3.tgz",
|
|
||||||
"integrity": "sha1-7v0VTp550sjTQXtkeo8U2f7M4U4=",
|
|
||||||
"requires": {
|
|
||||||
"acorn": "^1.0.1",
|
|
||||||
"acorn-globals": "^1.0.3"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"acorn": {
|
|
||||||
"version": "1.2.2",
|
|
||||||
"resolved": "https://registry.npmjs.org/acorn/-/acorn-1.2.2.tgz",
|
|
||||||
"integrity": "sha1-yM4n3grMdtiW0rH6099YjZ6C8BQ="
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"wordwrap": {
|
|
||||||
"version": "0.0.3",
|
|
||||||
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz",
|
|
||||||
"integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc="
|
|
||||||
},
|
|
||||||
"wrappy": {
|
"wrappy": {
|
||||||
"version": "1.0.2",
|
"version": "1.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
||||||
@ -1815,17 +1441,6 @@
|
|||||||
"version": "4.0.0",
|
"version": "4.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
||||||
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
|
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
|
||||||
},
|
|
||||||
"yargs": {
|
|
||||||
"version": "3.10.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz",
|
|
||||||
"integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=",
|
|
||||||
"requires": {
|
|
||||||
"camelcase": "^1.0.2",
|
|
||||||
"cliui": "^2.1.0",
|
|
||||||
"decamelize": "^1.0.0",
|
|
||||||
"window-size": "0.1.0"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,17 +6,12 @@
|
|||||||
"start": "node ./bin/www"
|
"start": "node ./bin/www"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"async": "^3.2.1",
|
|
||||||
"bcrypt": "^5.0.0",
|
"bcrypt": "^5.0.0",
|
||||||
"cookie-parser": "^1.4.5",
|
|
||||||
"cors": "^2.8.5",
|
|
||||||
"cryptr": "^6.0.2",
|
"cryptr": "^6.0.2",
|
||||||
"express": "~4.16.1",
|
"express": "~4.16.1",
|
||||||
"express-basic-auth": "^1.2.0",
|
"express-basic-auth": "^1.2.0",
|
||||||
"got": "^11.8.1",
|
"got": "^11.8.1",
|
||||||
"http-errors": "~1.6.3",
|
"http-errors": "~1.6.3",
|
||||||
"jade": "^1.11.0",
|
|
||||||
"morgan": "~1.9.1",
|
|
||||||
"request": "^2.88.2",
|
"request": "^2.88.2",
|
||||||
"sync-mysql": "^3.0.1"
|
"sync-mysql": "^3.0.1"
|
||||||
}
|
}
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
body {
|
|
||||||
padding: 50px;
|
|
||||||
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: #00B7FF;
|
|
||||||
}
|
|
@ -3,51 +3,16 @@ var router = express.Router();
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
|
|
||||||
let DNSArray = require('../lib/DNSArray.json')
|
let DNSArray = require('../lib/DNSArray.json')
|
||||||
let streamArrays = require('../lib/streamArray.json')
|
|
||||||
const otherURLs = require('../lib/otherURLs.json')
|
const otherURLs = require('../lib/otherURLs.json')
|
||||||
|
|
||||||
const { gotRequest } = require('../lib/gotRequest')
|
const { gotRequest } = require('../lib/gotRequest')
|
||||||
|
|
||||||
function writeFile(streamArrays) {
|
|
||||||
fs.writeFileSync(__dirname + '/../lib/streamArray.json', JSON.stringify(streamArrays), function (err) {
|
|
||||||
if (err) return console.log(err);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function splitToArray(DNS) {
|
function splitToArray(DNS) {
|
||||||
DNS = DNS.split(',')
|
DNS = DNS.split(',')
|
||||||
return DNS
|
return DNS
|
||||||
}
|
}
|
||||||
|
|
||||||
function mapToStream(DNSList) {
|
|
||||||
console.log('---Updated URLS---')
|
|
||||||
DNSList.unshift(...otherDNS)
|
|
||||||
for (let index = 0; index < streamArrays.length; index++) {
|
|
||||||
let element = streamArrays[index];
|
|
||||||
element.StreamURL = DNSList[index]
|
|
||||||
console.log(element.StreamName + ' ' + element.StreamURL)
|
|
||||||
}
|
|
||||||
writeFile(streamArrays)
|
|
||||||
console.log('---Updated URLS---')
|
|
||||||
return streamArrays
|
|
||||||
}
|
|
||||||
|
|
||||||
async function getStreams() {
|
|
||||||
let requestData
|
|
||||||
let jointArray = []
|
|
||||||
for (let index = 0; index < DNSArray.length; index++) {
|
|
||||||
const url = DNSArray[index];
|
|
||||||
requestData = await gotRequest(url)
|
|
||||||
let DNSList = JSON.parse(requestData.body)
|
|
||||||
DNSList = splitToArray(DNSList.su)
|
|
||||||
DNSList.forEach(url => {
|
|
||||||
jointArray.push(url)
|
|
||||||
});
|
|
||||||
}
|
|
||||||
await mapToStream(jointArray)
|
|
||||||
return streamArrays
|
|
||||||
}
|
|
||||||
|
|
||||||
async function getStreamsNew() {
|
async function getStreamsNew() {
|
||||||
let requestData
|
let requestData
|
||||||
let jointArray = []
|
let jointArray = []
|
||||||
@ -79,5 +44,5 @@ router.get('/', async function (req, res, next) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
router, getStreams, getStreamsNew
|
router, getStreamsNew
|
||||||
}
|
}
|
||||||
|
138
streamArray.json
138
streamArray.json
@ -1,138 +0,0 @@
|
|||||||
[
|
|
||||||
{
|
|
||||||
"StreamName": "Insanity",
|
|
||||||
"StreamURL": "https://trippy.pro:443"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "PremPlus",
|
|
||||||
"StreamURL": "https://itty.in:443"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "GunSlinger",
|
|
||||||
"StreamURL": "http://gunslingertv.org:8080"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "VIP",
|
|
||||||
"StreamURL": "http://oven-cleaner.com:8080/"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "Technoid",
|
|
||||||
"StreamURL": "http://capoisagod2021.org:8080"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "Old Premium",
|
|
||||||
"StreamURL": "https://caporeds.online:443"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://screamstreams.info:8080"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "Gold",
|
|
||||||
"StreamURL": "http://catenamode.cf:8090"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://sulu.xyz:2086"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://bigbox.me.uk:2086"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://beautifilm.xyz:8080"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "https://hulks.xyz:443"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://mytv.digital:8080/"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://theonlinemedia.network:2052"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "Gold",
|
|
||||||
"StreamURL": "http://server1.jforbes.club:8090"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://ths.viewdns.net:8080"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://toastthehost.live:8080"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "Foden",
|
|
||||||
"StreamURL": "http://ac.mustardsubs.tk:8880"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "Shark",
|
|
||||||
"StreamURL": "http://faithhosting.xyz:25461"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "Keano",
|
|
||||||
"StreamURL": "http://ip365.cx:80"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://stream.streamhubtv.xyz:8080"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "Python",
|
|
||||||
"StreamURL": "http://foxmedia.bounceme.net:8282"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://g132.caporeds.online:8080/"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://theonlinemedia.network:2052"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://beautifilm.xyz:8080"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://pimptv.dnsabr.com:8080"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://tavaratv.xyz:2095"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://cms-tan.media:8880"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://streamknighttv.xyz:8080"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://covidsucks.xyz:8080"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "Gambler",
|
|
||||||
"StreamURL": "http://fckbrexit.link:8080"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://tv.realot.xyz:35001"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://www.tvxclnt.com:8080"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StreamName": "??",
|
|
||||||
"StreamURL": "http://iptv.satplex.co.uk:8080"
|
|
||||||
}
|
|
||||||
]
|
|
@ -1,6 +0,0 @@
|
|||||||
extends layout
|
|
||||||
|
|
||||||
block content
|
|
||||||
h1= message
|
|
||||||
h2= error.status
|
|
||||||
pre #{error.stack}
|
|
@ -1,5 +0,0 @@
|
|||||||
extends layout
|
|
||||||
|
|
||||||
block content
|
|
||||||
h1= title
|
|
||||||
p Welcome to #{title}
|
|
@ -1,7 +0,0 @@
|
|||||||
doctype html
|
|
||||||
html
|
|
||||||
head
|
|
||||||
title= title
|
|
||||||
link(rel='stylesheet', href='/stylesheets/style.css')
|
|
||||||
body
|
|
||||||
block content
|
|
Loading…
x
Reference in New Issue
Block a user