[Server] ✌️
This commit is contained in:
@@ -28,9 +28,6 @@ app.use(compression());
|
||||
*/
|
||||
app.use((req, res, next) => {
|
||||
res.header('X-Frame-Options', 'DENY');
|
||||
|
||||
res.locals.user = ((req.headers['cookie'] || '').match(/i=(!\w+)/) || [null, null])[1];
|
||||
|
||||
next();
|
||||
});
|
||||
|
||||
@@ -51,8 +48,6 @@ app.get(/\/api:meta/, require('./meta'));
|
||||
app.get(/\/api:url/, require('./service/url-preview'));
|
||||
app.post(/\/api:rss/, require('./service/rss-proxy'));
|
||||
|
||||
require('./service/twitter')(app);
|
||||
|
||||
/**
|
||||
* Subdomain
|
||||
*/
|
||||
|
@@ -1,32 +0,0 @@
|
||||
import * as express from 'express';
|
||||
//import * as Twitter from 'twitter';
|
||||
//const Twitter = require('twitter');
|
||||
import autwh from 'autwh';
|
||||
import redis from '../../db/redis';
|
||||
import config from '../../conf';
|
||||
|
||||
module.exports = (app: express.Application) => {
|
||||
if (config.twitter == null) return;
|
||||
|
||||
const twAuth = autwh({
|
||||
consumerKey: config.twitter.consumer_key,
|
||||
consumerSecret: config.twitter.consumer_secret,
|
||||
callbackUrl: config.url + '/tw/cb'
|
||||
});
|
||||
|
||||
app.get(/\/connect:twitter/, async (req, res): Promise<any> => {
|
||||
if (res.locals.user == null) return res.send('plz signin');
|
||||
const ctx = await twAuth.begin();
|
||||
redis.set(res.locals.user, JSON.stringify(ctx));
|
||||
res.redirect(ctx.url);
|
||||
});
|
||||
|
||||
app.get('/tw/cb', (req, res): any => {
|
||||
if (res.locals.user == null) return res.send('plz signin');
|
||||
redis.get(res.locals.user, async (_, ctx) => {
|
||||
const tokens = await twAuth.done(JSON.parse(ctx), req.query.oauth_verifier);
|
||||
console.log(tokens);
|
||||
res.send('Authorized!');
|
||||
})
|
||||
});
|
||||
};
|
Reference in New Issue
Block a user