mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 03:44:29 +03:00
20 lines
497 B
JavaScript
20 lines
497 B
JavaScript
|
var passport = require('passport'),
|
||
|
Promise = require('bluebird');
|
||
|
|
||
|
module.exports.getUser = function getUser(options) {
|
||
|
options = options || {};
|
||
|
|
||
|
var token = options.token,
|
||
|
ghostOAuth2Strategy = passport._strategies.ghost;
|
||
|
|
||
|
return new Promise(function (resolve, reject) {
|
||
|
ghostOAuth2Strategy.userProfile(token, function (err, profile) {
|
||
|
if (err) {
|
||
|
return reject(err);
|
||
|
}
|
||
|
|
||
|
resolve(profile);
|
||
|
});
|
||
|
});
|
||
|
};
|