fedimovies/README.md

140 lines
2.1 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-11-06 17:50:33 +00:00
Demo instance: https://mitra.social/ (invite-only)
2021-04-09 00:22:17 +00:00
2021-10-10 09:55:33 +00:00
Smart contracts repo: https://codeberg.org/silverpill/mitra-contracts
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
Create config file:
```
cp config.yaml.example config.yaml
```
Compile and run service:
```
cargo run
```
### Run CLI
```
cargo run --bin mitractl
```
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
```
## API
### Mastodon API
Endpoints are similar to Mastodon API:
```
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
2021-04-09 00:22:17 +00:00
GET /api/v1/timelines/home
```
Extra APIs:
```
POST /api/v1/statuses/{status_id}/make_permanent
GET /api/v1/statuses/{status_id}/signature
```
## CLI commands
Delete profile:
```
mitractl delete-profile -i 55a3005f-f293-4168-ab70-6ab09a879679
```
2021-09-25 20:46:19 +00:00
Delete post:
```
mitractl delete-post -i 55a3005f-f293-4168-ab70-6ab09a879679
```
2021-04-09 00:22:17 +00:00
Generate invite code:
```
mitractl generate-invite-code
```
List generated invites:
```
mitractl list-invite-codes
```
Generate ethereum address:
```
mitractl generate-ethereum-address
```
2021-10-10 09:55:33 +00:00
## License
[AGPL-3.0](./LICENSE)