Git Product home page Git Product logo

restapistack's Introduction

NodeJS REST API stack using BearerJS and PostgreSQL database

Thanks to Brian Carlson for help with connection to PostgreSQL

First you will need a database. Scripts below will create your tables and first user/Administrator.

  • Roles table
CREATE TABLE roles
(
  rolename character varying NOT NULL,
  CONSTRAINT pk_rolename PRIMARY KEY (rolename)
)
WITH (
  OIDS=FALSE
);
ALTER TABLE roles
  OWNER TO postgres;
  • Users table
CREATE TABLE users
(
  username character varying NOT NULL,
  password character varying,
  fullname character varying,
  email character varying,
  enabled boolean DEFAULT true,
  CONSTRAINT pk_username PRIMARY KEY (username)
)
WITH (
  OIDS=FALSE
);
ALTER TABLE users
  OWNER TO postgres;
  • User roles table
CREATE TABLE userroles
(
  username character varying NOT NULL,
  rolename character varying NOT NULL,
  CONSTRAINT pk_userroles PRIMARY KEY (username, rolename),
  CONSTRAINT userroles_username_fkey FOREIGN KEY (username)
      REFERENCES users (username) MATCH SIMPLE
      ON UPDATE NO ACTION ON DELETE NO ACTION
)
WITH (
  OIDS=FALSE
);
ALTER TABLE userroles
  OWNER TO postgres;
  • Create roles
INSERT INTO roles(rolename) VALUES ('Administrator');
INSERT INTO roles(rolename) VALUES ('User');
  • Create first user
INSERT INTO users(
            username, password, fullname, email, enabled)
    VALUES ('Administrator', 'will be changed', 'Administrator', '[email protected]', true);
  • Add user to Administrators role
INSERT INTO userroles(
            username, rolename)
    VALUES ('Administrator', 'Administrator');
  • You need to configure connection string for your postgreSQL database.
helper.js
connString:"postgres://username:password@server/database",
  • You need to set Administrators password now. To do that you need to call /account/setpassword action. If your DB connection is ok your Administrator will be enabled
POST http://your_url/account/setpassword
username=Administrator
password=your_new_pass

You got all default user management actions in this app. You can check them in routes/account.js

        {url:'/account/getroles', method:'get', roles:["Administrator"]},
        {url:'/account/setpassword', method:'post', roles:["Administrator"]},
        {url:'/account/changepassword', method:'post'},
        {url:'/account/getusers', method:'get', roles:["Administrator"]},
        {url:'/account/getuser', method:'get', roles:["Administrator"]},
        {url:'/account/getuserroles', method:'get', roles:["Administrator"]},
        {url:'/account/adduserrole', method:'post', roles:["Administrator"]},
        {url:'/account/removeuserrole', method:'post', roles:["Administrator"]},
        {url:'/account/changeuser', method:'post'},

restapistack's People

Contributors

dselmanovic avatar

Watchers

Alem avatar  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.