mirror of
https://github.com/mastodon/mastodon.git
synced 2025-12-13 20:02:42 +00:00
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
38 lines
767 B
Ruby
38 lines
767 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::AccountSerializer < ActiveModel::Serializer
|
|
include RoutingHelper
|
|
|
|
attributes :id, :username, :acct, :display_name, :locked, :created_at,
|
|
:note, :url, :avatar, :avatar_static, :header, :header_static,
|
|
:followers_count, :following_count, :statuses_count
|
|
|
|
def id
|
|
object.id.to_s
|
|
end
|
|
|
|
def note
|
|
Formatter.instance.simplified_format(object)
|
|
end
|
|
|
|
def url
|
|
TagManager.instance.url_for(object)
|
|
end
|
|
|
|
def avatar
|
|
full_asset_url(object.avatar_original_url)
|
|
end
|
|
|
|
def avatar_static
|
|
full_asset_url(object.avatar_static_url)
|
|
end
|
|
|
|
def header
|
|
full_asset_url(object.header_original_url)
|
|
end
|
|
|
|
def header_static
|
|
full_asset_url(object.header_static_url)
|
|
end
|
|
end
|