Swiftpack.co - Mikroservices/Users as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by Mikroservices.
Mikroservices/Users 1.0.0
:couple: Microservice for management users.
⭐️ 5
🕓 2 years ago
macOS
.package(url: "https://github.com/Mikroservices/Users.git", from: "1.0.0")

:couple: Mikroservices - Users

Build Status Swift 5.2 Vapor 4 Swift Package Manager Platforms OS X | Linux

Microservice which provides common features for managing users (only RESTful API). Application is written in Swift and Vapor 4 and operates on PostgreSQL or SQLite databases. All functionalities are constantly verified by unit tests.

Main features

Main features which has been implemented:

  • registering new user
  • sign-in user (JWT access token & refresh token)
  • forgot password
  • change password
  • update user data
  • user roles

Class diagram

model

API

Service provides simple RESTful API. Below there is a description of each endpoint.

Creating new user:

User account management:

OpenID Connect support:

Forgot password actions:

User data management:

Role management:

Connect user to role:

Auhentication clients:

Getting started

First you need to have Swift installed on your computer. Next you should run following commands:

$ git clone https://github.com/Mikroservices/Users.git
$ cd Users
$ swift package update
$ swift build

Now you can run the application:

$ .build/debug/Run serve --port 8000

If application starts open following link in your browser: http://localhost:8000. You should see blank page with text: Service is up and running!. Now you can use API which is described above.

Database

If you want to use persistent database you have to set application setting in configuration file or in environment variable with connection string to the database.

Connection string for PostgreSQL:

Variable name:              users.connectionString
Value (connection string):  postgresql://user:password@host:5432/database?sslmode=require

Connection string for SQLite:

Variable name:              users.connectionString
Value (connection string):  users.db

You can set up this variable as:

  1. setting in appsettings.json (or in appsettings.local.json if you don't want to commit file)
  2. environment variable in your system
  3. environment variable in XCode

Configuration

The application uses predefined settings. All settings are stored in the database in the Setting table. We can find there following settings:

  • isRecaptchaEnabled - information about enable/disable Google Recaptcha, it's highly recommended to enable this feature. Recaptcha is validated during user registration process.
  • recaptchaKey - secret key for Google Recaptcha.
  • jwtPrivateKey - RSA512 key for generating JWT tokens (signing in). Private key should be entered only in that service. Other services should use only public key.
  • emailServiceAddress - address to service responsible for sending emails (confirmation email, forgot your password features).
  • corsOrigin - CORS origin address. Example value: http://origina.com/, http://originb.com/ (if empty all origins are accepted).
  • eventsToStore - list of events which should be stored in events table. Possible values are (separated by comma):
    • accountLogin - logins to the system,
    • accountRefresh - refreshing access tokens,
    • accountChangePassword - changing password,
    • accountRevoke - revoking access tokens,
    • forgotToken - forgot password,
    • forgotConfirm - confirming changing password,
    • registerNewUser - registering new user,
    • registerConfirm - confirm new user registrations,
    • registerUserName - user name verifying,
    • registerEmail - email veryifying,
    • rolesCreate - role creating,
    • rolesList - list of roles,
    • rolesRead - role details,
    • rolesUpdate - role updating,
    • rolesDelete - role deleting,
    • userRolesConnect - connecting user to role,
    • userRolesDisconnect - disconnecting role from user,
    • usersRead - user details,
    • usersUpdate - user updating,
    • usersDelete - user deleting.

In production environment you MUST change especially jwtPrivateKey.

Email support

During registration process and forgot password process service will try send emails to the user. That's why correct address to email service must be defined. For that purposes you can use for example: SendGridEmails service.

OpenId Connect

Service has built in support for OpenId Connect authentication flow. You can define providers in the AuthClients table. You need to specify:

  • type - type of supported provider. Possible values: apple, google and microsoft
  • name - name of provider (can be used on presentation layer)
  • uri - URI which will be added to the callback/redirect URLs
  • tenantId - Id of tenant (directory) from Azure portal (applies only for Microsoft provider)
  • clientId - client Id generated by OpenId Connect providers
  • clientSecret - secret token generated by OpenId Connect providers
  • callbackUrl - callback URL which will be open after successfull authentication (URL of presentation layer) to that URL authToken will be added

OpenId Connect flow of authentication:

OpenId Connect

From Web application (client) perspective there are two important things:

  1. Web application have to redirect to authentication URL e.g. /identity/authenticate/google
  2. After successfull authentication Web application should be opened with authenticateToken variable in query string. That variable can be exchanged for accessToken via /identity/login endpoint (authenticateToken is valid 60 seconds).

If user is signing in for a first time a new account will be created.

Deployment

You can deploy application as service in the Kubernates cluster or as a single service in Linux.

Users service in Linux

You must modify and copy file users.service to your Linux server (folder /lib/systemd/system). Then you can start service using below command:

$ systemctl start users.service

If you want start service at system boot you must run following command:

$ systemctl enable users.service

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics