todon-api 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. checksums.yaml +7 -0
  2. data/lib/mastodon/access_token.rb +21 -0
  3. data/lib/mastodon/account.rb +73 -0
  4. data/lib/mastodon/app.rb +17 -0
  5. data/lib/mastodon/base.rb +50 -0
  6. data/lib/mastodon/card.rb +41 -0
  7. data/lib/mastodon/client.rb +28 -0
  8. data/lib/mastodon/collection.rb +27 -0
  9. data/lib/mastodon/conversation.rb +25 -0
  10. data/lib/mastodon/emoji.rb +21 -0
  11. data/lib/mastodon/entities/app.rb +12 -0
  12. data/lib/mastodon/entities/hashtag.rb +12 -0
  13. data/lib/mastodon/entities/media.rb +28 -0
  14. data/lib/mastodon/entities/mention.rb +14 -0
  15. data/lib/mastodon/error.rb +34 -0
  16. data/lib/mastodon/field.rb +18 -0
  17. data/lib/mastodon/filter.rb +29 -0
  18. data/lib/mastodon/hashtag.rb +19 -0
  19. data/lib/mastodon/headers.rb +17 -0
  20. data/lib/mastodon/instance.rb +33 -0
  21. data/lib/mastodon/list.rb +15 -0
  22. data/lib/mastodon/media.rb +34 -0
  23. data/lib/mastodon/notification.rb +30 -0
  24. data/lib/mastodon/relationship.rb +41 -0
  25. data/lib/mastodon/rest/accounts.rb +87 -0
  26. data/lib/mastodon/rest/api.rb +45 -0
  27. data/lib/mastodon/rest/apps.rb +27 -0
  28. data/lib/mastodon/rest/client.rb +10 -0
  29. data/lib/mastodon/rest/conversations.rb +34 -0
  30. data/lib/mastodon/rest/custom_emojis.rb +16 -0
  31. data/lib/mastodon/rest/domain_blocks.rb +32 -0
  32. data/lib/mastodon/rest/endorsements.rb +36 -0
  33. data/lib/mastodon/rest/filters.rb +61 -0
  34. data/lib/mastodon/rest/instances.rb +28 -0
  35. data/lib/mastodon/rest/lists.rb +77 -0
  36. data/lib/mastodon/rest/media.rb +31 -0
  37. data/lib/mastodon/rest/notifications.rb +34 -0
  38. data/lib/mastodon/rest/relationships.rb +126 -0
  39. data/lib/mastodon/rest/reports.rb +20 -0
  40. data/lib/mastodon/rest/request.rb +41 -0
  41. data/lib/mastodon/rest/scheduled_statuses.rb +43 -0
  42. data/lib/mastodon/rest/search.rb +20 -0
  43. data/lib/mastodon/rest/statuses.rb +124 -0
  44. data/lib/mastodon/rest/suggestions.rb +27 -0
  45. data/lib/mastodon/rest/timelines.rb +60 -0
  46. data/lib/mastodon/rest/utils.rb +40 -0
  47. data/lib/mastodon/results.rb +18 -0
  48. data/lib/mastodon/scheduled_status.rb +25 -0
  49. data/lib/mastodon/status.rb +96 -0
  50. data/lib/mastodon/streaming/client.rb +97 -0
  51. data/lib/mastodon/streaming/connection.rb +44 -0
  52. data/lib/mastodon/streaming/events/filters_change.rb +7 -0
  53. data/lib/mastodon/streaming/events/status_delete.rb +16 -0
  54. data/lib/mastodon/streaming/message_parser.rb +23 -0
  55. data/lib/mastodon/streaming/response.rb +43 -0
  56. data/lib/mastodon/version.rb +29 -0
  57. data/lib/mastodon.rb +6 -0
  58. data/mastodon.gemspec +23 -0
  59. metadata +175 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: bfef8b8f59185cd936d9d4936d5047099826bf9a3bd49d9021608f798905588a
