2020-11-15 21:42:02 +00:00
---
title: Expressions
---
2020-06-05 10:00:27 +00:00
2020-06-18 17:57:25 +00:00
Expressions allow you to write custom logic using Python code.
2020-06-05 10:00:27 +00:00
2020-12-05 21:08:42 +00:00
Expressions are used in different places throughout authentik, and can do different things.
2020-06-05 10:00:27 +00:00
2020-11-15 21:42:02 +00:00
:::info
These functions/objects are available wherever expressions are used. For more specific information, see [Expression Policies ](../policies/expression.md ) and [Property Mappings ](../property-mappings/expression.md )
:::
2020-06-05 10:00:27 +00:00
## Global objects
2020-12-05 21:08:42 +00:00
- `ak_logger` : structlog BoundLogger. ([ref](https://www.structlog.org/en/stable/api.html#structlog.BoundLogger))
2020-11-15 21:42:02 +00:00
- `requests` : requests Session object. ([ref](https://requests.readthedocs.io/en/master/user/advanced/))
2020-06-05 10:00:27 +00:00
## Generally available functions
### `regex_match(value: Any, regex: str) -> bool`
Check if `value` matches Regular Expression `regex` .
Example:
```python
return regex_match(request.user.username, '.*admin.*')
```
### `regex_replace(value: Any, regex: str, repl: str) -> str`
Replace anything matching `regex` within `value` with `repl` and return it.
Example:
```python
user_email_local = regex_replace(request.user.email, '(.+)@.+', '')
```
2020-12-05 21:08:42 +00:00
### `ak_is_group_member(user: User, **group_filters) -> bool`
2020-06-05 10:00:27 +00:00
Check if `user` is member of a group matching `**group_filters` .
Example:
```python
2020-12-05 21:08:42 +00:00
return ak_is_group_member(request.user, name="test_group")
2020-06-05 10:00:27 +00:00
```
2020-12-05 21:08:42 +00:00
### `ak_user_by(**filters) -> Optional[User]`
2020-06-05 10:00:27 +00:00
2020-06-18 17:57:25 +00:00
Fetch a user matching `**filters` . Returns "None" if no user was found.
2020-06-05 10:00:27 +00:00
Example:
```python
2020-12-05 21:08:42 +00:00
other_user = ak_user_by(username="other_user")
2020-06-05 10:00:27 +00:00
```
2020-07-12 14:36:49 +00:00
## Comparing IP Addresses
To compare IP Addresses or check if an IP Address is within a given subnet, you can use the functions `ip_address('192.0.2.1')` and `ip_network('192.0.2.0/24')` . With these objects you can do [arithmetic operations ](https://docs.python.org/3/library/ipaddress.html#operators ).
You can also check if an IP Address is within a subnet by writing the following:
```python
ip_address('192.0.2.1') in ip_network('192.0.2.0/24')
# evaluates to True
```