Quickstart
Initialize the Project
python -m venv ~/.virtualenvs/myproject
source ~/.virtualenvs/myproject/bin/activate
pip install freenit[dev]
freenit # you'll be prompted for the name of your project
cd myproject
bin/devel.sh
You will get just a few basic tests on initialization. You can run them with:
bin/test.sh
To write more tests, add test_<name>.py
to tests
directory.
Model
Let's say you want to add the simplest model for blog post with only title and
contents. In your project's models
directory you need to create blog.py
:
import ormar
from freenit.models.ormar.base import OrmarBaseModel, generate_optional, ormar_config
from freenit.models.user import User
class Blog(OrmarBaseModel):
ormar_config = ormar_config.copy()
id: int = ormar.Integer(primary_key=True)
title: str = ormar.String(max_length=1024)
content: str = ormar.Text()
user: User = ormar.ForeignKey(User)
BlogOptional = generate_optional(Blog)
Please note two things: BaseModel
is Freenit class not Ormar and
BlogOptional
is for PATCH method so all its fields are the same as Blog
except they are optional. The reason for this is that Ormar models are not just
for DB operations, but for validating JSON input and parsing objects into JSON.
Endpoint
In api
directory of your project add blog.py
with the following content:
from typing import List
import ormar
from fastapi import Depends, HTTPException
from freenit.decorators import description
from freenit.models.user import User
from freenit.permissions import user_perms
from freenit.router import route
from ..models.blog import Blog, BlogOptional
@route('/blogs', tags=['blog'])
class BlogListAPI():
@staticmethod
@description("Get blog list")
async def get() -> List[Blog]:
return await Blog.objects.all()
@staticmethod
async def post(blog: Blog, user: User = Depends(user_perms)) -> Blog:
blog.user = user
await blog.save()
return blog
@route('/blogs/{id}', tags=['blog'])
class BlogDetailAPI():
@staticmethod
async def get(id: int) -> Blog:
try:
blog = await Blog.objects.get(pk=id)
except ormar.exceptions.NoMatch:
raise HTTPException(status_code=404, detail="No such blog")
return blog
@staticmethod
async def patch(id: int, blog_data: BlogOptional) -> Blog:
try:
blog = await Blog.objects.get(pk=id)
await blog.patch(blog_data)
except ormar.exceptions.NoMatch:
raise HTTPException(status_code=404, detail="No such blog")
return blog
@staticmethod
async def delete(id: str) -> Blog:
try:
blog = await Blog.objects.get(pk=id)
except ormar.exceptions.NoMatch:
raise HTTPException(status_code=404, detail="No such blog")
await blog.delete()
return blog
@route
is
Freenit's decorator to make it easy to write class based endpoints. As FastAPI
itself has great support for function based endpoints, the idea was to make
it possible for developer to choose between functions and classes. With Freenit
you can write any style you want. Also note that class methods are static
(decorated with @staticmethod
) because API classes will never create an object.
Or in other words, methods are going to be called on class, not object. Order of
decorators is important and @staticmethod
has to be the top one. The
@description
is not mandatory, but highly preferable. If no @description
is
given, default is to concatenate name of the method and first tag and use them
as description.
Return value type hinting is important. It will tell Freenit what object is
returned from the method and how to convert it to JSON. Alternatively, you can
use responses
attribute in @route
like the following:
@route('/blogs', tags=['blog'], responses={'post': Blog})
class BlogListAPI():
@staticmethod
async def post(blog: Blog, user: User = Depends(user_perms)):
blog.user = user
await blog.save()
return blog
@route
. If method
also has return type hinting, responses object has priority in denoting how to
serialize object to JSON. It is the same as FastAPI's response_model
argument
and it exists for situations when type hinting is not expressive enough.
If you need to include and/or exclude fields, you can use get_pydantic()
and
exclude/include
to get what you want. For example:
BlogReturn = Blog.get_pydantic(exclude={'id'}):
@route('/blogs', tags=['blog'])
class BlogListAPI():
@staticmethod
async def post(blog: Blog, user: User = Depends(user_perms)) -> BlogReturn:
blog.user = user
await blog.save()
return blog
Blog.get_pydantic()
can be used in type hinting as well as argument
to responses
object in @route
.
DB Migration
To connect it all, you need to add the following to api/__init__.py
:
import myproject.api.blog
After that you need to create migration. To do that run the following command
from myproject
directory:
alembic revision --autogenerate -m blog
alembic/versions
and format it with
black. Next time you run bin/devel.sh
that migration will be applied.
Now you should see Blog endpoint in Swagger
Permissions
FastAPI has dependency injection which is a short way of saying that some
arguments to endpoint functions will not come from REST API. You already saw
user_perm
before, but let's say you want different permissions for an
endpoint.
from freenit.auth import permissions
my_perms = permissions()
That creates default permissions, which permits access only to the active user (the one sending the request). You can use it as dependency like so:
@route('/blogs', tags=['blog'])
class BlogListAPI():
@staticmethod
async def post(blog: Blog, user: User = Depends(my_perms)) -> Blog:
blog.user = user
await blog.save()
return blog
As a matter of fact, that's how default user_perm
is defined. The permissions
function accept two additional arguments to help you express more complex
permissions.
from freenit.auth import permissions
my_perms = permissions(['role 1', 'role 2'], ['role 3', 'role 4'])
Both arguments are lists of role names. First one is list of roles in which
user may be, second one is list of roles in which user has to be. In short if
user is assigned to at least one role from the first list and all roles in the
second list, access is granted. Default values for both are []
, which means
not to check roles at all. First argument is called roles
, second one allof
,
in case you need to set only one of them use named arguments. In the above
example the user can be in either role 1
or role 2
but has to be in both,
role 3
and role 4
.