2021-04-09 00:22:17 +00:00
|
|
|
# Mitra
|
|
|
|
|
|
|
|
Federated social network with smart contracts.
|
|
|
|
|
|
|
|
- Built on [ActivityPub](https://activitypub.rocks/) protocol.
|
|
|
|
- Lightweight.
|
|
|
|
- Sign-in with Ethereum.
|
2021-10-21 11:55:27 +00:00
|
|
|
- Proving membership with a token.
|
2021-04-09 00:22:17 +00:00
|
|
|
- Converting posts into NFTs.
|
|
|
|
- More crypto features in the future.
|
|
|
|
|
2021-10-10 09:55:33 +00:00
|
|
|
Smart contracts repo: https://codeberg.org/silverpill/mitra-contracts
|
|
|
|
|
2021-11-29 21:24:44 +00:00
|
|
|
Frontend repo: https://codeberg.org/silverpill/mitra-web
|
|
|
|
|
2021-11-20 20:34:33 +00:00
|
|
|
Matrix chat: [#mitra:halogen.city](https://matrix.to/#/#mitra:halogen.city)
|
|
|
|
|
|
|
|
Demo instance: https://mitra.social/ (invite-only)
|
|
|
|
|
2021-04-09 00:22:17 +00:00
|
|
|
## Requirements
|
|
|
|
|
|
|
|
- Rust 1.51+
|
|
|
|
- Postgresql
|
|
|
|
- IPFS node (optional)
|
|
|
|
- Ethereum node (optional)
|
|
|
|
|
|
|
|
## Development
|
|
|
|
|
|
|
|
### Create database
|
|
|
|
|
|
|
|
```
|
|
|
|
docker-compose up
|
|
|
|
```
|
|
|
|
|
|
|
|
Test connection:
|
|
|
|
|
|
|
|
```
|
|
|
|
psql -h localhost -p 5432 -U mitra mitra
|
|
|
|
```
|
|
|
|
|
|
|
|
### Run web service
|
|
|
|
|
2021-11-26 22:37:20 +00:00
|
|
|
Generate instance key:
|
|
|
|
|
|
|
|
```
|
|
|
|
cargo run --bin mitractl generate-rsa-key
|
|
|
|
```
|
|
|
|
|
|
|
|
Create config file, set `instance_rsa_key`, adjust other settings if needed:
|
2021-04-09 00:22:17 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
cp config.yaml.example config.yaml
|
|
|
|
```
|
|
|
|
|
|
|
|
Compile and run service:
|
|
|
|
|
|
|
|
```
|
|
|
|
cargo run
|
|
|
|
```
|
|
|
|
|
|
|
|
### Run CLI
|
|
|
|
|
|
|
|
```
|
|
|
|
cargo run --bin mitractl
|
|
|
|
```
|
|
|
|
|
2021-11-13 17:37:31 +00:00
|
|
|
### Run linter
|
|
|
|
|
|
|
|
```
|
|
|
|
cargo clippy
|
|
|
|
```
|
|
|
|
|
2021-10-10 09:55:33 +00:00
|
|
|
### Run tests
|
|
|
|
|
|
|
|
```
|
|
|
|
cargo test
|
|
|
|
```
|
|
|
|
|
2021-04-09 00:22:17 +00:00
|
|
|
### Build for production
|
|
|
|
|
|
|
|
```
|
|
|
|
cargo build --release
|
|
|
|
```
|
|
|
|
|
2021-11-14 20:09:46 +00:00
|
|
|
## Federation
|
|
|
|
|
|
|
|
The following activities are supported:
|
|
|
|
|
|
|
|
- Accept(Follow)
|
|
|
|
- Reject(Follow)
|
2021-11-30 22:18:20 +00:00
|
|
|
- Undo(Follow)
|
2021-11-14 20:09:46 +00:00
|
|
|
- Create(Note)
|
2021-11-19 00:05:39 +00:00
|
|
|
- Delete(Note)
|
2021-11-14 20:09:46 +00:00
|
|
|
- Like(Note)
|
2021-11-30 22:18:20 +00:00
|
|
|
- Announce(Note)
|
2021-11-14 20:09:46 +00:00
|
|
|
- Follow(Person)
|
|
|
|
- Update(Person)
|
|
|
|
|
|
|
|
And these additional standards:
|
|
|
|
|
|
|
|
- [Http Signatures](https://datatracker.ietf.org/doc/html/draft-cavage-http-signatures)
|
|
|
|
- [NodeInfo](https://nodeinfo.diaspora.software/)
|
|
|
|
- [WebFinger](https://webfinger.net/)
|
|
|
|
|
|
|
|
## Client API
|
2021-04-09 00:22:17 +00:00
|
|
|
|
|
|
|
### Mastodon API
|
|
|
|
|
2021-11-14 20:09:46 +00:00
|
|
|
Most methods are similar to Mastodon API:
|
2021-04-09 00:22:17 +00:00
|
|
|
|
|
|
|
```
|
2021-10-05 18:10:14 +00:00
|
|
|
POST /api/v1/accounts
|
2021-04-09 00:22:17 +00:00
|
|
|
GET /api/v1/accounts/{account_id}
|
2021-10-01 00:35:52 +00:00
|
|
|
GET /api/v1/accounts/verify_credentials
|
2021-04-09 00:22:17 +00:00
|
|
|
PATCH /api/v1/accounts/update_credentials
|
|
|
|
GET /api/v1/accounts/relationships
|
|
|
|
POST /api/v1/accounts/{account_id}/follow
|
|
|
|
POST /api/v1/accounts/{account_id}/unfollow
|
|
|
|
GET /api/v1/directory
|
|
|
|
GET /api/v1/instance
|
2021-11-06 17:50:33 +00:00
|
|
|
GET /api/v1/markers
|
|
|
|
POST /api/v1/markers
|
2021-04-09 00:22:17 +00:00
|
|
|
POST /api/v1/media
|
2021-11-06 17:50:33 +00:00
|
|
|
GET /api/v1/notifications
|
2021-04-09 00:22:17 +00:00
|
|
|
GET /api/v2/search
|
|
|
|
POST /api/v1/statuses
|
|
|
|
GET /api/v1/statuses/{status_id}
|
2021-12-04 00:42:36 +00:00
|
|
|
DELETE /api/v1/statuses/{status_id}
|
2021-09-22 16:32:44 +00:00
|
|
|
GET /api/v1/statuses/{status_id}/context
|
2021-11-06 17:50:33 +00:00
|
|
|
POST /api/v1/statuses/{status_id}/favourite
|
|
|
|
POST /api/v1/statuses/{status_id}/unfavourite
|
2021-11-24 16:39:30 +00:00
|
|
|
POST /api/v1/statuses/{status_id}/reblog
|
|
|
|
POST /api/v1/statuses/{status_id}/unreblog
|
2021-04-09 00:22:17 +00:00
|
|
|
GET /api/v1/timelines/home
|
2021-12-12 13:38:10 +00:00
|
|
|
GET /api/v1/timelines/tag/{hashtag}
|
2021-04-09 00:22:17 +00:00
|
|
|
```
|
|
|
|
|
2021-11-14 20:09:46 +00:00
|
|
|
Additional methods:
|
2021-04-09 00:22:17 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
POST /api/v1/statuses/{status_id}/make_permanent
|
|
|
|
GET /api/v1/statuses/{status_id}/signature
|
2021-12-03 18:44:01 +00:00
|
|
|
POST /api/v1/statuses/{status_id}/token_minted
|
2021-04-09 00:22:17 +00:00
|
|
|
```
|
|
|
|
|
2021-12-03 15:29:50 +00:00
|
|
|
[OpenAPI spec](./docs/openapi.yaml)
|
|
|
|
|
2021-04-09 00:22:17 +00:00
|
|
|
## CLI commands
|
|
|
|
|
2021-11-18 00:22:41 +00:00
|
|
|
Generate RSA private key:
|
|
|
|
|
|
|
|
```
|
|
|
|
mitractl generate-rsa-key
|
|
|
|
```
|
|
|
|
|
2021-11-15 21:43:58 +00:00
|
|
|
Generate invite code:
|
2021-04-09 00:22:17 +00:00
|
|
|
|
|
|
|
```
|
2021-11-15 21:43:58 +00:00
|
|
|
mitractl generate-invite-code
|
2021-04-09 00:22:17 +00:00
|
|
|
```
|
|
|
|
|
2021-11-15 21:43:58 +00:00
|
|
|
List generated invites:
|
2021-09-25 20:46:19 +00:00
|
|
|
|
|
|
|
```
|
2021-11-15 21:43:58 +00:00
|
|
|
mitractl list-invite-codes
|
2021-09-25 20:46:19 +00:00
|
|
|
```
|
|
|
|
|
2021-11-15 21:43:58 +00:00
|
|
|
Delete profile:
|
2021-04-09 00:22:17 +00:00
|
|
|
|
|
|
|
```
|
2021-11-15 21:43:58 +00:00
|
|
|
mitractl delete-profile -i 55a3005f-f293-4168-ab70-6ab09a879679
|
2021-04-09 00:22:17 +00:00
|
|
|
```
|
|
|
|
|
2021-11-15 21:43:58 +00:00
|
|
|
Delete post:
|
2021-04-09 00:22:17 +00:00
|
|
|
|
|
|
|
```
|
2021-11-15 21:43:58 +00:00
|
|
|
mitractl delete-post -i 55a3005f-f293-4168-ab70-6ab09a879679
|
2021-04-09 00:22:17 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Generate ethereum address:
|
|
|
|
|
|
|
|
```
|
|
|
|
mitractl generate-ethereum-address
|
|
|
|
```
|
2021-10-10 09:55:33 +00:00
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
[AGPL-3.0](./LICENSE)
|