Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7434419
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T09:50:08+00:00 2026-05-29T09:50:08+00:00

I did read manuals about access to current user via everyauth. It’s say, that

  • 0

I did read manuals about access to current user via everyauth. It’s say, that I can read current user info from: req.user on my server, everyauth.user and user on my views, but they are undefined. But if I’m try get access from, for example, everyauth.twitter or everyauth.facebook, I’m get user info from this social networks.

I’m want, when get user from database (find or create by social data) it’s must save in session variable, like currentUser, and i can get it in helpers and in other databare requests.

My app.js code:

var express     = require('express')
  , everyauth   = require('everyauth')
  , Promise     = everyauth.Promise
  , util        = require('util')
  , mongoose    = require('mongoose')
  , routes      = require('./routes')
  , _           = require('underscore')

mongoose.connect('mongodb://127.0.0.1/base');
var Schema = mongoose.Schema
  , ObjectId = Schema.ObjectId;

// Everyauth settings above that app.configure

everyauth.twitter
  .consumerKey('secretKey')
  .consumerSecret('secret')
  .findOrCreateUser(function (session, accessToken, accessTokenSecret, twitterUserData){
      var promise = this.Promise();
      User.findOrCreateByUidAndNetwork(twitterUserData.id, 'twitter', twitterUserData, promise);
      return promise;
  })
  .redirectPath('/')
everyauth.facebook
    .appId("secretId")
    .appSecret("secret")
    .findOrCreateUser( function (session, accessToken, accessTokenExtra, fbUserMetadata) {
      var promise = this.Promise();
      User.findOrCreateByUidAndNetwork(fbUserMetadata.id, 'facebook', fbUserMetadata, promise);
      return promise;
    })
    .redirectPath('/');

var app = module.exports = express.createServer();

// Configuration

app.configure(function(){
  app.set('views', __dirname + '/views');
  app.set('view engine', 'jade');
  app.use(express.bodyParser());
  app.use(express.cookieParser());
  app.use(express.session({secret:'blablabla'}));
  app.use(everyauth.middleware()); // Yes, i'm use it
  app.use(express.methodOverride());
  app.use(app.router); // And it
  app.use(express['static'](__dirname + '/public'));
});

everyauth.helpExpress(app); // And this above that routes

app.dynamicHelpers({
    currentUser: function (req, res){
        return req.user; //it's empty!
    }
})

app.configure('development', function(){
  app.use(express.errorHandler({ dumpExceptions: true, showStack: true })); 
});

app.configure('production', function(){
  app.use(express.errorHandler()); 
});

// Routes

app.get('/', routes.index);
require("./controllers/user");

app.listen(80);

And user Scheme:

var Schema = mongoose.Schema
  , ObjectId = Schema.ObjectId;

var UserSchema = new Schema({
    "uid":{type:String},    
    "name":{type:String},   
    "network":{type:String},
    "profile":{}        
});


mongoose.model('User', UserSchema);

var User = mongoose.model('User');

And user find or create function:

this.findOrCreateByUidAndNetwork = function(uid, network, profile, promise) {
    User.find({uid: uid, network: network}, function(err, users) {
        if(err) throw err;
        if(users.length > 0) {
            promise.fulfill(users[0]);// <-- what i want:)
        } else {
            var user = new User();
            user.network = network;
            user.uid = uid;
            user.profile = profile;
            user.name = profile.first_name || profile.name;
            user.save(function(err) {
                if (err) throw err;
                promise.fulfill(user);
            });
        }
    });
};

Thanks, for watching my question. Best regards, Asci

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T09:50:10+00:00Added an answer on May 29, 2026 at 9:50 am

    Possibly a little late, but for anyone who needs an answer to this –

    On Everyauth’s Github page it specifies that “To access the user, configure everyauth.everymodule.findUserById”. So for example (again quoting bnoguchi) –

    everyauth.everymodule
        .findUserById( function (id, callback) {
            yourApi.fetchUserById(id, function (err, user) {
            if (err) return callback(err);
            callback(null, user);
         });
         // or more succinctly, if your api sends a user to the callback with function signature function (err, user):
         // yourApi.fetchUserById(id, callback);
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Before someone said that I did not read I may say that I read
Did anyone try to read programmatically an Alibre Design CAD file? I see that
I've read the several discussions about storing code snippets but I did't find the
[I've read the Lua manual, but it did not provide solid answers.] Let's say
I'm sorry if this is a 'read the manual' question (I did but can't
So i did read a lot about Azure yesterday as i'm considering my plans
Well, I DID READ ALMOST ALL THE QUESTIONS HERE ABOUT THIS TOPIC! I need
Hii , I am a novice in C++. I did read about inline functions
First of all, I'd like to point out that I did read through the
Yes, I did read the 'Related Questions' in the box above after I typed

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.