2017-01-21 05:17:35 +01:00
|
|
|
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'
|
|
|
|
});
|
|
|
|
|
2017-01-21 06:39:39 +01:00
|
|
|
app.get('connect/twitter', async (req, res): Promise<any> => {
|
2017-01-21 05:17:35 +01:00
|
|
|
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);
|
|
|
|
});
|
|
|
|
|
2017-01-21 05:24:56 +01:00
|
|
|
app.get('/tw/cb', (req, res): any => {
|
2017-01-21 05:17:35 +01:00
|
|
|
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!');
|
|
|
|
})
|
|
|
|
});
|
|
|
|
};
|