fedimovies/README.md

181 lines
2.8 KiB
Markdown
Raw Normal View History

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.
- 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-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)
- Create(Note)
- Delete(Note)
2021-11-14 20:09:46 +00:00
- Like(Note)
- Follow(Person)
- Undo(Follow)
- 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-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
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-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
```
## CLI commands
Generate RSA private key:
```
mitractl generate-rsa-key
```
Generate invite code:
2021-04-09 00:22:17 +00:00
```
mitractl generate-invite-code
2021-04-09 00:22:17 +00:00
```
List generated invites:
2021-09-25 20:46:19 +00:00
```
mitractl list-invite-codes
2021-09-25 20:46:19 +00:00
```
Delete profile:
2021-04-09 00:22:17 +00:00
```
mitractl delete-profile -i 55a3005f-f293-4168-ab70-6ab09a879679
2021-04-09 00:22:17 +00:00
```
Delete post:
2021-04-09 00:22:17 +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)