FORGEBOX Enterprise 🚀 - Take your ColdFusion (CFML) Development to Modern Times! Learn More...

Coldbox Module to allow Social Login via Github

v1.0.5 Modules

Coldbox Module to allow Social Login via Github

Setup & Installation

Add the following structure to Coldbox.cfc

github = {
    oauth = {
        loginSuccess        = "login.success",
        loginFailure        = "login.failure",
        clientID            = "{{github_provided_clientID}}",
        clientSecret        = "{{github_provided_clientSecret}}",
        redirectURL         = "{{where_the_user_will_land_after_redirect}}",
        scope               = "user,user:email"
    }
}

Interception Point

If you want to capture any data from a successful login, use the interception point twitterLoginSuccess. Inside the interceptData structure will contain all the provided data from twitter for the specific user.

An example interception could look like this

component {
    function githubLoginSuccess(event,interceptData){
        var queryService = new query(sql="SELECT roles,email,password FROM user WHERE githubUserID = :id;");
            queryService.addParam(name="id",value=interceptData['id']);
        var lookup = queryService.execute().getResult();
        if( lookup.recordCount ){
            login {
                loginuser name=lookup.email password=lookup.password roles=lookup.roles;
            };
        }else{
            // create new user
        }
    }
}
v1.0.5 - structure upgrades b/c of changes to layout
v1.0.0 - initial release

$ box install nsg-module-github

No collaborators yet.
 
  • {{ getFullDate("2015-02-19T08:43:05Z") }}
  • {{ getFullDate("2016-06-09T01:17:52Z") }}
  • 2,468
  • 2,193