ruby-trello 2.3.1 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +13 -2
- data/lib/trello.rb +13 -7
- data/lib/trello/action.rb +27 -21
- data/lib/trello/attachment.rb +40 -27
- data/lib/trello/basic_data.rb +104 -9
- data/lib/trello/board.rb +88 -102
- data/lib/trello/card.rb +34 -235
- data/lib/trello/checklist.rb +17 -71
- data/lib/trello/comment.rb +32 -22
- data/lib/trello/cover_image.rb +20 -0
- data/lib/trello/custom_field.rb +31 -84
- data/lib/trello/custom_field_item.rb +36 -58
- data/lib/trello/custom_field_option.rb +40 -13
- data/lib/trello/item.rb +27 -16
- data/lib/trello/item_state.rb +7 -15
- data/lib/trello/json_utils.rb +1 -1
- data/lib/trello/label.rb +14 -101
- data/lib/trello/label_name.rb +22 -25
- data/lib/trello/list.rb +31 -44
- data/lib/trello/member.rb +77 -32
- data/lib/trello/notification.rb +27 -20
- data/lib/trello/organization.rb +53 -25
- data/lib/trello/plugin_datum.rb +11 -16
- data/lib/trello/schema.rb +31 -0
- data/lib/trello/schema/attribute/base.rb +79 -0
- data/lib/trello/schema/attribute/board_pref.rb +45 -0
- data/lib/trello/schema/attribute/custom_field_display.rb +45 -0
- data/lib/trello/schema/attribute/default.rb +45 -0
- data/lib/trello/schema/attribute_builder.rb +42 -0
- data/lib/trello/schema/attribute_registration.rb +47 -0
- data/lib/trello/schema/serializer/default.rb +17 -0
- data/lib/trello/schema/serializer/labels.rb +23 -0
- data/lib/trello/schema/serializer/time.rb +25 -0
- data/lib/trello/schema/serializer/webhooks.rb +25 -0
- data/lib/trello/token.rb +15 -12
- data/lib/trello/webhook.rb +18 -71
- data/spec/action_spec.rb +1 -2
- data/spec/board_spec.rb +43 -103
- data/spec/card_spec.rb +51 -50
- data/spec/cassettes/action_find_with_id_and_get_all_fields.yml +104 -0
- data/spec/cassettes/board_find_with_id_and_get_all_fields.yml +96 -0
- data/spec/cassettes/board_find_with_id_and_get_specific_fields.yml +96 -0
- data/spec/cassettes/can_add_a_member_to_a_board.yml +191 -0
- data/spec/cassettes/can_arvhice_all_cards_of_list.yml +397 -0
- data/spec/cassettes/can_get_actions_of_board.yml +188 -0
- data/spec/cassettes/can_get_actions_of_list.yml +202 -0
- data/spec/cassettes/can_get_actions_of_members.yml +199 -0
- data/spec/cassettes/can_get_actions_of_organization.yml +201 -0
- data/spec/cassettes/can_get_boards_of_custom_field.yml +198 -0
- data/spec/cassettes/can_get_boards_of_label.yml +197 -0
- data/spec/cassettes/can_get_boards_of_organization.yml +207 -0
- data/spec/cassettes/can_get_cards_of_board.yml +193 -0
- data/spec/cassettes/can_get_cards_of_list.yml +201 -0
- data/spec/cassettes/can_get_cards_of_member.yml +204 -0
- data/spec/cassettes/can_get_checklists_of_board.yml +187 -0
- data/spec/cassettes/can_get_custom_field_options_of_custom_field.yml +197 -0
- data/spec/cassettes/can_get_custom_fields_of_board.yml +187 -0
- data/spec/cassettes/can_get_label_names_of_board.yml +187 -0
- data/spec/cassettes/can_get_labels_of_board.yml +187 -0
- data/spec/cassettes/can_get_lists_of_board.yml +187 -0
- data/spec/cassettes/can_get_members_of_board.yml +188 -0
- data/spec/cassettes/can_get_members_of_organization.yml +200 -0
- data/spec/cassettes/can_get_notifications_of_member.yml +199 -0
- data/spec/cassettes/can_get_organization_of_board.yml +189 -0
- data/spec/cassettes/can_get_organizations_of_member.yml +203 -0
- data/spec/cassettes/can_get_plugin_data_of_board.yml +187 -0
- data/spec/cassettes/can_move_all_cards_to_another_list.yml +886 -0
- data/spec/cassettes/can_success_create_a_board.yml +98 -0
- data/spec/cassettes/can_success_create_a_board_with_full_parameters.yml +97 -0
- data/spec/cassettes/can_success_create_a_board_without_clone_from_other.yml +98 -0
- data/spec/cassettes/can_success_create_a_card_when_due_is_datetime.yml +98 -0
- data/spec/cassettes/can_success_create_a_card_when_due_is_time.yml +98 -0
- data/spec/cassettes/can_success_create_a_checklist.yml +102 -0
- data/spec/cassettes/can_success_create_a_custom_field.yml +102 -0
- data/spec/cassettes/can_success_create_a_custom_field_option.yml +102 -0
- data/spec/cassettes/can_success_create_a_label.yml +102 -0
- data/spec/cassettes/can_success_create_a_list.yml +102 -0
- data/spec/cassettes/can_success_create_a_list_with_full_parameters.yml +102 -0
- data/spec/cassettes/can_success_create_a_organization.yml +104 -0
- data/spec/cassettes/can_success_create_a_webhook.yml +102 -0
- data/spec/cassettes/can_success_delete_a_custom_field_option.yml +389 -0
- data/spec/cassettes/can_success_delete_checklist.yml +284 -0
- data/spec/cassettes/can_success_get_card_of_board_by_card_id.yml +188 -0
- data/spec/cassettes/can_success_remove_member_from_board.yml +186 -0
- data/spec/cassettes/can_success_return_all_boards_of_current_user.yml +195 -0
- data/spec/cassettes/can_success_upate_a_board.yml +191 -0
- data/spec/cassettes/can_success_upate_a_list.yml +296 -0
- data/spec/cassettes/can_success_update_bong_a_board.yml +39 -39
- data/spec/cassettes/can_success_update_bong_a_board_with_specific_fields.yml +284 -0
- data/spec/cassettes/can_success_update_bong_a_checklist_with_specific_fields.yml +296 -0
- data/spec/cassettes/can_success_update_bong_a_custom_field.yml +200 -0
- data/spec/cassettes/can_success_update_bong_a_label.yml +200 -0
- data/spec/cassettes/can_success_update_bong_a_list.yml +199 -0
- data/spec/cassettes/can_success_update_bong_a_list_with_specific_fields.yml +296 -0
- data/spec/cassettes/can_success_update_bong_a_organization.yml +203 -0
- data/spec/cassettes/can_success_update_bong_a_webhook.yml +296 -0
- data/spec/cassettes/checklist_can_add_an_item.yml +296 -0
- data/spec/cassettes/checklist_can_update_the_item_state.yml +296 -0
- data/spec/cassettes/checklist_find_with_id_and_get_all_fields.yml +100 -0
- data/spec/cassettes/custom_field_find_with_id_and_get_all_fields.yml +100 -0
- data/spec/cassettes/custom_field_find_with_id_and_get_specific_fields.yml +100 -0
- data/spec/cassettes/custom_field_item_save_1.yml +1 -1
- data/spec/cassettes/custom_field_item_save_2.yml +1 -1
- data/spec/cassettes/custom_field_option_find_with_id.yml +100 -0
- data/spec/cassettes/get_board_of_list.yml +197 -0
- data/spec/cassettes/get_boards_of_member.yml +207 -0
- data/spec/cassettes/label_delete.yml +285 -0
- data/spec/cassettes/label_find_with_id.yml +100 -0
- data/spec/cassettes/list_find_with_id_and_get_all_fields.yml +100 -0
- data/spec/cassettes/list_find_with_id_and_get_specific_fields.yml +100 -0
- data/spec/cassettes/member_find_with_id_and_get_all_fields.yml +101 -0
- data/spec/cassettes/member_find_with_id_and_get_specific_fields.yml +100 -0
- data/spec/cassettes/notification_find_with_id.yml +103 -0
- data/spec/cassettes/organization_find_with_id_and_get_all_fields.yml +102 -0
- data/spec/cassettes/organization_find_with_id_and_get_specific_fields.yml +100 -0
- data/spec/cassettes/token_find_with_token_string.yml +100 -0
- data/spec/cassettes/webhook_delete.yml +286 -0
- data/spec/cassettes/webhook_find_with_id.yml +100 -0
- data/spec/checklist_spec.rb +27 -43
- data/spec/custom_field_item_spec.rb +2 -2
- data/spec/custom_field_option_spec.rb +2 -2
- data/spec/custom_field_spec.rb +25 -13
- data/spec/integration/action/find_spec.rb +23 -0
- data/spec/integration/basic_data/many_spec.rb +4 -0
- data/spec/integration/basic_data/schema_spec.rb +156 -0
- data/spec/integration/board/add_member_spec.rb +21 -0
- data/spec/integration/board/all_spec.rb +20 -0
- data/spec/integration/board/associations/actions_spec.rb +18 -0
- data/spec/integration/board/associations/cards_spec.rb +18 -0
- data/spec/integration/board/associations/checklists_spec.rb +18 -0
- data/spec/integration/board/associations/custom_fields_spec.rb +18 -0
- data/spec/integration/board/associations/label_names_spec.rb +17 -0
- data/spec/integration/board/associations/labels_spec.rb +18 -0
- data/spec/integration/board/associations/lists_spec.rb +18 -0
- data/spec/integration/board/associations/members_spec.rb +18 -0
- data/spec/integration/board/associations/organization_spec.rb +19 -0
- data/spec/integration/board/associations/plugin_data_spec.rb +18 -0
- data/spec/integration/board/create_spec.rb +95 -0
- data/spec/integration/board/find_card_spec.rb +18 -0
- data/spec/integration/board/find_spec.rb +42 -0
- data/spec/integration/board/remove_member_spec.rb +21 -0
- data/spec/integration/board/save_spec.rb +37 -0
- data/spec/integration/board/update!_spec.rb +33 -2
- data/spec/integration/card/associations/plugin_data_spec.rb +1 -1
- data/spec/integration/card/create_spec.rb +36 -2
- data/spec/integration/card/find_spec.rb +1 -1
- data/spec/integration/card/save_spec.rb +2 -2
- data/spec/integration/checklist/add_item_spec.rb +20 -0
- data/spec/integration/checklist/create_spec.rb +23 -0
- data/spec/integration/checklist/delete_spec.rb +17 -0
- data/spec/integration/checklist/find_spec.rb +22 -0
- data/spec/integration/checklist/update!_spec.rb +21 -0
- data/spec/integration/checklist/update_item_state_spec.rb +20 -0
- data/spec/integration/custom_field/association/board_spec.rb +18 -0
- data/spec/integration/custom_field/association/custom_field_options_spec.rb +18 -0
- data/spec/integration/custom_field/create_spec.rb +29 -0
- data/spec/integration/custom_field/find_spec.rb +41 -0
- data/spec/integration/custom_field/update!_spec.rb +25 -0
- data/spec/integration/custom_field_option/create_spec.rb +23 -0
- data/spec/integration/custom_field_option/delete_spec.rb +19 -0
- data/spec/integration/custom_field_option/find_spec.rb +21 -0
- data/spec/integration/label/association/board_spec.rb +18 -0
- data/spec/integration/label/create_spec.rb +23 -0
- data/spec/integration/label/delete_spec.rb +21 -0
- data/spec/integration/label/find_spec.rb +20 -0
- data/spec/integration/label/update!_spec.rb +25 -0
- data/spec/integration/list/archive_all_cards_spec.rb +20 -0
- data/spec/integration/list/associations/actions_spec.rb +18 -0
- data/spec/integration/list/associations/board_spec.rb +18 -0
- data/spec/integration/list/associations/cards_spec.rb +18 -0
- data/spec/integration/list/create_spec.rb +44 -0
- data/spec/integration/list/find_spec.rb +37 -0
- data/spec/integration/list/move_all_cards_spec.rb +31 -0
- data/spec/integration/list/save_spec.rb +40 -0
- data/spec/integration/list/update!_spec.rb +43 -0
- data/spec/integration/member/associations/actions_spec.rb +17 -0
- data/spec/integration/member/associations/boards_spec.rb +18 -0
- data/spec/integration/member/associations/cards_spec.rb +18 -0
- data/spec/integration/member/associations/notifications_spec.rb +18 -0
- data/spec/integration/member/associations/organizations_spec.rb +18 -0
- data/spec/integration/member/find_spec.rb +39 -0
- data/spec/integration/member/update!_spec.rb +18 -0
- data/spec/integration/notification/find_spec.rb +27 -0
- data/spec/integration/organization/associations/actions_spec.rb +18 -0
- data/spec/integration/organization/associations/boards_spec.rb +18 -0
- data/spec/integration/organization/associations/members_spec.rb +18 -0
- data/spec/integration/organization/create_spec.rb +23 -0
- data/spec/integration/organization/find_spec.rb +37 -0
- data/spec/integration/organization/update!_spec.rb +28 -0
- data/spec/integration/token/find_spec.rb +24 -0
- data/spec/integration/webhook/create_spec.rb +27 -0
- data/spec/integration/webhook/delete_spec.rb +21 -0
- data/spec/integration/webhook/find_spec.rb +22 -0
- data/spec/integration/webhook/update!_spec.rb +24 -0
- data/spec/item_spec.rb +2 -2
- data/spec/label_spec.rb +31 -33
- data/spec/list_spec.rb +32 -14
- data/spec/notification_spec.rb +3 -3
- data/spec/organization_spec.rb +6 -5
- data/spec/spec_helper.rb +22 -14
- data/spec/token_spec.rb +10 -11
- data/spec/unit/trello/basic_data_spec.rb +67 -8
- data/spec/unit/trello/board/new_spec.rb +370 -0
- data/spec/unit/trello/board/save_spec.rb +49 -0
- data/spec/unit/trello/board/update_fields_spec.rb +129 -0
- data/spec/unit/trello/board/update_spec.rb +197 -0
- data/spec/unit/trello/member/new_spec.rb +62 -0
- data/spec/unit/trello/member/update_fields_spec.rb +80 -0
- data/spec/unit/trello/schema/attribute/base_spec.rb +349 -0
- data/spec/unit/trello/schema/attribute/board_pref_spec.rb +208 -0
- data/spec/unit/trello/schema/attribute/default_spec.rb +236 -0
- data/spec/unit/trello/schema/attribute_builder_spec.rb +55 -0
- data/spec/unit/trello/schema/attribute_registration_spec.rb +59 -0
- data/spec/unit/trello/schema/serializer/default_spec.rb +19 -0
- data/spec/unit/trello/schema/serializer/time_spec.rb +39 -0
- data/spec/unit/trello/schema_spec.rb +25 -0
- data/spec/webhook_spec.rb +23 -7
- metadata +422 -102
- data/lib/trello/register_attributes.rb +0 -54
- data/spec/integration/basic_data/register_attributes_spec.rb +0 -75
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae677a6fcb06809e76e329d2c56422280e7c6168f9c6951adb615b6e440fe3c5
|
4
|
+
data.tar.gz: 75bc42af47d3dd45252193f58fc120d6cf94d85984764a15e50c6fe4ad1c82da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da8feef2065ee82cb1c0b6ec35d6dd3be9dbca5e498cb1b1068360d985e91c1303c159b7c106b0f2bb0dfce3a109e6997ee19e31033d0e4e0ec22b53ccd5c00d
|
7
|
+
data.tar.gz: 955fe07038772f2419ff85d3eb126f45dc6ee454057aaba7fcbc5cbe240d322832a5eab8ab40082921d3c76f2b23d6e05d31a8737389d737ea56a28d4d75fcc8
|
data/README.md
CHANGED
@@ -16,9 +16,12 @@ to, please just [create an issue](https://github.com/jeremytregunna/ruby-trello/
|
|
16
16
|
|
17
17
|
## Requirements
|
18
18
|
|
19
|
-
Use the newest version for Ruby 2.5.0 or newer support.
|
19
|
+
Use the newest version for Ruby 2.5.0 or newer support. (Ruby 3 only works with ActiveModel 6 for now.)
|
20
|
+
|
20
21
|
Use version 2.2.1 or earlier for Ruby 2.1 ~ 2.4 support.
|
22
|
+
|
21
23
|
Use version 1.3.0 or earlier for Ruby 1.9.3 support.
|
24
|
+
|
22
25
|
Use version 1.4.x or earlier for Ruby 2.0.0 support.
|
23
26
|
|
24
27
|
## Installation
|
@@ -209,6 +212,7 @@ Run tests for each Ruby versions individual
|
|
209
212
|
make test:ruby_2_5
|
210
213
|
make test:ruby_2_6
|
211
214
|
make test:ruby_2_7
|
215
|
+
make test:ruby_3_0
|
212
216
|
make test:jruby_9_2
|
213
217
|
```
|
214
218
|
|
@@ -218,5 +222,12 @@ Do development for each Ruby versions individual
|
|
218
222
|
make dev:ruby_2_5
|
219
223
|
make dev:ruby_2_6
|
220
224
|
make dev:ruby_2_7
|
225
|
+
make dev:ruby_3_0
|
221
226
|
make dev:jruby_9_2
|
222
|
-
```
|
227
|
+
```
|
228
|
+
|
229
|
+
Recreate all Gemfile.lock.*
|
230
|
+
|
231
|
+
```bash
|
232
|
+
make gemfile:refresh
|
233
|
+
```
|
data/lib/trello.rb
CHANGED
@@ -1,12 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'oauth'
|
2
4
|
require 'json'
|
3
5
|
require 'logger'
|
4
6
|
require 'active_model'
|
5
7
|
require 'addressable/uri'
|
8
|
+
require 'active_support/core_ext/hash/indifferent_access'
|
6
9
|
|
7
|
-
# Ruby wrapper around the Trello
|
10
|
+
# Ruby wrapper around the [Trello] API
|
8
11
|
#
|
9
|
-
# First, set up your key information. You can get this information by
|
12
|
+
# First, set up your key information. You can get this information by [clicking here][trello-app-key].
|
10
13
|
#
|
11
14
|
# You can get the key by going to this url in your browser:
|
12
15
|
# https://trello.com/1/authorize?key=TRELLO_CONSUMER_KEY_FROM_ABOVE&name=MyApp&response_type=token&scope=read,write,account&expiration=never
|
@@ -35,7 +38,11 @@ require 'addressable/uri'
|
|
35
38
|
#
|
36
39
|
# And so much more. Consult the rest of the documentation for more information.
|
37
40
|
#
|
38
|
-
# Feel free to
|
41
|
+
# Feel free to [peruse and participate in our Trello board][ruby-trello-board]. It's completely open to the public.
|
42
|
+
#
|
43
|
+
# [trello]: http://trello.com
|
44
|
+
# [trello-app-key]: https://trello.com/app-key
|
45
|
+
# [ruby-trello-board]: https://trello.com/board/ruby-trello/4f092b2ee23cb6fe6d1aaabd
|
39
46
|
module Trello
|
40
47
|
autoload :Error, 'trello/error'
|
41
48
|
autoload :Action, 'trello/action'
|
@@ -70,7 +77,7 @@ module Trello
|
|
70
77
|
autoload :Webhook, 'trello/webhook'
|
71
78
|
autoload :JsonUtils, 'trello/json_utils'
|
72
79
|
autoload :AssociationInferTool, 'trello/association_infer_tool'
|
73
|
-
autoload :
|
80
|
+
autoload :Schema, 'trello/schema'
|
74
81
|
|
75
82
|
module Authorization
|
76
83
|
autoload :AuthPolicy, 'trello/authorization'
|
@@ -80,12 +87,12 @@ module Trello
|
|
80
87
|
|
81
88
|
module AssociationFetcher
|
82
89
|
autoload :HasMany, 'trello/association_fetcher/has_many'
|
83
|
-
autoload :HasOne,
|
90
|
+
autoload :HasOne, 'trello/association_fetcher/has_one'
|
84
91
|
end
|
85
92
|
|
86
93
|
module AssociationBuilder
|
87
94
|
autoload :HasMany, 'trello/association_builder/has_many'
|
88
|
-
autoload :HasOne,
|
95
|
+
autoload :HasOne, 'trello/association_builder/has_one'
|
89
96
|
end
|
90
97
|
|
91
98
|
# Version of the Trello API that we use by default.
|
@@ -128,7 +135,6 @@ module Trello
|
|
128
135
|
|
129
136
|
# Url to token for making authorized requests to the Trello API
|
130
137
|
#
|
131
|
-
# @param [String, #read] contents the contents to reverse
|
132
138
|
# @param options [Hash] Repository information to update
|
133
139
|
# @option options [String] :name Name of the application
|
134
140
|
# @option options [String] :key Application key
|
data/lib/trello/action.rb
CHANGED
@@ -3,20 +3,40 @@ module Trello
|
|
3
3
|
#
|
4
4
|
# @!attribute [r] id
|
5
5
|
# @return [String]
|
6
|
-
# @!attribute [r]
|
6
|
+
# @!attribute [r] creator_id
|
7
7
|
# @return [String]
|
8
8
|
# @!attribute [r] data
|
9
9
|
# @return [Hash]
|
10
|
+
# @!attribute [r] type
|
11
|
+
# @return [String]
|
10
12
|
# @!attribute [r] date
|
11
13
|
# @return [Datetime]
|
12
|
-
# @!attribute [r]
|
14
|
+
# @!attribute [r] limits
|
15
|
+
# @return [Hash]
|
16
|
+
# @!attribute [r] app_creator
|
17
|
+
# @return [String]
|
18
|
+
# @!attribute [r] display
|
19
|
+
# @return [Hash]
|
20
|
+
# @!attribute [w] text
|
13
21
|
# @return [String]
|
14
|
-
# @!attribute [r] member_participant
|
15
|
-
# @return [Object]
|
16
22
|
class Action < BasicData
|
17
|
-
|
18
|
-
|
19
|
-
|
23
|
+
|
24
|
+
schema do
|
25
|
+
# Readonly
|
26
|
+
attribute :id, readonly: true, primary_key: true
|
27
|
+
attribute :creator_id, readonly: true, remote_key: 'idMemberCreator'
|
28
|
+
attribute :data, readonly: true
|
29
|
+
attribute :type, readonly: true
|
30
|
+
attribute :date, readonly: true, serializer: 'Time'
|
31
|
+
attribute :limits, readonly: true
|
32
|
+
attribute :app_creator, readonly: true, remote_key: 'appCreator'
|
33
|
+
attribute :display, readonly: true
|
34
|
+
|
35
|
+
# Writable
|
36
|
+
attribute :text, update_only: true
|
37
|
+
end
|
38
|
+
|
39
|
+
validates_presence_of :id, :type, :date, :creator_id
|
20
40
|
|
21
41
|
class << self
|
22
42
|
# Locate a specific action and return a new Action object.
|
@@ -33,20 +53,6 @@ module Trello
|
|
33
53
|
end
|
34
54
|
end
|
35
55
|
|
36
|
-
# Update the attributes of an action
|
37
|
-
#
|
38
|
-
# Supply a hash of string keyed data retrieved from the Trello API representing
|
39
|
-
# an Action.
|
40
|
-
def update_fields(fields)
|
41
|
-
attributes[:id] = fields['id'] || attributes[:id]
|
42
|
-
attributes[:type] = fields['type'] || attributes[:type]
|
43
|
-
attributes[:data] = fields['data'] || attributes[:data]
|
44
|
-
attributes[:date] = Time.iso8601(fields['date']) rescue nil if fields.has_key?('date')
|
45
|
-
attributes[:member_creator_id] = fields['idMemberCreator'] || attributes[:member_creator_id]
|
46
|
-
attributes[:member_participant] = fields['member'] || attributes[:member_participant]
|
47
|
-
self
|
48
|
-
end
|
49
|
-
|
50
56
|
# Returns the board this action occurred on.
|
51
57
|
def board
|
52
58
|
Board.from_response client.get("/actions/#{id}/board")
|
data/lib/trello/attachment.rb
CHANGED
@@ -1,40 +1,53 @@
|
|
1
1
|
module Trello
|
2
2
|
# A file or url that is linked to a Trello card
|
3
3
|
#
|
4
|
-
# @!attribute id
|
4
|
+
# @!attribute [r] id
|
5
5
|
# @return [String]
|
6
|
-
# @!attribute
|
7
|
-
# @return [String]
|
8
|
-
# @!attribute url
|
9
|
-
# @return [String]
|
10
|
-
# @!attribute pos
|
6
|
+
# @!attribute [r] position
|
11
7
|
# @return [Float]
|
12
|
-
# @!attribute bytes
|
8
|
+
# @!attribute [r] bytes
|
13
9
|
# @return [Fixnum]
|
14
|
-
# @!attribute
|
10
|
+
# @!attribute [r] member_id
|
11
|
+
# @return [String]
|
12
|
+
# @!attribute [r] date
|
15
13
|
# @return [Datetime]
|
16
|
-
# @!attribute is_upload
|
14
|
+
# @!attribute [r] is_upload
|
17
15
|
# @return [Boolean]
|
18
|
-
# @!attribute
|
16
|
+
# @!attribute [r] previews
|
17
|
+
# @return [Array]
|
18
|
+
# @!attribute [r] file_name
|
19
|
+
# @return [String]
|
20
|
+
# @!attribute [r] edge_color
|
21
|
+
# @return [String]
|
22
|
+
# @!attribute [rw] name
|
19
23
|
# @return [String]
|
24
|
+
# @!attribute [rw] url
|
25
|
+
# @return [String]
|
26
|
+
# @!attribute [rw] mime_type
|
27
|
+
# @return [String]
|
28
|
+
# @!attribute [w] file
|
29
|
+
# @return [String]
|
30
|
+
# @!attribute [w] set_as_cover
|
31
|
+
# @return [Boolean]
|
20
32
|
class Attachment < BasicData
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
33
|
+
schema do
|
34
|
+
# Readonly
|
35
|
+
attribute :id, readonly: true, primary_key: true
|
36
|
+
attribute :position, readonly: true, remote_key: 'pos'
|
37
|
+
attribute :bytes, readonly: true
|
38
|
+
attribute :member_id, remote_key: 'idMember', readonly: true
|
39
|
+
attribute :date, serializer: 'Time', readonly: true
|
40
|
+
attribute :is_upload, remote_key: 'isUpload', readonly: true
|
41
|
+
attribute :previews, readonly: true
|
42
|
+
attribute :file_name, remote_key: 'fileName', readonly: true
|
43
|
+
attribute :edge_color, remote_key: 'edgeColor', readonly: true
|
44
|
+
|
45
|
+
# Writable but create only
|
46
|
+
attribute :name, create_only: true
|
47
|
+
attribute :url, create_only: true
|
48
|
+
attribute :mime_type, remote_key: 'mimeType', create_only: true
|
49
|
+
attribute :file, create_only: true
|
50
|
+
attribute :set_as_cover, remote_key: 'setCover', create_only: true
|
38
51
|
end
|
39
52
|
end
|
40
53
|
end
|
data/lib/trello/basic_data.rb
CHANGED
@@ -42,12 +42,21 @@ module Trello
|
|
42
42
|
end
|
43
43
|
end
|
44
44
|
|
45
|
-
def self.
|
46
|
-
|
47
|
-
|
48
|
-
attributes = names_and_options
|
45
|
+
def self.schema(&block)
|
46
|
+
@schema ||= Schema.new
|
47
|
+
return @schema unless block_given?
|
49
48
|
|
50
|
-
|
49
|
+
@schema.instance_eval(&block)
|
50
|
+
|
51
|
+
register_attrs
|
52
|
+
|
53
|
+
@schema
|
54
|
+
end
|
55
|
+
|
56
|
+
def self.register_attrs
|
57
|
+
schema.attrs.values.each do |attribute|
|
58
|
+
attribute.register(self)
|
59
|
+
end
|
51
60
|
end
|
52
61
|
|
53
62
|
def self.one(name, opts = {})
|
@@ -62,16 +71,72 @@ module Trello
|
|
62
71
|
Trello.client
|
63
72
|
end
|
64
73
|
|
65
|
-
register_attributes :id, readonly: [ :id ]
|
66
|
-
|
67
74
|
attr_writer :client
|
68
75
|
|
69
76
|
def initialize(fields = {})
|
70
|
-
|
77
|
+
initialize_fields(fields)
|
78
|
+
end
|
79
|
+
|
80
|
+
def save
|
81
|
+
return update! if id
|
82
|
+
|
83
|
+
payload = {}
|
84
|
+
|
85
|
+
schema.attrs.each do |_, attribute|
|
86
|
+
payload = attribute.build_payload_for_create(attributes, payload)
|
87
|
+
end
|
88
|
+
|
89
|
+
post(collection_path, payload)
|
90
|
+
end
|
91
|
+
|
92
|
+
def update!
|
93
|
+
fail "Cannot save new instance." unless id
|
94
|
+
|
95
|
+
@previously_changed = changes
|
96
|
+
|
97
|
+
payload = {}
|
98
|
+
changed_attrs = attributes.select {|name, _| changed.include?(name.to_s)}
|
99
|
+
|
100
|
+
schema.attrs.each do |_, attribute|
|
101
|
+
payload = attribute.build_payload_for_update(changed_attrs, payload)
|
102
|
+
end
|
103
|
+
|
104
|
+
from_response client.put(element_path, payload)
|
105
|
+
|
106
|
+
@changed_attributes.clear if @changed_attributes.respond_to?(:clear)
|
107
|
+
changes_applied if respond_to?(:changes_applied)
|
108
|
+
|
109
|
+
self
|
71
110
|
end
|
72
111
|
|
73
112
|
def update_fields(fields)
|
74
|
-
|
113
|
+
attrs = {}
|
114
|
+
|
115
|
+
schema.attrs.each do |_, attribute|
|
116
|
+
attrs = attribute.build_pending_update_attributes(fields, attrs)
|
117
|
+
end
|
118
|
+
|
119
|
+
attrs.each do |name, value|
|
120
|
+
send("#{name}=", value)
|
121
|
+
end
|
122
|
+
|
123
|
+
self
|
124
|
+
end
|
125
|
+
|
126
|
+
def collection_path
|
127
|
+
"/#{collection_name}"
|
128
|
+
end
|
129
|
+
|
130
|
+
def element_path
|
131
|
+
"/#{collection_name}/#{id}"
|
132
|
+
end
|
133
|
+
|
134
|
+
def collection_name
|
135
|
+
@collection_path ||= ActiveSupport::Inflector.pluralize(element_name)
|
136
|
+
end
|
137
|
+
|
138
|
+
def element_name
|
139
|
+
@element_name ||= model_name.element
|
75
140
|
end
|
76
141
|
|
77
142
|
# Refresh the contents of our object.
|
@@ -95,5 +160,35 @@ module Trello
|
|
95
160
|
def client
|
96
161
|
@client ||= self.class.client
|
97
162
|
end
|
163
|
+
|
164
|
+
def schema
|
165
|
+
self.class.schema
|
166
|
+
end
|
167
|
+
|
168
|
+
def attributes
|
169
|
+
@__attributes ||= ActiveSupport::HashWithIndifferentAccess.new
|
170
|
+
end
|
171
|
+
|
172
|
+
private
|
173
|
+
|
174
|
+
def attributes=(attrs)
|
175
|
+
@__attributes = attrs
|
176
|
+
end
|
177
|
+
|
178
|
+
def initialize_fields(fields)
|
179
|
+
schema.attrs.each do |_, attribute|
|
180
|
+
self.attributes = attribute.build_attributes(fields, attributes)
|
181
|
+
end
|
182
|
+
|
183
|
+
self
|
184
|
+
end
|
185
|
+
|
186
|
+
def post(path, body)
|
187
|
+
from_response client.post(path, body)
|
188
|
+
end
|
189
|
+
|
190
|
+
def put(path, body)
|
191
|
+
from_response client.put(path, body)
|
192
|
+
end
|
98
193
|
end
|
99
194
|
end
|
data/lib/trello/board.rb
CHANGED
@@ -4,21 +4,100 @@ module Trello
|
|
4
4
|
#
|
5
5
|
# @!attribute [r] id
|
6
6
|
# @return [String]
|
7
|
-
# @!attribute [r]
|
7
|
+
# @!attribute [r] starred
|
8
|
+
# @return [Boolean]
|
9
|
+
# @!attribute [r] pinned
|
10
|
+
# @return [Boolean]
|
11
|
+
# @!attribute [r] url
|
12
|
+
# @return [String]
|
13
|
+
# @!attribute [r] short_url
|
14
|
+
# @return [String]
|
15
|
+
# @!attribute [r] prefs
|
16
|
+
# @return [Hash]
|
17
|
+
# @!attribute [r] last_activity_date
|
18
|
+
# @return [Datetime]
|
19
|
+
# @!attribute [r] description_data
|
20
|
+
# @return [Datetime]
|
21
|
+
# @!attribute [r] enterprise_id
|
22
|
+
# @return [String]
|
23
|
+
# @!attribute [rw] name
|
8
24
|
# @return [String]
|
9
25
|
# @!attribute [rw] description
|
10
26
|
# @return [String]
|
11
|
-
# @!attribute [rw]
|
27
|
+
# @!attribute [rw] organization_id
|
28
|
+
# @return [String]
|
29
|
+
# @!attribute [rw] visibility_level
|
30
|
+
# @return [String]
|
31
|
+
# @!attribute [rw] voting_permission_level
|
32
|
+
# @return [String]
|
33
|
+
# @!attribute [rw] comment_permission_level
|
34
|
+
# @return [String]
|
35
|
+
# @!attribute [rw] invitation_permission_level
|
36
|
+
# @return [String]
|
37
|
+
# @!attribute [rw] enable_self_join
|
12
38
|
# @return [Boolean]
|
13
|
-
# @!attribute [
|
39
|
+
# @!attribute [rw] enable_card_covers
|
40
|
+
# @return [Boolean]
|
41
|
+
# @!attribute [rw] background_color
|
14
42
|
# @return [String]
|
15
|
-
# @!attribute [rw]
|
16
|
-
# @return [String]
|
17
|
-
# @!attribute [
|
18
|
-
# @return [
|
43
|
+
# @!attribute [rw] background_image
|
44
|
+
# @return [String]
|
45
|
+
# @!attribute [rw] card_aging_type
|
46
|
+
# @return [String]
|
47
|
+
# @!attribute [w] use_default_labels
|
48
|
+
# @return [Boolean]
|
49
|
+
# @!attribute [w] use_default_lists
|
50
|
+
# @return [Boolean]
|
51
|
+
# @!attribute [w] source_board_id
|
52
|
+
# @return [String]
|
53
|
+
# @!attribute [w] keep_cards_from_source
|
54
|
+
# @return [String]
|
55
|
+
# @!attribute [w] power_ups
|
56
|
+
# @return [String]
|
57
|
+
# @!attribute [rw] closed
|
58
|
+
# @return [Boolean]
|
59
|
+
# @!attribute [w] subscribed
|
60
|
+
# @return [Boolean]
|
19
61
|
class Board < BasicData
|
20
|
-
|
21
|
-
|
62
|
+
schema do
|
63
|
+
attribute :id, readonly: true, primary_key: true
|
64
|
+
|
65
|
+
# Readonly
|
66
|
+
attribute :starred, readonly: true
|
67
|
+
attribute :pinned, readonly: true
|
68
|
+
attribute :url, readonly: true
|
69
|
+
attribute :short_url, readonly: true, remote_key: 'shortUrl'
|
70
|
+
attribute :prefs, readonly: true, default: {}
|
71
|
+
attribute :last_activity_date, readonly: true, remote_key: 'dateLastActivity', serializer: 'Time'
|
72
|
+
attribute :description_data, readonly: true, remote_key: 'descData'
|
73
|
+
attribute :enterprise_id, readonly: true, remote_key: 'idEnterprise'
|
74
|
+
|
75
|
+
# Writable
|
76
|
+
attribute :name
|
77
|
+
attribute :description, remote_key: 'desc'
|
78
|
+
attribute :organization_id, remote_key: 'idOrganization'
|
79
|
+
attribute :visibility_level, remote_key: 'permissionLevel', class_name: 'BoardPref'
|
80
|
+
attribute :voting_permission_level, remote_key: 'voting', class_name: 'BoardPref'
|
81
|
+
attribute :comment_permission_level, remote_key: 'comments', class_name: 'BoardPref'
|
82
|
+
attribute :invitation_permission_level, remote_key: 'invitations', class_name: 'BoardPref'
|
83
|
+
attribute :enable_self_join, remote_key: 'selfJoin', class_name: 'BoardPref'
|
84
|
+
attribute :enable_card_covers, remote_key: 'cardCovers', class_name: 'BoardPref'
|
85
|
+
attribute :background_color, remote_key: 'background', class_name: 'BoardPref'
|
86
|
+
attribute :background_image, remote_key: 'backgroundImage', class_name: 'BoardPref'
|
87
|
+
attribute :card_aging_type, remote_key: 'cardAging', class_name: 'BoardPref'
|
88
|
+
|
89
|
+
# Writable but for create only
|
90
|
+
attribute :use_default_labels, create_only: true, remote_key: 'defaultLabels'
|
91
|
+
attribute :use_default_lists, create_only: true, remote_key: 'defaultLists'
|
92
|
+
attribute :source_board_id, create_only: true, remote_key: 'idBoardSource'
|
93
|
+
attribute :keep_cards_from_source, create_only: true, remote_key: 'keepFromSource'
|
94
|
+
attribute :power_ups, create_only: true, remote_key: 'powerUps'
|
95
|
+
|
96
|
+
# Writable but for update only
|
97
|
+
attribute :closed, update_only: true
|
98
|
+
attribute :subscribed, update_only: true
|
99
|
+
end
|
100
|
+
|
22
101
|
validates_presence_of :id, :name
|
23
102
|
validates_length_of :name, in: 1..16384
|
24
103
|
validates_length_of :description, maximum: 16384
|
@@ -26,82 +105,12 @@ module Trello
|
|
26
105
|
include HasActions
|
27
106
|
|
28
107
|
class << self
|
29
|
-
# Finds a board.
|
30
|
-
#
|
31
|
-
# @param [String] id Either the board's short ID (an alphanumeric string,
|
32
|
-
# found e.g. in the board's URL) or its long ID (a 24-character hex
|
33
|
-
# string.)
|
34
|
-
# @param [Hash] params
|
35
|
-
#
|
36
|
-
# @raise [Trello::Board] if a board with the given ID could not be found.
|
37
|
-
#
|
38
|
-
# @return [Trello::Board]
|
39
|
-
def find(id, params = {})
|
40
|
-
client.find(:board, id, params)
|
41
|
-
end
|
42
|
-
|
43
|
-
def create(fields)
|
44
|
-
data = {
|
45
|
-
'name' => fields[:name],
|
46
|
-
'desc' => fields[:description],
|
47
|
-
'closed' => fields[:closed] || false,
|
48
|
-
'starred' => fields[:starred] || false }
|
49
|
-
data.merge!('idOrganization' => fields[:organization_id]) if fields[:organization_id]
|
50
|
-
data.merge!('prefs' => fields[:prefs]) if fields[:prefs]
|
51
|
-
client.create(:board, data)
|
52
|
-
end
|
53
|
-
|
54
108
|
# @return [Array<Trello::Board>] all boards for the current user
|
55
109
|
def all
|
56
110
|
from_response client.get("/members/#{Member.find(:me).username}/boards")
|
57
111
|
end
|
58
112
|
end
|
59
113
|
|
60
|
-
def save
|
61
|
-
return update! if id
|
62
|
-
|
63
|
-
fields = { name: name }
|
64
|
-
fields.merge!(desc: description) if description
|
65
|
-
fields.merge!(idOrganization: organization_id) if organization_id
|
66
|
-
fields.merge!(flat_prefs)
|
67
|
-
|
68
|
-
from_response(client.post("/boards", fields))
|
69
|
-
end
|
70
|
-
|
71
|
-
def update!
|
72
|
-
fail "Cannot save new instance." unless self.id
|
73
|
-
|
74
|
-
@previously_changed = changes
|
75
|
-
@changed_attributes.clear if @changed_attributes.respond_to?(:clear)
|
76
|
-
changes_applied if respond_to?(:changes_applied)
|
77
|
-
|
78
|
-
fields = {
|
79
|
-
name: attributes[:name],
|
80
|
-
desc: attributes[:description],
|
81
|
-
closed: attributes[:closed],
|
82
|
-
starred: attributes[:starred],
|
83
|
-
idOrganization: attributes[:organization_id]
|
84
|
-
}
|
85
|
-
fields.merge!(flat_prefs)
|
86
|
-
|
87
|
-
from_response client.put("/boards/#{self.id}/", fields)
|
88
|
-
end
|
89
|
-
|
90
|
-
def update_fields(fields)
|
91
|
-
attributes[:id] = fields['id'] || fields[:id] if fields['id'] || fields[:id]
|
92
|
-
attributes[:name] = fields['name'] || fields[:name] if fields['name'] || fields[:name]
|
93
|
-
attributes[:description] = fields['desc'] || fields[:desc] if fields['desc'] || fields[:desc]
|
94
|
-
attributes[:closed] = fields['closed'] if fields.has_key?('closed')
|
95
|
-
attributes[:closed] = fields[:closed] if fields.has_key?(:closed)
|
96
|
-
attributes[:starred] = fields['starred'] if fields.has_key?('starred')
|
97
|
-
attributes[:starred] = fields[:starred] if fields.has_key?(:starred)
|
98
|
-
attributes[:url] = fields['url'] if fields['url']
|
99
|
-
attributes[:organization_id] = fields['idOrganization'] || fields[:organization_id] if fields['idOrganization'] || fields[:organization_id]
|
100
|
-
attributes[:prefs] = fields['prefs'] || fields[:prefs] || {}
|
101
|
-
attributes[:last_activity_date] = Time.iso8601(fields['dateLastActivity']) rescue nil
|
102
|
-
self
|
103
|
-
end
|
104
|
-
|
105
114
|
# @return [Boolean]
|
106
115
|
def closed?
|
107
116
|
attributes[:closed]
|
@@ -188,28 +197,5 @@ module Trello
|
|
188
197
|
"/boards/#{id}"
|
189
198
|
end
|
190
199
|
|
191
|
-
private
|
192
|
-
|
193
|
-
# On creation
|
194
|
-
# https://trello.com/docs/api/board/#post-1-boards
|
195
|
-
# - permissionLevel
|
196
|
-
# - voting
|
197
|
-
# - comments
|
198
|
-
# - invitations
|
199
|
-
# - selfJoin
|
200
|
-
# - cardCovers
|
201
|
-
# - background
|
202
|
-
# - cardAging
|
203
|
-
#
|
204
|
-
# On update
|
205
|
-
# https://trello.com/docs/api/board/#put-1-boards-board-id
|
206
|
-
# Same as above plus:
|
207
|
-
# - calendarFeedEnabled
|
208
|
-
def flat_prefs
|
209
|
-
separator = id ? "/" : "_"
|
210
|
-
attributes[:prefs].inject({}) do |hash, (pref, v)|
|
211
|
-
hash.merge("prefs#{separator}#{pref}" => v)
|
212
|
-
end
|
213
|
-
end
|
214
200
|
end
|
215
201
|
end
|