All Projects → liamcurry → Passport Steam

liamcurry / Passport Steam

Licence: mit
Steam (OpenID) authentication strategy for Passport and Node.js.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Passport Steam

steam-openid-connect-provider
Steam OpenID Connect Identity Provider (IdP)
Stars: ✭ 40 (-85.71%)
Mutual labels:  steam, openid
Node Openid Client
OpenID Certified™ Relying Party (OpenID Connect/OAuth 2.0 Client) implementation for Node.js.
Stars: ✭ 887 (+216.79%)
Mutual labels:  passport, openid
Passport
Simple, unobtrusive authentication for Node.js.
Stars: ✭ 19,608 (+6902.86%)
Mutual labels:  passport, openid
SteamAuthOOP
OpenID-Login through Steam for your website
Stars: ✭ 32 (-88.57%)
Mutual labels:  steam, openid
react-redux-jwt-authentication-boilerplate
React-Redux JWT Authentication Boilerplate
Stars: ✭ 44 (-84.29%)
Mutual labels:  passport
oidc-agent
oidc-agent for managing OpenID Connect tokens on the command line
Stars: ✭ 47 (-83.21%)
Mutual labels:  openid
spid-passport
Passport authentication provider for SPID
Stars: ✭ 17 (-93.93%)
Mutual labels:  passport
http-auth
Node.js package for HTTP basic and digest access authentication.
Stars: ✭ 364 (+30%)
Mutual labels:  passport
Steamtinkerlaunch
Linux wrapper tool for use with the Steam client for custom launch options and 3rd party programs
Stars: ✭ 271 (-3.21%)
Mutual labels:  steam
Boxtron
Steam Play compatibility tool to run DOS games using native Linux DOSBox
Stars: ✭ 262 (-6.43%)
Mutual labels:  steam
nestjs-auth0
Nestjs + Auth0
Stars: ✭ 80 (-71.43%)
Mutual labels:  passport
UndocumentedAPI
💩 Undocumented Steam WebAPI Methods
Stars: ✭ 78 (-72.14%)
Mutual labels:  steam
Passport Auth0
Auth0 authentication strategy for Passport.js
Stars: ✭ 256 (-8.57%)
Mutual labels:  passport
GetFreeGames
Python script to search and find free games using Steam's API and to claim them using ASF's IPC API.
Stars: ✭ 18 (-93.57%)
Mutual labels:  steam
Go Steam
Steam's protocol in Go to allow automation of different actions on the Steam network without running an actual Steam client. Includes APIs for friends, chatting, trading, trade offers and TF2 crafting.
Stars: ✭ 264 (-5.71%)
Mutual labels:  steam
SteamCMD-AppID-List
Complete Steam AppID List
Stars: ✭ 12 (-95.71%)
Mutual labels:  steam
nest-js-boilerplate
Nest.js boilerplate
Stars: ✭ 79 (-71.79%)
Mutual labels:  passport
Vac
Source code of Valve Anti-Cheat obtained from disassembly of compiled modules
Stars: ✭ 254 (-9.29%)
Mutual labels:  steam
nestjs-auth-starter-kit
NestJS Auth Starter Kit (typescript / typeorm / swagger / passport / bcrypt)
Stars: ✭ 37 (-86.79%)
Mutual labels:  passport
tf2-rich-presence
Discord Rich Presence for Team Fortress 2
Stars: ✭ 30 (-89.29%)
Mutual labels:  steam

Passport-Steam

Passport strategy for authenticating with Steam using OpenID 2.0.

Installation

$ npm install --save passport-steam

Usage

Configure Strategy

The Steam authentication strategy authenticates users using a steam account, which is also an OpenID 2.0 identifier. The strategy requires a validate callback, which accepts this identifier and calls done providing a user. Additionally, options can be supplied to specify a return URL and realm.

passport.use(new SteamStrategy({
    returnURL: 'http://localhost:3000/auth/steam/return',
    realm: 'http://localhost:3000/',
    apiKey: 'your steam API key'
  },
  function(identifier, profile, done) {
    User.findByOpenID({ openId: identifier }, function (err, user) {
      return done(err, user);
    });
  }
));

A Steam API key can be obtained at http://steamcommunity.com/dev/apikey. However if you wish not to use an API key, you can include profile: false into the SteamStrategy object, which will disable the fetching of user data.

Authenticate Requests

Use passport.authenticate(), specifying the 'steam' strategy, to authenticate requests.

For example, as route middleware in an Express application:

app.get('/auth/steam',
  passport.authenticate('steam'),
  function(req, res) {
    // The request will be redirected to Steam for authentication, so
    // this function will not be called.
  });

app.get('/auth/steam/return',
  passport.authenticate('steam', { failureRedirect: '/login' }),
  function(req, res) {
    // Successful authentication, redirect home.
    res.redirect('/');
  });

Examples

Basic example using Express

For a complete, working example, refer to the signon example or follow the steps below. Do not forget to add your API key.

To run the example, you can perform the following from the command line:

  1. Clone the repository

    git clone https://github.com/liamcurry/passport-steam.git

  2. Go into the repository

    cd passport-steam

  3. Download the required dependencies

    npm install

  4. Edit examples/signon/app.js with your favorite text editor

  5. Update the localhost parameter and add your API key in this block within examples/signon/app.js

    returnURL: 'http://localhost:3000/auth/steam/return',
        realm: 'http://localhost:3000/',
        apiKey: 'Your API key here'
    
  6. Save your changes to examples/signon/app.js

  7. Start the example

    npm run example
    
  8. Go to the address you put in realm in your browser.

Basic example using Express with Router

For a complete, working example, refer to the signon example or follow the steps below. Do not forget to add your API key.

To run the example, you can perform the following from the command line:

  1. Clone the repository

    git clone https://github.com/liamcurry/passport-steam.git

  2. Go into the repository

    cd passport-steam

  3. Download the required dependencies

    npm install

  4. Edit examples/signon/app-router.js with your favorite text editor

  5. Update the localhost parameter and add your API key in this block within examples/signon/app-router.js

    returnURL: 'http://localhost:3000/auth/steam/return',
        realm: 'http://localhost:3000/',
        apiKey: 'Your API key here'
    
  6. Save your changes to examples/signon/app-router.js

  7. Start the example

    npm run example-router
    
  8. Go to the address you put in realm in your browser.

Tests

If you would like to contribute, please provide accompanying tests with AVA

$ npm install -g ava
$ ava

Build Status

Contributors

License

(The MIT License)

Copyright (c) 2011 Jared Hanson

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].