ticketfrei3/CONTRIBUTING.md

165 lines
5.7 KiB
Markdown
Raw Normal View History

2020-07-05 16:54:50 +00:00
# Kibicara Contribution Guidelines
## Setup Development Environment
### Backend
1. Install `python>=3.8`
2020-07-05 16:54:50 +00:00
2. Create a virtual environment with `python3 -m venv .venv`
3. Activate your dev environment with `source .venv/bin/activate`
4. Install with `pip install .`
5. Install development dependencies with `pip install tox black`
2020-07-05 21:46:55 +00:00
6. Add git-hook to run test and stylecheck before commmit with
`ln -s ../../git-hooks/pre-commit .git/hooks/pre-commit`
7. Add git-hook to check commmit message format with
`ln -s ../../git-hooks/commit-msg .git/hooks/commit-msg`
8. Turn off production mode: `sudo su -c 'echo "production = 0" >> /etc/kibicara.conf'`
2020-07-05 16:54:50 +00:00
#### Cheatsheet
- Install Kibicara with `pip install .`
- Execute Kibicara with `kibicara` (verbose: `kibicara -vvv`)
- Interact with Swagger REST-API Documentation: `http://localhost:8000/api/docs`
- Test and stylecheck with `tox`
- Fix style issues with `black -S kibicara tests`
### Frontend
1. Install node.js (e.g. via
[nvm](https://github.com/nvm-sh/nvm#installation-and-update))
2. `cd kibicara-frontend`
3. Install the dependencies with `npm i`
4. Install Angular with `npm i -g @angular/cli`
5. Turn off production mode if you have not already (see above in backend).
6. Start the backend in a different terminal
7. To serve and open the application, run `ng s -o`. The application will open
under [http://127.0.0.1:4200](http://127.0.0.1:4200).
### Creating an account
#### Without local mailserver setup
1. Start the server with `kibicara -vvv`.
2. Got to `http://localhost:8000/api/docs`. Use the `POST /api/admin/register` endpoint to create an account (minimal password size is 8).
3. Check the log output for a line that contains a link with the token:
```
<sometimestamp> kibicara.webapi.admin http://127.0.0.1:4200/confirm?token=<copythistoken>
```
4. Paste the token into the `POST /api/admin/confirm/{register_token}` endpoint at `http://localhost:8000/api/docs`.
5. Done! Try to log in with the `Authorize` button on the page or use the frontend
#### With local mailserver (e.g. openSMTPd)
1. Install the opensmtpd package and start it.
2. The mails should be usually delivered in `~/Maildir`. Use your unix username as
email address and register via frontend or manually at `http://localhost:8000/api/docs`.
2020-07-05 16:54:50 +00:00
## Branches
- **Master:** The master branch tracks the last stable release.
- Releases will be done using release tags.
- Force push and pushes without group consent are disallowed.
- There never should be a merge commit from development into master!
- **Development:** The development branch is used to add new features.
- Only rebase of feature branches is allowed.
- On Release the development branch will be rebased onto master and a release
tag will be created on master
- **Feature-Branches:**
- A feature branch will be used to develop a feature.
2020-07-05 16:54:50 +00:00
- It belongs to one developer only and force push is allowed.
- A rebase onto development is necessary to merge the feature. Code reviews
are encouraged.
## Write Tests
We use [pytest](https://docs.pytest.org/en/stable/) as a test engine. It is
2020-07-05 16:54:50 +00:00
executed by `tox`, so you need to run `tox` on the command line to run the tests.
## Commit Messages
Commits should define small components. Please write your commits with the
following pattern:
2020-07-05 16:54:50 +00:00
`[core] Add censor for filtering messages #1312`
You can use these tags:
2020-07-05 16:54:50 +00:00
- [core] Feature for Kibicara core
- [frontend] Feature for Kibicara frontend
- [$platform] Feature for platforms, e.g.
2020-07-06 20:25:17 +00:00
- [twitter]
- [telegram]
- [email]
- ...
2020-07-05 16:54:50 +00:00
- [tests] Tests
- [doc] Documentation
2020-07-05 16:54:50 +00:00
- [misc] e.g. github action files
- #\d+ if commit is related to specific issues or merge requests
Don't use tags which are not listed here. Don't start your commit message with
lower case. Commit messages which do not fulfill these guidelines will not be
merged into the `development` branch.
2020-07-05 16:54:50 +00:00
## Comments
### Python
We use pdoc3, which takes prose and comments automatically from the docstrings
in the repository.
Use [google
style](https://github.com/google/styleguide/blob/gh-pages/pyguide.md#38-comments-and-docstrings)
comments to secure correct display of your docstrings.
Please don't leave trailing whitespace or empty lines at the end of your files.
2020-07-05 16:54:50 +00:00
## Merge Requests
The main development team does not need to make merge requests.
If you open a merge request, please include a description which explains the
improvement.
### Code reviews
Before a merge request gets rebased onto and merged into `development`, at
least one person has to approve it; this also increases the number of people
who know the code. So please request a review from someone from the core
development team.
2020-07-05 16:54:50 +00:00
## Implement a new Platform/Social Network
### tl;dr
1. Implement the following modules in `platforms/<your-platform>/`:
- `bot.py`
- `model.py`
- `webapi.py`
2. Import your bot in `kibicara/webapi/__init__.py`.
### Explanation
In `kibicara/platforms/<your-platform>/bot.py`, you write the functions through
which the platform asks the social network for new messages, and publishes
messages to the social network. You need to inherit the bot from the `Censor`
2020-07-05 16:54:50 +00:00
class at `kibicara/platformapi.py`.
In `kibicara/platforms/<your-platform>/model.py`, you define a database layout.
2020-07-05 16:54:50 +00:00
You will probably need to store the following things:
* authentication credentials,
* timestamps/IDs of the last seen message,
* recipients if the social network doesn't post publicly,
2020-07-05 16:54:50 +00:00
* platform-specific settings
* anything else your platform needs
In `kibicara/platforms/<your-platform>/webapi.py`, you can define HTTP routes.
2020-07-05 16:54:50 +00:00
You will need them to:
* let admins authenticate to the social network in the kibicara web interface
* update platform-specific settings
2020-07-05 16:54:50 +00:00
To run the platform, you need to import the bot in
`kibicara/webapi/__init__.py`.