ecosistema-social-decentral.../applications/mastodon.md

90 lines
7.8 KiB
Markdown
Raw Normal View History

2020-06-05 18:41:34 +02:00
# Mastodon
2020-06-05 19:42:50 +02:00
Mastodon is a federated Twitter alternative. It is the most popular client using the ActivityPub federation protocol. It started out using OStatus, and switched to ActivityPub.
2020-06-05 18:41:34 +02:00
Each server is called an "instance". The entire constellation of instances that can interoperate is called the “Fediverse”.
### Identity
2020-06-05 19:42:50 +02:00
Users create an account on an instance, but can communicate with users on other instances. A full username is a users handle plus the name of the instance the user belongs to, for example:
2020-06-05 18:41:34 +02:00
```
@alice@mastodon.social
```
Usernames are unique to each instance, not to Mastodon as a whole, so `@alice.mastodon.social` can coexist with `@alice.mastodon.socal`.
2020-06-05 19:42:50 +02:00
If a user moves to a new instance, they can redirect or migrate their old account. Redirection sets up a redirect notice on the old profile which tells users to follow the new account. Migration forces all followers to unfollow the old account and follow the new, if the software on their instance supports this functionality. Previous posts will not be moved.
2020-06-05 18:41:34 +02:00
2020-06-05 19:42:50 +02:00
Account credentials are managed by the users instance, so if users forget their password, they can ask for a password reset. Whether users can delete their own accounts or not is a setting dependent on the instance admin.
2020-06-05 18:41:34 +02:00
2020-06-05 20:59:49 +02:00
An identity proof framework was added in 2019, which currently only supports Keybase. It allows users to [link their Keybase cryptographic identity](https://github.com/keybase/keybase-issues/issues/2948) to their Mastodon account.
2020-06-05 18:41:34 +02:00
### Networking/Message passing
2020-06-05 19:42:50 +02:00
Mastodon uses [Webfinger](https://docs.joinmastodon.org/spec/webfinger/) to translate user mentions to actor profile URIs. Webfinger specifies the path at which to find a user's profile information provided by the server.
2020-06-05 18:41:34 +02:00
2020-06-05 19:42:50 +02:00
ActivityPub federation defines a common set of APIs and formats for passing messages between servers. ActivityPub messages consist of the message itself, and a wrapper that communicates what's happening with the message, defining the "activity". The activities Mastodon implements are documented [here](https://docs.joinmastodon.org/spec/activitypub/).
2020-06-05 18:41:34 +02:00
### Data Storage/Message Persistence
Mastodon is a Ruby on Rails application that uses PostgreSQL and Redis for data storage.
### Moderation/Reputation
2020-06-05 19:42:50 +02:00
Moderation takes place at the server level in Mastodon. Each instance sets its own moderation policies, either through the unilateral decisions of an admin, or through collective discussion and agreement. Admins can ban entire instances, cutting off their visibility. If an instance gets banned by many others, its users can still talk with each other, but they will be isolated from the rest of the Fediverse.
2020-06-05 18:41:34 +02:00
2020-06-05 19:42:50 +02:00
Mastodon has content warnings that admins can apply to warn users of the nature of the content before they click. Users can also report posts to moderators.
2020-06-05 18:41:34 +02:00
2020-06-05 20:57:51 +02:00
Some documented [challenges with moderation in Mastodon](https://nolanlawson.com/2018/08/31/mastodon-and-the-challenges-of-abuse-in-a-federated-system/amp/) from 2018. One recommended solution is to provide open APIs for third-party tools to help with moderation, which was [added in 2019](https://github.com/tootsuite/mastodon/pull/9387).
2020-06-05 18:41:34 +02:00
### Social/Discovery
There is [no unified global search in Mastodon](https://github.com/tootsuite/mastodon/issues/9529), as each server monitors a different set of messages. Searching for the same keyword on different instances yields different results. The federated timeline shows public posts that the user's server knows about. Essentially, users have access to posts of people followed by people on their instance.
### Privacy and Access Control
2020-06-05 19:42:50 +02:00
Posts can be public, unlisted, private, or direct. Public posts are searchable on the web. Unlisted posts are not, but can be accessed through the link. Private posts are only visible to followers. Direct posts can only be seen by the people mentioned in them. Users can also hide their network, so the lists of followers and people they're following are not visible.Mastodon's privacy settings are recommendations, not demands, so it is up to each individual server to implement and enforce them.
2020-06-05 18:41:34 +02:00
Mastodon can be served through Tor as an onion service.
### Monetization
2020-06-05 19:42:50 +02:00
Federated social networks require both hosting and development costs to maintain. Each instance is funded by its own administrator and community. Mastodons development is funded through a Patreon run by the main developer, Eugen Gargron. It currently brings in about 70k a year, which supports him working on it full time, and covers hosting costs and a moderation team for the mastodon.social instance.
2020-06-05 18:41:34 +02:00
### User experience
Mastodon's main initial selling point was its familiar interface that behaved like Tweetdeck. Many other federated social applications that work essentially the same way had tried and failed to get mainstream adoption prior to Mastodon, largely due to unfamiliar user interfaces.
2020-06-05 19:42:50 +02:00
Notable design choices in Mastodon that differ from Twitter: Instead of a 280 character limit, there is a 500 character limit. "Likes" are not broadcast to third-parties. "Retweet" and "Like" numbers are not shown until a post is clicked on. "Bookmark" is a separate feature from "Like". Sometimes unlocked accounts receive a notification to manually review certain follow requests.
2020-06-05 18:41:34 +02:00
User-level content controls include: Filtering on posts can automatically hide keywords and phrases. "Boosts" (like retweets) from someone can be hidden. Accounts can be muted or blocked. Entire servers, including all of its posts, can be blocked by a user. Following, muting, blocking, and domain-blocking lists can be imported.
### Interoperability
Mastodon is compatible with all federated applications that use ActivityPub. These include Pleroma, another social site, PixelFed, a photo-sharing site, and PeerTube, a video-sharing site. Mastodon users can follow a PixelFed or PeerTube user from Mastodon.
All Mastodon user data is available for export.
2020-06-05 19:42:50 +02:00
Since Mastodon is one of the most widely used decentralized social applications, there are many user requests to extend interoperability. Some of these requests may be stalled by lack of developer resources and the challenge of upgrading decentralized protocols rather than by technical limitations. Some examples of requested interoperability features:
2020-06-05 18:41:34 +02:00
- To comment on a PixelFed post, a user needs to follow the link to that service. A request for [remote interaction](https://github.com/tootsuite/mastodon/issues/13822) with other federated services has been requested, but is not implemented.
- A global directory for [importing friends from other networks](https://github.com/tootsuite/mastodon/issues/11886)
### Scalability
2020-06-05 19:42:50 +02:00
Mastodon.Social, the instance started by Mastodon's main developer, Eugen Gargron, initially became the server of choice for new users. The server was scaled up to a larger VPS several times, until new registrations were closed in 2018. Gargron has now started mastodon.online to support more registrations. Anyone can run a Mastodon instance, but in practice, the majority of users have concentrated within a few.
2020-06-05 18:41:34 +02:00
2020-06-05 19:42:50 +02:00
When a surge of new users join an instance, server admins can run into scaling issues, as any web host who becomes unexpectedly popular does.
2020-06-05 18:41:34 +02:00
2020-06-05 19:42:50 +02:00
Another scalability issue is the resource requirements of Mastodon. As a monolithic web server and web app, it needs to run on a larger VPS. Mastodon hosting providers have emerged as a service to help individuals interested in being admins but without sysadmin experience to spin up servers. Pleroma, another federated social app, is a more minimal implementation that requires fewer resources to run. Rustodon is a WIP experimental Mastodon implementation in Rust, intended to address performance issues: https://github.com/rustodon/rustodon/
2020-06-05 18:41:34 +02:00
### Metrics
Mastodon has around 2.2 million accounts and 2800 nodes, as of June 2020.
### Links
[Official website](https://joinmastodon.org/)
2020-06-05 19:42:50 +02:00
[Documentation](https://docs.joinmastodon.org/)