GithubHelp home page GithubHelp logo

meteor-adapter's Introduction

@accounts/meteor-adapter

JSAccounts adapter for MeteorJS: override and extends Meteor methods and publication with JSAccounts authentication.

Installing

Start by installing and adding to your Meteor project:

meteor npm install --save @accounts/meteor-adapter

Use in Meteor client-side

To use with Meteor client-side, use your AccountsClient instance and Meteor instance, and use this package on your Meteor's client-side entry point (usually client/main.js):

import { Meteor } from 'meteor/meteor';
import AccountsClient from '@accounts/client';
import { wrapMeteorClient } from '@accounts/meteor-adapter';

AccountsClient.config({}); // Config your accounts client

wrapMeteorClient(Meteor, AccountsClient);

Now, each time you call Meteor.call or Meteor.subscribe - the JSAccounts accessToken will be appended to your request, and your server will be able to validate it.

Use in Meteor server-side

To use with Meteor client-side, use your AccountsServer instance and Meteor instance, and use this package on your Meteor's client-side entry point (usually server/main.js):

import { Meteor } from 'meteor/meteor';
import AccountsServer from '@accounts/server';
import { wrapMeteorServer } from '@accounts/meteor-adapter';

AccountsServer.config({}); // Config your accounts server

wrapMeteorServer(Meteor, AccountsServer);

Meteor.startup(() => {
    // ...
});

Now, each time you call Meteor.methods or Meteor.publish - the JSAccounts accessToken will parsed and validated, and the user and userId will be available for use inside your callback, for example:

Meteor.publish('myPulication', function() {
    const user = this.user(); // JSAccounts user, or null if there is no user at all
    const userId = this.userId(); // JSAccounts user id, or null if there is no user at all
});

Meteor.methods({
    myFunc: function() {
        const user = this.user(); // JSAccounts user, or null if there is no user at all
        const userId = this.userId(); // JSAccounts user id, or null if there is no user at all
    }
});

Note that if there method is called without an authenticated use in the client side, the user and userId will return null values - so you should check it inside your method. If the user specified a token but it's not valid - the method/pulication will fail with the JSAccounts error.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.