Your self-hosted, globally interconnected microblogging community
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
aschmitz 669fe9ee06 Change IDs to strings rather than numbers in API JSON output (#5019)
* Fix JavaScript interface with long IDs

Somewhat predictably, the JS interface handled IDs as numbers, which in
JS are IEEE double-precision floats. This loses some precision when
working with numbers as large as those generated by the new ID scheme,
so we instead handle them here as strings. This is relatively simple,
and doesn't appear to have caused any problems, but should definitely
be tested more thoroughly than the built-in tests. Several days of use
appear to support this working properly.

BREAKING CHANGE:

The major(!) change here is that IDs are now returned as strings by the
REST endpoints, rather than as integers. In practice, relatively few
changes were required to make the existing JS UI work with this change,
but it will likely hit API clients pretty hard: it's an entirely
different type to consume. (The one API client I tested, Tusky, handles
this with no problems, however.)

Twitter ran into this issue when introducing Snowflake IDs, and decided
to instead introduce an `id_str` field in JSON responses. I have opted
to *not* do that, and instead force all IDs to 64-bit integers
represented by strings in one go. (I believe Twitter exacerbated their
problem by rolling out the changes three times: once for statuses, once
for DMs, and once for user IDs, as well as by leaving an integer ID
value in JSON. As they said, "If you’re using the `id` field with JSON
in a Javascript-related language, there is a very high likelihood that
the integers will be silently munged by Javascript interpreters. In most
cases, this will result in behavior such as being unable to load or
delete a specific direct message, because the ID you're sending to the
API is different than the actual identifier associated with the
message." [1]) However, given that this is a significant change for API
users, alternatives or a transition time may be appropriate.

1: https://blog.twitter.com/developer/en_us/a/2011/direct-messages-going-snowflake-on-sep-30-2011.html

* Additional fixes for stringified IDs in JSON

These should be the last two. These were identified using eslint to try
to identify any plain casts to JavaScript numbers. (Some such casts are
legitimate, but these were not.)

Adding the following to .eslintrc.yml will identify casts to numbers:

~~~
  no-restricted-syntax:
  - warn
  - selector: UnaryExpression[operator='+'] > :not(Literal)
    message: Avoid the use of unary +
  - selector: CallExpression[callee.name='Number']
    message: Casting with Number() may coerce string IDs to numbers
~~~

The remaining three casts appear legitimate: two casts to array indices,
one in a server to turn an environment variable into a number.

* Back out RelationshipsController Change

This was made to make a test a bit less flakey, but has nothing to
do with this branch.

* Change internal streaming payloads to stringified IDs as well

Per
https://github.com/tootsuite/mastodon/pull/5019#issuecomment-330736452
we need these changes to send deleted status IDs as strings, not
integers.
8 years ago
app Change IDs to strings rather than numbers in API JSON output (#5019) 8 years ago
bin Fix webpack-dev-server on Windows (#4000) 8 years ago
config i18n: Update Polish translation (#5015) 8 years ago
db Custom emoji (#4988) 8 years ago
docs Fix redirect link on Tuning.md (#1595) 8 years ago
lib Bump to 1.6.1 8 years ago
log Initial commit 9 years ago
nanobox [nanobox] Allow Full-size Uploads (#4123) 8 years ago
public Add script to make embedded iframes autosize (#4853) 8 years ago
spec Change IDs to strings rather than numbers in API JSON output (#5019) 8 years ago
streaming Fix streaming url to lowercase (#4804) 8 years ago
vendor/assets Initial commit 9 years ago
.babelrc 🎄🔨 Force tree shake emojione (#4202) 8 years ago
.buildpacks Add heroku APT buildpack for scalingo. (#3051) 8 years ago
.codeclimate.yml Enable CodeClimate SCSS Lint checks (#2886) 8 years ago
.dockerignore Remove Storybook (#4397) 8 years ago
.editorconfig Add final newline to locale files (#2890) 8 years ago
.env.nanobox [nanobox] Add Automated Backups (#4023) 8 years ago
.env.production.sample Add OpenStack Keystone V3 support (#4889) 8 years ago
.env.test Add recovery code support for two-factor auth (#1773) 8 years ago
.env.vagrant Add a default LOCAL_DOMAIN=mastodon.dev to .env.vagrant 8 years ago
.eslintignore Dev Tooling fixes (eslint/editorconfig) (#1398) 8 years ago
.eslintrc.yml Remove eslint-disable comments (#4681) 8 years ago
.foreman Replace sprockets/browserify with Webpack (#2617) 8 years ago
.gitattributes Add .gitattributes file to avoid unwanted CRLF (#3954) 8 years ago
.gitignore fix #4356 : place sw.js to assets/sw.js (#4357) 8 years ago
.haml-lint.yml Added haml-lint and fix warnings (#2773) 8 years ago
.nanoignore Remove Storybook (#4397) 8 years ago
.nvmrc update Node to 6.x LTS (#1228) 8 years ago
.postcssrc.yml Add object-fit polyfill for Edge (#4182) 8 years ago
.profile Add ffmpeg and dependent packages as well as LD_LIBRARY_PATHs (#3276) 8 years ago
.rspec Adding a Mention model, test stubs 9 years ago
.rubocop.yml Add handling of Linked Data Signatures in payloads (#4687) 8 years ago
.ruby-version Bump ruby version to 2.4.2 (#4958) 8 years ago
.scss-lint.yml Enable CodeClimate SCSS Lint checks (#2886) 8 years ago
.slugignore Remove Storybook (#4397) 8 years ago
.travis.yml Remove ubuntu-toolchain-r-test (#5005) 8 years ago
Aptfile Specify libicu explicitly in Aptfile (#4920) 8 years ago
CODEOWNERS Introduce CODEOWNERS file (#4670) 8 years ago
CONTRIBUTING.md README tidy up (#2026) 8 years ago
Capfile remove capistrano/faster_assets from Capfile (#2737) 8 years ago
Dockerfile Bump ruby version to 2.4.2 (#4958) 8 years ago
Gemfile Fix filterable_languages method of SettingsHelper (#4966) 8 years ago
Gemfile.lock Bump ruby version to 2.4.2 (#4958) 8 years ago
ISSUE_TEMPLATE.md Adds note for instance admins. (#1925) 8 years ago
LICENSE Fix #49 - License changed from GPL-2.0 to AGPL-3.0 9 years ago
Procfile More robust PuSH subscription refreshes (#2799) 8 years ago
Procfile.dev Fix sidekiq "port" being wrong (#3014) 8 years ago
README.md s/PubSubHubbub/WebSub/g (#4372) 8 years ago
Rakefile Initial commit 9 years ago
Vagrantfile Install libidn11-dev in Vagrant (#4238) 8 years ago
app.json Change logo URL for Heroku and Scalingo (#4476) 8 years ago
boxfile.yml [nanobox] Minor tweaks for 1.5 (#4395) 8 years ago
config.ru Fix rubocop issues, introduce usage of frozen literal to improve performance 9 years ago
docker-compose.yml Switch docker-compose to version 3. (#2747) 8 years ago
docker_entrypoint.sh Some Dockerfile improvements (#3182) 8 years ago
package.json Update react-intl to version 2.4.0 (#4820) 8 years ago
scalingo.json Change logo URL for Heroku and Scalingo (#4476) 8 years ago
yarn.lock Update react-intl to version 2.4.0 (#4820) 8 years ago

README.md

Mastodon

Build Status Code Climate

Mastodon is a free, open-source social network server. A decentralized solution to commercial platforms, it avoids the risks of a single company monopolizing your communication. Anyone can run Mastodon and participate in the social network seamlessly.

An alternative implementation of the GNU social project. Based on ActivityStreams, Webfinger, WebSub and Salmon.

Click on the screenshot to watch a demo of the UI:

Screenshot

The project focus is a clean REST API and a good user interface. Ruby on Rails is used for the back-end, while React.js and Redux are used for the dynamic front-end. A static front-end for public resources (profiles and statuses) is also provided.

If you would like, you can support the development of this project on Patreon. Alternatively, you can donate to this BTC address: 17j2g7vpgHhLuXhN4bueZFCvdxxieyRVWd

Resources

Features

  • Fully interoperable with GNU social and any OStatus platform Whatever implements Atom feeds, ActivityStreams, Salmon, WebSub and Webfinger is part of the network
  • Real-time timeline updates See the updates of people you're following appear in real-time in the UI via WebSockets
  • Federated thread resolving If someone you follow replies to a user unknown to the server, the server fetches the full thread so you can view it without leaving the UI
  • Media attachments like images and WebM Upload and view images and WebM videos attached to the updates
  • OAuth2 and a straightforward REST API Mastodon acts as an OAuth2 provider so 3rd party apps can use the API, which is RESTful and simple
  • Background processing for long-running tasks Mastodon tries to be as fast and responsive as possible, so all long-running tasks that can be delegated to background processing, are
  • Deployable via Docker You don't need to mess with dependencies and configuration if you want to try Mastodon, if you have Docker and Docker Compose the deployment is extremely easy

Development

Please follow the development guide from the documentation repository.

Deployment

There are guides in the documentation repository for deploying on various platforms.

Contributing

You can open issues for bugs you've found or features you think are missing. You can also submit pull requests to this repository. Here are the guidelines for code contributions

IRC channel: #mastodon on irc.freenode.net

Extra credits

  • The Emoji One pack has been used for the emojis
  • The error page image courtesy of Dopatwo

Mastodon error image