Giter Site home page Giter Site logo

cloudxtreme / meteor-accounts-sandstorm Goto Github PK

View Code? Open in Web Editor NEW

This project forked from sandstorm-io/meteor-accounts-sandstorm

0.0 1.0 0.0 48 KB

Sandstorm.io login integration for Meteor applications.

License: Other

CSS 0.15% HTML 1.41% JavaScript 88.17% Cap'n Proto 10.27%

meteor-accounts-sandstorm's Introduction

Sandstorm.io login integration for Meteor.js

Sandstorm is a platform for personal clouds that makes installing apps to your personal server as easy as installing apps to your phone.

Meteor is a revolutionary web app framework. Sandstorm's own UI is built using Meteor, and Meteor is also a great way to build Sandstorm apps.

This package is meant to be used by Meteor apps built to run on Sandstorm. It integrates with Sandstorm's built-in login system to log the user in automatically when they open the app. The user's profile.name will be populated from Sandstorm. When using this package, you should not use accounts-ui at all; just let login happen automatically.

Including in your app

To use this package in your Meteor project, simply install it from the Meteor package repository:

meteor add kenton:accounts-sandstorm

To package a Meteor app for Sandstorm, see the Meteor app packaging guide.

Note that this package does nothing if the SANDSTORM environment variable is not set. Therefore, it is safe to include the package even in non-Sandstorm builds of your app. Note that sandstorm-pkgdef.capnp files generated by spk init automatically have a line like (key = "SANDSTORM", value = "1"), which sets the environment variable, so you shouldn't have to do anything special to enable it.

Conversely, when SANDSTORM is set, this package will enter Highlander Mode in which it will disable all other accounts packages. This makes it safe to include those other accounts packages in the Sandstorm build, which is often convenient, although they will add bloat to your spk.

Usage

  • On the client, call Meteor.sandstormUser(). (This is a reactive data source.)
  • In a method or publish (on the server), call this.connection.sandstormUser().

Either of these will return an object containing the following fields:

  • id: From X-Sandstorm-User-Id; globally unique and stable identifier for this user. null if the user is not logged in.
  • name: From "X-Sandstorm-Username, the user's display name (e.g. "Kenton Varda"`).
  • picture: From X-Sandstorm-User-Picture, URL of the user's preferred avatar, or null if they don't have one.
  • permissions: From X-Sandstorm-Permissions (but parsed to a list), the list of permissions the user has as determined by the Sandstorm sharing model. Apps can define their own permissions.
  • preferredHandle: From X-Sandstorm-Preferred-Handle, the user's preferred handle ("username", in the unix sense). This is NOT guaranteed to be unique; it's just a different form of display name.
  • pronouns: From X-Sandstorm-User-Pronouns, indicates the pronouns by which the user prefers to be referred.

See the Sandstorm docs for more information about these fields.

Note that sandstormUser() may return null on the client side if the login handshake has not completed yet (Meteor.loggingIn() returns true during this time). It never returns null on the server, but it may throw an exception if the client skipped the authentication handshake (which indicates the client is not running accounts-sandstorm, which is rather suspicious!).

Synchronization with Meteor Accounts

accounts-sandstorm does NOT require accounts-base. However, if you do include accounts-base in your dependencies, then accounts-sandstorm will integrate with it in order to store information about users seen previously. In particular:

  • A Meteor account will be automatically created for each logged-in Sandstorm user, the first time they visit the grain.
  • In the Meteor.users table, services.sandstorm will contain the same data returned by Meteor.sandstormUser().
  • Meteor.loggingIn() will return true during the initial handshake (when sandstormUser() would return null).

Please note, however, that you should prefer sandstormUser() over Meteor.user().services.sandstorm whenever possible, especially for enforcing permissions, for a few reasons:

  • Anonymous users do NOT get a table entry, therefore Meteor.user() will be null for them. However, anonymous users of a sharing link may have permissions!
  • Moreover, in the future, anonymous users may additionally be able to assign themselves names, handles, avatars, etc. The only thing that makes them "anonymous" is that they have not provided the app with a unique identifier that could be used to recognize the same user when they visit again later.
  • services.sandstorm is only updated when the user is online; it may be stale when they are not present. This implies that when a user's access is revoked, their user table entry will never be updated again, and will continue to indicate that they have permissions when they in fact no longer do.

Development aids

accounts-sandstorm normally works its magic when running inside Sandstorm. However, it's often a lot more convenient to develop Meteor apps using Meteor's normal dev tools which currently cannot run inside Sandstorm.

Therefore, when not running inside Sansdtorm, you may use the following console function to fake your user information:

SandstormAccounts.setTestUserInfo({
  id: "12345",
  name: "Alice",
  // ... other parameters, as listed above ...
});

This will cause accounts-sandstorm to spoof the X-Sandstorm-* headers with the parameters you provided when it attempts to log in. When actually running inside Sandstorm, such spoofing is blocked by Sandstorm, but when running outside it will work and now you can test your app.

Note that this functionality, like all of the package, is only enabled if you set the SANDSTORM environment variable. So, run meteor like so:

SANDSTORM=1 meteor

Migrating from 0.1

In version 0.1.x of this puackage, there was no sandstormUser() function; the only mode of operation was through Meteor accounts. This had problems with permissions and anonymous users as described adove. Introducing sandstormUser() is a huge update.

For almost all users, 0.2 should be a drop-in replacement for 0.1, only adding new features. Please note, though, two possible issues:

  • If you did not explicitly depend on accounts-base before, you must add this dependency, since it is no longer implied by accounts-sansdtorm.
  • The /.sandstorm-credentials endpoint no longer exists. If you were directly fetching this undocumented endpoint before, you will need to switch your code to use Meteor.sandstormUser().

meteor-accounts-sandstorm's People

Contributors

kentonv avatar jparyani avatar mitar avatar mquandalle avatar ndarilek avatar

Watchers

Kevin Hatfield avatar

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.