DeviceManager.Api
Web API Framework demonstrates scalable, multitenant, architecture and allows building its own solution in the minutes. Uses: Entity Framework, UnitOfWork, Repository patterns. Wrapped in Docker, Kubernetes
Install / Use
/learn @Boriszn/DeviceManager.ApiREADME

Web API Solution demonstrates mutliteantcy architecture, using Entity Framework, UnitOfWork,Repository patterns


Project
Todo list, accomplished tasks, can be found Here.
Installation
- Clone repository
- Apply Entity Framework migration. Run:
Update-DataBase.
- (For Multitenancy testing) Change
DefaultConnectionto;Database=DeviceDb-ten2;inappsettings.json. Run EF migrationUpdate-DataBase. It will create another database. - Tenants Database configuration stored in DataBaseManager (
tenantConfigurationDictionary).
- Fill up valid database connection string configuration option in
appsettings.json. - Run UnitTests.
- (Optional) Run API integration tests
- Build / Run.
Database Connection
DatabaseType field is used to specify the database type the application should connect.
Currently, the framework contains connection information for:
- MsSql (MS SQLServer, Sql Express)
- Postgres NoSql (Information how to setup Postgres can be found here)
The value of DatabaseType should come from DatabaseType enum in Settings folder and should match the class name inside DatabaseTypes folder and implement IDatabaseType interface.
To add a new database type, just add a class implementing IDatabaseType and add the same name inside DatabaseType and change connection string in the DefaultConnection property and DatabaseType to new database type.
Localization Support
Application supports localization support though resource files. Currently, shared resource file is used to support support for English and German languages.
According to (Microsoft docs), to use a UI culture pass it as a query parameter (ui-culture=de-DE).
All the resource values for each UI culture should be added to a resource file under Resources folder. The file name should include culture code.
Text values from resource files based on the UI culture is obtained from using the instance of IStringLocalizer<SharedResource> sharedLocalizer which is injected via constructor. Then use this object to get resource values using sharedLocalizer["ResourceKey"].Value.
Check Ping action in BaseController.
Note: If only one of culture or ui-culture is sent in the query parameter then dotnetcore uses same value for the other one.
Data Seeding
To seed database with initial data update SeedData method in DataSeederclass.
There can be multiple data seeding classes. To create a new data seeding class:
- Create a new data seeding class in the same folder inheriting from IDataSeeder interface.
- Register new class in the IocContainerConfiguration class by replacing
DataSeederwith new class name.
Dapper support
Dapper is incorporated into the application. DapperUnitOfWork handles all the begin and commit transaction. The instance of Dapper Unit of work can be obtained by requesting instance of IDapperUnitOfWork.
DeviceService is using DapperUnitOfWork to fetch and create records in the database through DapperRepository. DapperRepository is a generic repository with built in methods for fetching and adding records into the database based on DapperInsert and DapperUpdate attributes defined on the Model. In the future update and delete will be implemented.
The DapperRepository builds generic insert and fetch using QueryBuilderHelper class based on the attributes defined on the model. For example Device model defines DapperInsert on few properties. Only these property names will be considered while building insert query.
The Dapper region in the DeviceController uses Dapper to fetch and create records in the database.
Docker support
App images available in Docker Hub Registry: https://hub.docker.com/r/boriszn/devicemanagerapi/ (LINUX and Windows images are available)
You can pull image:
- Linux:
docker pull boriszn/devicemanagerapi:1.0.4 - Windows
docker pull boriszn/devicemanagerapi:latest
The solution was migrated to the docker container and support docker compose orchestration.
You can run docker using following options:
- Visual Studio 2017 Debug mode. Run VS (
F5) will run docker container. - Docker CLI. Run in PS
docker run -p 8080:80 --rm -d boriszn/devicemanagerapi:latestwill run docker container in background (ordocker run -p 8080:80 boriszn/devicemanagerapi:latest)
You can access the the Web API locally via URL: http://localhost:8080
You can also Build container from solution. To do so run docker build -t boriszn/devicemanagerapi:1.0.4 . or run it in VS.
IMPORTANT. To debug solution in Visual Studio replace file Dockerfile with Dockerfile-VsDebug file (or replace content of Dockerfile from Dockerfile-VsDebug) This is temporary work around to be able to run containers in command line and in Visual Studio. It will fixed (consolidated in one docker file) in upcoming PRs
To run/build project without docker, switch from Docker to DeviceManagerApi (specified in launchSettings.json)
Authentication and Authorization using IdentityServer4
Bearer Authentication using IdentityServer4 is added to the application. The feature is enabled by default and can be turned off by removing the compiler switch UseAuthentication under Build tab in the project properties of bother DeviceManager.Api and DeviceManager.Api.UnitTests.
To use the authentication following two lines must be added to your hosts file situated under c:\Windows\System32\Drivers\etc\ folder.
127.0.0.1 devicemanager.api
127.0.0.1 devicemanager.identityserver
IMPORTANT: Reason for adding the names to the hosts file is to use IdentityServer authentication with or without docker-compose
Currently, a basic IdentityServer with pre defined Clients, Users, ApiResourses is added.
Config file defines two clients
Swagger Ui Client - Used to access the API resources using Swagger Ui
Test Client - Used to test the API end point by setting up Test Client.
TestUsers file contains two test users with predefined roles and tenants in claims.
User Roles and Tenant Authorization
The claims defined in the TestUsers file are used in the AuthenticationConfiguration file to grant access to the Api Resource.
services.AddAuthentication handles the authentication and logic inside options.AddPolicy handles the authorization part. There are 3 policies currently defined.
-
DefaultPolicy
This policy is executed when the
controlleroractioncontains[Authorize]attribute like BaseController.If the requesting user is having
adminrole or the client isTest Clientfrom unit test then access to any resources beloging to any tenant is allowed.But, if the user is neither of the above then access to only the
Tenantdefined in the TenantClaim property is allowed. -
Admin
This policy is executed when the
controlleroractionis decorated with[Authorize(PolicyConstants.Admin)]. SoGetDataaction in (AdminController)[src/DeviceManager.Api/Controllers/AdminController.cs] is accessed by users havingadminormanagerdefined in theirroleclaims. In our predfined users onlyalicecan access theGetDataresource. -
Manager
This policy is excuted when the
controlleroractionis decorated with[Authorize(PolicyConstants.Manager)]. Users withmanagerin theirroleclaims.
Kubernates (minikube cluster) setup
- Setup minikube (tested on
v0.34.1) ([This article should help](https://medium.com/containers-101/local-kubernet
Related Skills
gh-issues
341.2kFetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments. Usage: /gh-issues [owner/repo] [--label bug] [--limit 5] [--milestone v1.0] [--assignee @me] [--fork user/repo] [--watch] [--interval 5] [--reviews-only] [--cron] [--dry-run] [--model glm-5] [--notify-channel -1002381931352]
node-connect
341.2kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
oracle
341.2kBest practices for using the oracle CLI (prompt + file bundling, engines, sessions, and file attachment patterns).
tmux
341.2kRemote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.

