267 lines
5.2 KiB
Markdown
267 lines
5.2 KiB
Markdown
# Mitra
|
|
|
|
Federated micro-blogging platform and content subscription service.
|
|
|
|
Built on [ActivityPub](https://www.w3.org/TR/activitypub/) protocol, self-hosted, lightweight. Part of the [Fediverse](https://en.wikipedia.org/wiki/Fediverse).
|
|
|
|
Subscriptions provide a way to receive monthly payments from subscribers and to publish private content made exclusively for them.
|
|
|
|
Supported payment methods:
|
|
|
|
- [Monero](https://www.getmonero.org/get-started/what-is-monero/).
|
|
- [ERC-20](https://ethereum.org/en/developers/docs/standards/tokens/erc-20/) tokens (on Ethereum and other EVM-compatible blockchains).
|
|
|
|
Other features:
|
|
|
|
- [Sign-in with a wallet](https://eips.ethereum.org/EIPS/eip-4361).
|
|
- Donation buttons.
|
|
- Token-gated registration (can be used to verify membership in some group or to stop bots).
|
|
- Converting posts into NFTs.
|
|
|
|
Demo instance: https://public.mitra.social/ ([invite-only](https://public.mitra.social/about))
|
|
|
|
Network stats: https://the-federation.info/mitra
|
|
|
|
Matrix chat: [#mitra:halogen.city](https://matrix.to/#/#mitra:halogen.city)
|
|
|
|
## Code
|
|
|
|
Server: https://codeberg.org/silverpill/mitra (this repo)
|
|
|
|
Web client: https://codeberg.org/silverpill/mitra-web
|
|
|
|
Ethereum contracts: https://codeberg.org/silverpill/mitra-contracts
|
|
|
|
## Requirements
|
|
|
|
- Rust 1.54+ (when building from source)
|
|
- PostgreSQL 12+
|
|
- IPFS node (optional, see [guide](./docs/ipfs.md))
|
|
- Ethereum node (optional)
|
|
- Monero node and Monero wallet (optional)
|
|
|
|
## Installation
|
|
|
|
### Building from source
|
|
|
|
Run:
|
|
|
|
```
|
|
cargo build --release --features production
|
|
```
|
|
|
|
This command will produce two binaries in `target/release` directory, `mitra` and `mitractl`.
|
|
|
|
Install PostgreSQL and create the database:
|
|
|
|
```sql
|
|
CREATE USER mitra WITH PASSWORD 'mitra';
|
|
CREATE DATABASE mitra OWNER mitra;
|
|
```
|
|
|
|
Create configuration file by copying `contrib/mitra_config.yaml` and configure the instance. Default config file path is `/etc/mitra/config.yaml`, but it can be changed using `CONFIG_PATH` environment variable.
|
|
|
|
Start Mitra:
|
|
|
|
```
|
|
./mitra
|
|
```
|
|
|
|
An HTTP server will be needed to handle HTTPS requests and serve the frontend. See the example of [nginx configuration file](./contrib/mitra.nginx).
|
|
|
|
Building instructions for `mitra-web` frontend can be found at https://codeberg.org/silverpill/mitra-web#project-setup.
|
|
|
|
To run Mitra as a systemd service, check out the [systemd unit file example](./contrib/mitra.service).
|
|
|
|
### Debian package
|
|
|
|
Download and install Mitra package:
|
|
|
|
```
|
|
dpkg -i mitra.deb
|
|
```
|
|
|
|
Install PostgreSQL and create the database:
|
|
|
|
```sql
|
|
CREATE USER mitra WITH PASSWORD 'mitra';
|
|
CREATE DATABASE mitra OWNER mitra;
|
|
```
|
|
|
|
Open configuration file `/etc/mitra/config.yaml` and configure the instance.
|
|
|
|
Start Mitra:
|
|
|
|
```
|
|
systemctl start mitra
|
|
```
|
|
|
|
An HTTP server will be needed to handle HTTPS requests and serve the frontend. See the example of [nginx configuration file](./contrib/mitra.nginx).
|
|
|
|
### Monero
|
|
|
|
Install Monero node or choose a [public one](https://monero.fail/).
|
|
|
|
Configure and start [monero-wallet-rpc](https://monerodocs.org/interacting/monero-wallet-rpc-reference/) daemon.
|
|
|
|
Create a wallet for your instance.
|
|
|
|
Add blockchain configuration to `blockchains` array in your configuration file.
|
|
|
|
### Ethereum
|
|
|
|
Install Ethereum client or choose a JSON-RPC API provider.
|
|
|
|
Deploy contracts on the blockchain. Instructions can be found at https://codeberg.org/silverpill/mitra-contracts.
|
|
|
|
Add blockchain configuration to `blockchains` array in your configuration file.
|
|
|
|
## Development
|
|
|
|
### Start database server
|
|
|
|
```
|
|
docker-compose up -d
|
|
```
|
|
|
|
Test connection:
|
|
|
|
```
|
|
psql -h localhost -p 55432 -U mitra mitra
|
|
```
|
|
|
|
### Start Monero node and wallet server
|
|
|
|
(this step is optional)
|
|
|
|
```
|
|
docker-compose --profile monero up -d
|
|
```
|
|
|
|
### Run web service
|
|
|
|
Create config file, adjust settings if needed:
|
|
|
|
```
|
|
cp config.yaml.example config.yaml
|
|
```
|
|
|
|
Compile and run service:
|
|
|
|
```
|
|
cargo run
|
|
```
|
|
|
|
### Run CLI
|
|
|
|
```
|
|
cargo run --bin mitractl
|
|
```
|
|
|
|
### Run linter
|
|
|
|
```
|
|
cargo clippy
|
|
```
|
|
|
|
### Run tests
|
|
|
|
```
|
|
cargo test
|
|
```
|
|
|
|
## Federation
|
|
|
|
See [FEDERATION.md](./FEDERATION.md)
|
|
|
|
## Client API
|
|
|
|
### Mastodon API
|
|
|
|
Most methods are similar to Mastodon API, but Mitra is not fully compatible.
|
|
|
|
[OpenAPI spec](./docs/openapi.yaml) (incomplete)
|
|
|
|
## CLI
|
|
|
|
Commands must be run as the same user as the web service:
|
|
|
|
```
|
|
su mitra -c "mitractl generate-invite-code"
|
|
```
|
|
|
|
### Commands
|
|
|
|
Print help:
|
|
|
|
```shell
|
|
mitractl --help
|
|
```
|
|
|
|
Generate RSA private key:
|
|
|
|
```
|
|
mitractl generate-rsa-key
|
|
```
|
|
|
|
Generate invite code:
|
|
|
|
```
|
|
mitractl generate-invite-code
|
|
```
|
|
|
|
List generated invites:
|
|
|
|
```
|
|
mitractl list-invite-codes
|
|
```
|
|
|
|
Delete profile:
|
|
|
|
```
|
|
mitractl delete-profile 55a3005f-f293-4168-ab70-6ab09a879679
|
|
```
|
|
|
|
Delete post:
|
|
|
|
```
|
|
mitractl delete-post 55a3005f-f293-4168-ab70-6ab09a879679
|
|
```
|
|
|
|
Remove remote posts and media older than 30 days:
|
|
|
|
```
|
|
mitractl delete-extraneous-posts 30
|
|
```
|
|
|
|
Delete attachments that don't belong to any post:
|
|
|
|
```
|
|
mitractl delete-unused-attachments 5
|
|
```
|
|
|
|
Generate ethereum address:
|
|
|
|
```
|
|
mitractl generate-ethereum-address
|
|
```
|
|
|
|
Update synchronization starting block of Ethereum blockchain:
|
|
|
|
```shell
|
|
mitractl update-current-block 2000000
|
|
```
|
|
|
|
Create Monero wallet:
|
|
|
|
```shell
|
|
mitractl create-monero-wallet "mitra-wallet" "passw0rd"
|
|
```
|
|
|
|
## License
|
|
|
|
[AGPL-3.0](./LICENSE)
|
|
|
|
## Support
|
|
|
|
Monero: 8Ahza5RM4JQgtdqvpcF1U628NN5Q87eryXQad3Fy581YWTZU8o3EMbtScuioQZSkyNNEEE1Lkj2cSbG4VnVYCW5L1N4os5p
|