mirror of
https://github.com/neongamerbot-qk/hackclub-nest
synced 2024-11-14 21:19:36 +00:00
update: .env stuff
Signed-off-by: Saahil <neon@saahild.com>
This commit is contained in:
parent
0c2543e157
commit
5371bb5730
2 changed files with 38 additions and 27 deletions
6
hackclub-spotify-bot/src/.env.example
Normal file
6
hackclub-spotify-bot/src/.env.example
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
SLACK_CLIENT_ID=
|
||||||
|
SLACK_CLIENT_SECRET=
|
||||||
|
SLACK_TOKEN=
|
||||||
|
SPOTIFY_CLIENT_ID=
|
||||||
|
SPOTIFY_CLIENT_SECRET=
|
||||||
|
SPOTIFY_REDIRECT_URI=
|
|
@ -1,40 +1,45 @@
|
||||||
require('dotenv').config();
|
const path = require("path");
|
||||||
const express = require('express');
|
require("dotenv").config({ path: path.join(__dirname, ".env") });
|
||||||
const session = require('express-session');
|
console.debug(process.env);
|
||||||
const { WebClient } = require('@slack/web-api');
|
const express = require("express");
|
||||||
const { Client } = require('@slack/oauth');
|
const session = require("express-session");
|
||||||
const { getLoginUrl, refreshToken } = require('./spotify');
|
const { WebClient } = require("@slack/web-api");
|
||||||
const path = require('path');
|
const { InstallProvider } = require("@slack/oauth");
|
||||||
|
const { getLoginUrl, refreshToken } = require("./spotify");
|
||||||
|
|
||||||
const app = express();
|
const app = express();
|
||||||
// Initialize
|
// Initialize
|
||||||
const web = new WebClient(process.env.SLACK_TOKEN);
|
const web = new WebClient(process.env.SLACK_TOKEN);
|
||||||
const oauth = new Client({
|
const oauth = new InstallProvider({
|
||||||
clientId: process.env.SLACK_CLIENT_ID,
|
clientId: process.env.SLACK_CLIENT_ID,
|
||||||
clientSecret: process.env.SLACK_CLIENT_SECRET,
|
clientSecret: process.env.SLACK_CLIENT_SECRET,
|
||||||
state: Math.random().toString(36).substring(2),
|
stateSecret: Math.random().toString(36).substring(2),
|
||||||
});
|
});
|
||||||
app.use(express.json());
|
app.use(express.json());
|
||||||
app.use(express.static(path.join(__dirname, 'public')));
|
app.use(express.static(path.join(__dirname, "public")));
|
||||||
app.set('view engine', 'ejs');
|
app.set("view engine", "ejs");
|
||||||
app.set('views', 'src/views');
|
app.set("views", "src/views");
|
||||||
app.use(express.urlencoded({ extended: true }));
|
app.use(express.urlencoded({ extended: true }));
|
||||||
app.use(session({
|
app.use(
|
||||||
secret: Math.random().toString(36).substring(2),
|
session({
|
||||||
resave: false,
|
secret: Math.random().toString(36).substring(2),
|
||||||
saveUninitialized: true,
|
resave: false,
|
||||||
cookie: { secure: true }
|
saveUninitialized: true,
|
||||||
}));
|
cookie: { secure: true },
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
app.get('/', (req, res) => {
|
app.get("/", (req, res) => {
|
||||||
res.render('index', { title: 'Hack Club Spotify Bot', description: "Contribute to the hackclub spotify playlist!" });
|
res.render("index", {
|
||||||
|
title: "Hack Club Spotify Bot",
|
||||||
|
description: "Contribute to the hackclub spotify playlist!",
|
||||||
|
});
|
||||||
|
});
|
||||||
|
app.get("/login", async (req, res) => {
|
||||||
|
if (req.session.token) {
|
||||||
|
}
|
||||||
});
|
});
|
||||||
app.get('/login', async (req, res) => {
|
|
||||||
if(req.session.token) {
|
|
||||||
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
app.listen(process.env.PORT || 3000, () => {
|
app.listen(process.env.PORT || 3000, () => {
|
||||||
console.log('Example app listening on port 3000!');
|
console.log("Example app listening on port 3000!");
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue