Multitenancy package for Masonite!
Project description
Masonite Multitenancy (WIP)
Multitenancy package for Masonite!
Multitenancy is a feature that allows you to have multiple tenants in your application. This is useful for things like a company having multiple websites, or a company having multiple apps.
Features
- Create a new tenant (with domain)
- Tenant specific configurations
- Tenant specific migrations and seeders
- Tenant middleware to specify tenant in request on the fly
Installation
pip install masonite-multitenancy
Configuration
Add MultitenancyProvider
to your project in config/providers.py
:
# config/providers.py
# ...
from multitenancy import MultitenancyProvider
# ...
PROVIDERS = [
# ...
# Third Party Providers
MultitenancyProvider,
# ...
]
Then you can publish the package resources (if needed) by doing:
python craft package:publish multitenancy
Command Usage
You'll get bunch of commands to manage tenants.
Create a new tenant
This will prompt few questions just provider answers and that's it.
python craft tenancy:create
This will also automatically generate new database connection based on your default
database connection from config/database.py
.
List all tenants
python craft tenancy:list
Delete a tenant
# delete a tenant by database name
python craft tenancy:delete --tenants=tenant1
# or
python craft tenancy:delete --tenants=tenant1,tenant2
Delete all tenants
python craft tenancy:delete
Migrate a tenant
python craft tenancy:migrate --tenants=tenant1
# or
python craft tenancy:migrate --tenants=tenant1,tenant2
Migrate all tenants
python craft tenancy:migrate
Similary you can use tenancy:migrate:refresh
, tenancy:migrate:reset
, tenancy:migrate:status
and tenancy:migrate:rollback
commands.
All commands will take --tenants
option to specify tenants if you ever need.
Seed a tenant
python craft tenancy:seed --tenants=tenant1
# or
python craft tenancy:seed --tenants=tenant1,tenant2
Seed all tenants
python craft tenancy:seed
Using Tenancy Facade
Create a new tenant
from multitenancy.facades import Tenancy
# creates a new tenant and returns instance of new Tenant
Tenancy.create(
name='tenant1',
domain='tenant1.example.com',
database='tenant1',
)
Get tenant
from multitenancy.facades import Tenancy
# by id
Tenancy.get_tenant_by_id(1)
# by domain
Tenancy.get_tenant_by_domain('tenant1.example.com')
# by database name
Tenancy.get_tenant_by_database('tenant1')
Delete tenant
from multitenancy.facades import Tenancy
tenant = Tenant.find(1)
Tenancy.delete(tenant)
Connections
from multitenancy.facades import Tenancy
# setting tenant specific connection
tenant = Tenant.find(1)
Tenancy.set_connection(tenant)
# resetting to default connection
Tenancy.reset_connection()
Event though above approach can be used to set tenant specific connection, and do tenant related tasks, it's recommended to use TenantContext
instead.
Using Tenant Context
You might sometime need to get data from different tenant in your application or you might have to do some logic based on tenant. In this case you can use TenantContext
class to get tenant data.
from multitenancy.contexts import TenantContext
from multitenancy.models.Tenant import Tenant
tenant = Tenant.where('name', '=', 'tenant1').first()
with TenantContext(tenant=tenant):
# do something with tenant1 data
# ...
You can also do all other tenant specific tasks like: migrations
, seeds
.
from multitenancy.contexts import TenantContext
from multitenancy.models.Tenant import Tenant
tenant = Tenant.where('name', '=', 'tenant1').first()
with TenantContext(tenant=tenant) as ctx:
# migrate the database
ctx.migrate()
ctx.migrate_refresh()
ctx.migrate_rollback()
ctx.migrate_reset()
ctx.migrate_status()
# seed the database
ctx.seed()
Final Step
Now the multitenancy is almost ready to use. The final step is to make use of tenancy middleware. This middleware will be used to specify tenant in request on the fly. So, basically you have to attach this middleware to all the routes that are tenant aware.
# config/routes.py
# ...
Route.get("/", "WelcomeController@show")
Route.get("/tenant-aware-routes", "WelcomeController@show").middleware("multitenancy")
In above example, /tenant-aware-routes
will be tenant aware. It means that if you have tenant setup and you are trying to access /tenant-aware-routes
then you will get tenant specific items from the database.
TODO
- Different database server for each tenant
Contributing
Please read the Contributing Documentation here.
Maintainers
License
multitenancy is open-sourced software licensed under the MIT license.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for masonite-multitenancy-0.0.5.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1056f7e81345fcc1fbb057b17eff54da6e6a8772c64c8a9906580e2a7cf80766 |
|
MD5 | bfcd1a0c7fc0c4af22dac7374e331aac |
|
BLAKE2b-256 | 4ac2ad822ba5b9f8b3b1c3bdb136001d8f8cb155ee77f7bd5fc7edd171ce35dd |
Hashes for masonite_multitenancy-0.0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a62802b9f70ce64436cfa3f29f431cbbf0d233f5d7b4c9ef8125a72a4cf50e1 |
|
MD5 | 983afaacf4f4312a7cd780ab571f2d46 |
|
BLAKE2b-256 | 851889e1b0415e66ca19742b89d1434a4b366a882d639f6fcd54e0a08df840ca |