| CSharp/OidcSamples | ||
| 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: This is by no means a production-grade system. This was done in a short time and is only meant for demoing the Authorization Server. We are NOT using best practices everywhere in an effort to put something together as soon as possible.
Components
IdentityServer 4
We are using IdentityServer 4 to implement our Authorization Server. You can find the source code here.
Dependencies:
How to run:
cd ./CSharp/OidcSamples/OidcSamples.AuthorizationServer
dotnet run
Traffic Police React 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.
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.
Dependencies:
- .NET 5 SDK
- Authorization Server
- PostgreSQL
- .NET Core EF CLI
How to run:
cd ./CSharp/OidcSamples/OidcSamples.TrafficPoliceApi
dotnet tool install --global dotnet-ef
dotnet ef database update
dotnet run
Real Estate React 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.
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
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 with the correct credentials.