| assets | ||
| CSharp | ||
| Node/real-estate | ||
| React | ||
| .gitignore | ||
| README.md | ||
Authorization Server Demo
This is an early look of what the future of authentication might look like for citizens and employees in Kurdistan.
DISCLAIMER: We are NOT using best practices in many places in an effort to put something together as quickly as possible. This is only meant as a demo.
Components
IAM
We are using IdentityServer 4 to implement our Authorization Server (Identity and Access Management). You can find the source code here.
Dependencies:
- .NET Core 3.1 SDK (Because the latest version that IdentityServer4 supports is .NET Core 3.1)
How to run:
cd ./CSharp/AuthorizationServer
dotnet run
Traffic Police App
This is a react SPA that allows citizens to manage their registered vehicles. It talks to the Traffic Police API to get and update data. You can find the source code here.
Dependencies:
- Authorization Server
- Traffic Police API
- oidc-js
- NodeJS
How to run:
cd ./React/traffic-police/
npm install
npm start
Traffic Police API
This is an ASP.NET Core API that talks to a PostgreSQL database. You can find the source code here.
Dependencies:
- .NET 5 SDK
- Authorization Server
- PostgreSQL
- .NET Core EF CLI
- Microsoft.AspNetCore.Authentication.JwtBearer
How to run:
cd ./CSharp/TrafficPoliceApi
dotnet tool install --global dotnet-ef
dotnet ef database update
dotnet run
Real Estate App
This is a react SPA that allows citizens to manage their registered real estate. It talks to the Real Estate API to get and update data. You can find the source code here.
Dependencies:
- NodeJS
- oidc-js
- Real Estate API
- Authorization Server
How to run:
cd ./React/real-estate/
npm install
npm start
Real Estate API
This is an ExpressJS API that talks to a PostgreSQL database.
Dependencies:
- NodeJS
- node-jwks-rsa
- Authorization Server
- PostgreSQL
Generate database schema:
Create a database called real_estate and run this script:
CREATE TABLE public.real_estate (
id serial NOT NULL DEFAULT nextval('real_estate_id_seq'::regclass),
area float8 NOT NULL,
address varchar(256) NULL,
citizen_upn varchar(100) NULL,
CONSTRAINT real_estate_pkey PRIMARY KEY (id)
);
How to run:
cd ./Node/real-estate
npm install
node index.js
Tax App
This is a server-side app using ASP.NET Core Razor Pages. It talks to the Traffic Police API and Real Estate API to calculate taxes. You can find the source code here.
Dependencies:
- Authorization Server
- Traffic Police API
- Real Estate API
- Microsoft.AspNetCore.Authentication.OpenIdConnect
How to run:
cd ./CSharp/TaxApp
dotnet run
Notes
- The APIs assume that the PostgreSQL database instance is on localhost and the username is
postgresand password isroot. If it's different, then you have to configure the APIs here and here with the correct credentials. - We are using different tech stacks for different apps/APIs in this demo to show that an authorization server is language-agnostic and can be used by different tech stacks and in different use cases.
- Although OpenID Connect requires HTTPS, we are using HTTP everywhere because dealing with HTTPS is difficult and we don't want this kind of negativity in our lives.