This file is intended for developers, if you want to use GitDiaryBot, go to usage page.
Telegram bot, that writes incoming messages to a text file and synchronizes using Git repository. In addition to plain text input it also understands locations, voice recordings and photos.
The bot is meant to be self-hosted. Demo bot is running in multi-user mode and can be used for trial.
I want to keep a private journal/diary. I post there what's important for me at the moment. Sometimes I reorganize the content, edit old records. I don't want to share any part of it.
GitDiaryBot has to be:
- Private - no third party should be able to the diary, or control it.
- Simple - no special software should be needed to read/write the records.
- Reliable - network/hard drive failures should not result in lost or unsaved records.
- Independent - supports self-hosted server side, private repositories.
GitDiaryBot is designed from three assumptions:
- Diary is a single plain text file, that grows by appending records.
- Git is used for synchronization and backup.
- New records come from messages to a chat bot.
While each part can be replaced, the primary goal is to have this combination working.
Dispatcher is reacting to Telegram.Bot updates by delegating to 2 classes:
- Installer
- Receiver
Receiver attempts to load tenant using effective user ID from incoming update. If tenant does not exists, Dispatcher calls Installer to run installation flow.
For successfully loaded Tenant, Dispatcher calls Receiver which extracts GitDiaryBot Events from Telegram Update Message and invokes appropriate handler.
Handlers processes Events using Core classes.
Core classes' responsibilities are:
- Save journaling records.
- Synchronize with upstream.
- Transcribe voice.
- Geocode coordinates.
- Annotate photos.
Core classes are not allowed to import anything outside core directory.
Transformers use core classes to extract plain text records from other media.
Skill combines telegram filter, extractor, event type and handler. Skillset defines capabilities available to a Tenant.