4
+ data.tar.gz: 2e4b6bffc0a0afaeb70ac5c9cb326042720cf5e444fbfb65dcfd90af40137dab
5
+ SHA512:
6
+ metadata.gz: ffd1a0d8e10d7b226150b2b005ec99ba4bc74650bc2756edc48d1ae3a019168521f43637c3c2f7e158b1e2990e19f8275540f24bd19cec02e73227254dd455cf
7
+ data.tar.gz: 97ddb307f95f1cad6401187c0f0bece7ab3fedf5b5b2ee61adb068888d2d9768e8b19386485856b8e41c3c0fee7161c8d1e9c74b5bde89b793391951cb6b36c9
@@ -0,0 +1,21 @@
1
+ module Mastodon
2
+ class AccessToken < Mastodon::Base
3
+ # @!attribute [r] access_token
4
+ # @return [String]
5
+ # @!attribute [r] token_type
6
+ # @return [String]
7
+ # @!attribute [r] scope
8
+ # @return [String]
9
+ # @!attribute [r] created_at
10
+ # @return [String]
11
+ normal_attr_reader :access_token,
12
+ :token_type,
13
+ :scope,
14
+ :created_at
15
+
16
+ def initialize(attributes = {})
17
+ attributes.fetch('access_token')
18
+ super
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,73 @@
1
+ require 'mastodon/emoji'
2
+ require 'mastodon/field'
3
+
4
+ module Mastodon
5
+ class Account < Mastodon::Base
6
+ # @!attribute [r] id
7
+ # @return [String]
8
+ # @!attribute [r] username
9
+ # @return [String]
10
+ # @!attribute [r] acct
11
+ # @return [String]
12
+ # @!attribute [r] display_name
13
+ # @return [String]
14
+ # @!attribute [r] url
15
+ # @return [String]
16
+ # @!attribute [r] avatar
17
+ # @return [String]
18
+ # @!attribute [r] avatar_static
19
+ # @return [String]
20
+ # @!attribute [r] header
21
+ # @return [String]
22
+ # @!attribute [r] header_static
23
+ # @return [String]
24
+ # @!attribute [r] note
25
+ # @return [String]
26
+ # @!attribute [r] followers_count
27
+ # @return [Integer]
28
+ # @!attribute [r] following_count
29
+ # @return [Integer]
30
+ # @!attribute [r] statuses_count
31
+ # @return [Integer]
32
+ # @!attribute [r] created_at
33
+ # @return [String]
34
+ # @!attribute [r] locked?
35
+ # @return [Boolean]
36
+ # @!attribute [r] bot?
37
+ # @return [Boolean]
38
+ # @!attribute [r] moved
39
+ # @return [Mastodon::Account]
40
+ # @!attribute [r] emojis
41
+ # @return [Mastodon::Collection<Mastodon::Emoji>]
42
+ # @!attribute [r] fields
43
+ # @return [Mastodon::Collection<Mastodon::Field>]
44
+
45
+ normal_attr_reader :id,
46
+ :username,
47
+ :acct,
48
+ :display_name,
49
+ :created_at,
50
+ :url,
51
+ :avatar,
52
+ :avatar_static,
53
+ :header,
54
+ :header_static,
55
+ :note,
56
+ :followers_count,
57
+ :following_count,
58
+ :statuses_count
59
+
60
+ predicate_attr_reader :locked,
61
+ :bot
62
+
63
+ object_attr_reader :moved, Mastodon::Account
64
+
65
+ collection_attr_reader :emojis, Mastodon::Emoji
66
+ collection_attr_reader :fields, Mastodon::Field
67
+
68
+ def initialize(attributes = {})
69
+ attributes.fetch('id')
70
+ super
71
+ end
72
+ end
73
+ end
@@ -0,0 +1,17 @@
1
+ module Mastodon
2
+ class App < Mastodon::Base
3
+ # @!attribute [r] client_id
4
+ # @return [String]
5
+ # @!attribute [r] client_secret
6
+ # @return [String]
7
+ # @!attribute [r] name
8
+ # @return [String]
9
+ # @!attribute [r] website
10
+ # @return [String]
11
+
12
+ normal_attr_reader :client_id,
13
+ :client_secret,
14
+ :name,
15
+ :website
16
+ end
17
+ end
@@ -0,0 +1,50 @@
1
+ module Mastodon
2
+ class Base
3
+ attr_reader :attributes
4
+
5
+ alias to_h attributes
6
+ alias to_hash attributes
7
+
8
+ def initialize(attributes = {})
9
+ @attributes = attributes
10
+ end
11
+
12
+ class << self
13
+ def normal_attr_reader(*attributes)
14
+ attributes.each do |attribute|
15
+ define_attribute_method(attribute)
16
+ end
17
+ end
18
+
19
+ def object_attr_reader(attribute, klass)
20
+ define_method(attribute) do
21
+ klass.new(@attributes[attribute.to_s])
22
+ end
23
+ end
24
+
25
+ def collection_attr_reader(attribute, klass)
26
+ define_method(attribute) do
27
+ Mastodon::Collection.new(@attributes[attribute.to_s], klass)
28
+ end
29
+ end
30
+
31
+ def predicate_attr_reader(*attributes)
32
+ attributes.each do |attribute|
33
+ define_predicate_method(attribute)
34
+ end
35
+ end
36
+
37
+ def define_predicate_method(key)
38
+ define_method("#{key}?") do
39
+ @attributes[key.to_s]
40
+ end
41
+ end
42
+
43
+ def define_attribute_method(key)
44
+ define_method(key) do
45
+ @attributes[key.to_s]
46
+ end
47
+ end
48
+ end
49
+ end
50
+ end
@@ -0,0 +1,41 @@
1
+ module Mastodon
2
+ class Card < Mastodon::Base
3
+ # @!attribute [r] url
4
+ # @return [String]
5
+ # @!attribute [r] title
6
+ # @return [String]
7
+ # @!attribute [r] description
8
+ # @return [String]
9
+ # @!attribute [r] image
10
+ # @return [String]
11
+ # @!attribute [r] type
12
+ # @return [String]
13
+ # @!attribute [r] author_name
14
+ # @return [String]
15
+ # @!attribute [r] author_url
16
+ # @return [String]
17
+ # @!attribute [r] provider_name
18
+ # @return [String]
19
+ # @!attribute [r] provider_url
20
+ # @return [String]
21
+ # @!attribute [r] html
22
+ # @return [String]
23
+ # @!attribute [r] width
24
+ # @return [String]
25
+ # @!attribute [r] height
26
+ # @return [String]
27
+
28
+ normal_attr_reader :url,
29
+ :title,
30
+ :description,
31
+ :image,
32
+ :type,
33
+ :author_name,
34
+ :author_url,
35
+ :provider_name,
36
+ :provider_url,
37
+ :html,
38
+ :width,
39
+ :height
40
+ end
41
+ end
@@ -0,0 +1,28 @@
1
+ require 'mastodon/version'
2
+
3
+ module Mastodon
4
+ class Client
5
+ DEFAULT_TIMEOUT = {
6
+ connect: 2,
7
+ read: 5,
8
+ write: 20,
9
+ }.freeze
10
+
11
+ attr_reader :base_url, :bearer_token, :timeout
12
+
13
+ # @param options [Hash]
14
+ # @option options :base_url [String] URL of the instance you want to connect to
15
+ # @option options :bearer_token [String] OAuth access token for your authenticated user
16
+ def initialize(options = {})
17
+ @base_url = options[:base_url]
18
+ @bearer_token = options[:bearer_token]
19
+ @timeout = DEFAULT_TIMEOUT.merge(options[:timeout] || {})
20
+ end
21
+
22
+ # User agent of the client
23
+ # @return [String]
24
+ def user_agent
25
+ @user_agent ||= "MastodonRubyGem/#{Mastodon::Version}"
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,27 @@
1
+ module Mastodon
2
+ class Collection
3
+ include ::Enumerable
4
+
5
+ def initialize(items, klass)
6
+ @collection = items.map { |attributes| klass.new(attributes) }
7
+ end
8
+
9
+ def each(start = 0)
10
+ return to_enum(:each, start) unless block_given?
11
+
12
+ Array(@collection[start..-1]).each do |element|
13
+ yield(element)
14
+ end
15
+
16
+ self
17
+ end
18
+
19
+ def size
20
+ @collection.size
21
+ end
22
+
23
+ def last
24
+ @collection.last
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,25 @@
1
+ require 'mastodon/account'
2
+ require 'mastodon/status'
3
+
4
+ module Mastodon
5
+ class Conversation < Mastodon::Base
6
+ # @!attribute [r] id
7
+ # @return [String]
8
+ # @!attribute [r] unread?
9
+ # @return [Boolean]
10
+ # @!attribute [r] accounts
11
+ # @return [Mastodon::Collection<Mastodon::Account>]
12
+ # @!attribute [r] last_status
13
+ # @return [Mastodon::Status]
14
+
15
+ normal_attr_reader :id
16
+ predicate_attr_reader :unread
17
+ collection_attr_reader :accounts, Mastodon::Account
18
+ object_attr_reader :last_status, Mastodon::Status
19
+
20
+ def initialize(attributes = {})
21
+ attributes.fetch('id')
22
+ super
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,21 @@
1
+ module Mastodon
2
+ class Emoji < Mastodon::Base
3
+ # @!attribute [r] shortcode
4
+ # @return [String]
5
+ # @!attribute [r] static_url
6
+ # @return [String]
7
+ # @!attribute [r] url
8
+ # @return [String]
9
+ # @!attribute [r] visible_in_picker?
10
+ # @return [Boolean]
11
+
12
+ normal_attr_reader :shortcode, :static_url, :url
13
+
14
+ predicate_attr_reader :visible_in_picker
15
+
16
+ def initialize(attributes = {})
17
+ attributes.fetch('shortcode')
18
+ super
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,12 @@
1
+ module Mastodon
2
+ module Entities
3
+ class App < Mastodon::Base
4
+ # @!attribute [r] name
5
+ # @return [String]
6
+ # @!attribute [r] website
7
+ # @return [String]
8
+
9
+ normal_attr_reader :name, :website
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,12 @@
1
+ module Mastodon
2
+ module Entities
3
+ class Hashtag < Mastodon::Base
4
+ # @!attribute [r] name
5
+ # @return [String]
6
+ # @!attribute [r] url
7
+ # @return [String]
8
+
9
+ normal_attr_reader :name, :url
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,28 @@
1
+ module Mastodon
2
+ module Entities
3
+ class Media < Mastodon::Base
4
+ # @!attribute [r] id
5
+ # @return [Integer]
6
+ # @!attribute [r] url
7
+ # @return [String]
8
+ # @!attribute [r] remote_url
9
+ # @return [String]
10
+ # @!attribute [r] preview_url
11
+ # @return [String]
12
+ # @!attribute [r] type
13
+ # @return [String]
14
+ # @!attribute [r] meta
15
+ # @return [Hash]
16
+ # @!attribute [r] description
17
+ # @return [String]
18
+
19
+ normal_attr_reader :id,
20
+ :url,
21
+ :remote_url,
22
+ :preview_url,
23
+ :type,
24
+ :meta,
25
+ :description
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,14 @@
1
+ module Mastodon
2
+ module Entities
3
+ class Mention < Mastodon::Base
4
+ # @!attribute [r] id
5
+ # @return [String] Account ID
6
+ # @!attribute [r] acct
7
+ # @return [String]
8
+ # @!attribute [r] url
9
+ # @return [String]
10
+
11
+ normal_attr_reader :id, :acct, :url
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,34 @@
1
+ module Mastodon
2
+ class Error < StandardError
3
+ ClientError = Class.new(self)
4
+ BadRequest = Class.new(ClientError)
5
+ Unauthorized = Class.new(ClientError)
6
+ Forbidden = Class.new(ClientError)
7
+ UnprocessableEntity = Class.new(ClientError)
8
+ TooManyRequests = Class.new(ClientError)
9
+
10
+ ServerError = Class.new(self)
11
+ InternalServerError = Class.new(ServerError)
12
+ BadGateway = Class.new(ServerError)
13
+ ServiceUnavailable = Class.new(ServerError)
14
+ GatewayTimeout = Class.new(ServerError)
15
+
16
+ ERRORS = {
17
+ 400 => Mastodon::Error::BadRequest,
18
+ 401 => Mastodon::Error::Unauthorized,
19
+ 403 => Mastodon::Error::Forbidden,
20
+ 422 => Mastodon::Error::UnprocessableEntity,
21
+ 429 => Mastodon::Error::TooManyRequests,
22
+ 500 => Mastodon::Error::InternalServerError,
23
+ 502 => Mastodon::Error::BadGateway,
24
+ 503 => Mastodon::Error::ServiceUnavailable,
25
+ 504 => Mastodon::Error::GatewayTimeout,
26
+ }.freeze
27
+
28
+ class << self
29
+ def from_response(body)
30
+ new(body['error'])
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,18 @@
1
+ module Mastodon
2
+ class Field < Mastodon::Base
3
+ # @!attribute [r] name
4
+ # @return [String]
5
+ # @!attribute [r] value
6
+ # @return [String]
7
+ # @!attribute [r] verified_at
8
+ # @return [String]
9
+
10
+ normal_attr_reader :name, :value, :verified_at
11
+
12
+ # Is this field a verified link?
13
+ # @return [Boolean]
14
+ def verified?
15
+ attributes['verified_at'].present?
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,29 @@
1
+ module Mastodon
2
+ class Filter < Mastodon::Base
3
+ # @!attribute [r] id
4
+ # @return [String]
5
+ # @!attribute [r] phrase
6
+ # @return [String]
7
+ # @!attribute [r] context
8
+ # @return [Array<String>]
9
+ # @!attribute [r] expires_at
10
+ # @return [String]
11
+ # @!attribute [r] irreversible?
12
+ # @return [Boolean]
13
+ # @!attribute [r] whole_word?
14
+ # @return [Boolean]
15
+
16
+ normal_attr_reader :id,
17
+ :phrase,
18
+ :context,
19
+ :expires_at
20
+
21
+ predicate_attr_reader :irreversible,
22
+ :whole_word
23
+
24
+ def initialize(attributes = {})
25
+ attributes.fetch('id')
26
+ super
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,19 @@
1
+ module Mastodon
2
+ class Hashtag < Mastodon::Base
3
+ # @!attribute [r] name
4
+ # @return [String]
5
+ # @!attribute [r] url
6
+ # @return [String]
7
+ # @!attribute [r] history
8
+ # @return [Array<Hash>]
9
+
10
+ normal_attr_reader :name,
11
+ :url,
12
+ :history
13
+
14
+ def initialize(attributes = {})
15
+ attributes.fetch('name')
16
+ super
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,17 @@
1
+ module Mastodon
2
+ class Headers
3
+ # @param client [Mastodon::Client]
4
+ def initialize(client)
5
+ @client = client
6
+ end
7
+
8
+ # @return [Hash]
9
+ def request_headers
10
+ {
11
+ user_agent: @client.user_agent,
12
+ accept: '*/*',
13
+ authorization: "Bearer #{@client.bearer_token}",
14
+ }
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,33 @@
1
+ module Mastodon
2
+ class Instance < Mastodon::Base
3
+ # @!attribute [r] uri
4
+ # @return [String]
5
+ # @!attribute [r] title
6
+ # @return [String]
7
+ # @!attribute [r] description
8
+ # @return [String]
9
+ # @!attribute [r] email
10
+ # @return [String]
11
+ # @!attribute [r] version
12
+ # @return [String]
13
+ # @!attribute [r] urls
14
+ # @return [Hash]
15
+ # @!attribute [r] stats
16
+ # @return [Hash]
17
+ # @!attribute [r] languages
18
+ # @return [Array<String>]
19
+ # @!attribute [r] contact_account
20
+ # @return [Mastodon::Account]
21
+
22
+ normal_attr_reader :uri,
23
+ :title,
24
+ :description,
25
+ :email,
26
+ :version,
27
+ :urls,
28
+ :stats,
29
+ :languages
30
+
31
+ object_attr_reader :contact_account, Mastodon::Account
32
+ end
33
+ end
@@ -0,0 +1,15 @@
1
+ module Mastodon
2
+ class List < Mastodon::Base
3
+ # @!attribute [r] id
4
+ # @return [String]
5
+ # @!attribute [r] title
6
+ # @return [String]
7
+
8
+ normal_attr_reader :id, :title
9
+
10
+ def initialize(attributes = {})
11
+ attributes.fetch('id')
12
+ super
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,34 @@
1
+ module Mastodon
2
+ class Media < Mastodon::Base
3
+ # @!attribute [r] id
4
+ # @return [String]
5
+ # @!attribute [r] type
6
+ # @return [String] Image or video
7
+ # @!attribute [r] url
8
+ # @return [String] Full file URL
9
+ # @!attribute [r] remote_url
10
+ # @return [String]
11
+ # @!attribute [r] preview_url
12
+ # @return [String] URL to preview image
13
+ # @!attribute [r] text_url
14
+ # @return [String] URL that can be put into status body and will redirect to the status/media
15
+ # @!attribute [r] meta
16
+ # @return [Hash]
17
+ # @!attribute [r] description
18
+ # @return [String]
19
+
20
+ normal_attr_reader :id,
21
+ :type,
22
+ :url,
23
+ :remote_url,
24
+ :preview_url,
25
+ :text_url,
26
+ :meta,
27
+ :description
28
+
29
+ def initialize(attributes = {})
30
+ attributes.fetch('id')
31
+ super
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,30 @@
1
+ module Mastodon
2
+ class Notification < Mastodon::Base
3
+ # @!attribute [r] id
4
+ # @return [String]
5
+ # @!attribute [r] type
6
+ # @return [String]
7
+ # @!attribute [r] created_at
8
+ # @return [String]
9
+ # @!attribute [r] account
10
+ # @return [Mastodon::Account]
11
+ # @!attribute [r] status
12
+ # @return [Mastodon::Status]
13
+
14
+ normal_attr_reader :id, :type, :created_at
15
+
16
+ object_attr_reader :account, Mastodon::Account
17
+ object_attr_reader :status, Mastodon::Status
18
+
19
+ def initialize(attributes = {})
20
+ attributes.fetch('id')
21
+ super
22
+ end
23
+
24
+ # Does this notification include a status?
25
+ # @return [Boolean] true if a status is included, false otherwise
26
+ def status?
27
+ attributes.key?('status')
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,41 @@
1
+ module Mastodon
2
+ class Relationship < Mastodon::Base
3
+ # @!attribute [r] id
4
+ # @return [String] Account ID
5
+ # @!attribute [r] following?
6
+ # @return [Boolean]
7
+ # @!attribute [r] followed_by?
8
+ # @return [Boolean]
9
+ # @!attribute [r] blocking?
10
+ # @return [Boolean]
11
+ # @!attribute [r] muting?
12
+ # @return [Boolean]
13
+ # @!attribute [r] muting_notifications?
14
+ # @return [Boolean]
15
+ # @!attribute [r] requested?
16
+ # @return [Boolean]
17
+ # @!attribute [r] domain_blocking?
18
+ # @return [Boolean]
19
+ # @!attribute [r] showing_reblogs?
20
+ # @return [Boolean]
21
+ # @!attribute [r] endorsed?
22
+ # @return [Boolean]
23
+
24
+ normal_attr_reader :id
25
+
26
+ predicate_attr_reader :following,
27
+ :followed_by,
28
+ :blocking,
29
+ :muting,
30
+ :muting_notifications,
31
+ :requested,
32
+ :domain_blocking,
33
+ :showing_reblogs,
34
+ :endorsed
35
+
36
+ def initialize(attributes = {})
37
+ attributes.fetch('id')
38
+ super
39
+ end
40
+ end
41
+ end