-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrello_backup.rb
128 lines (99 loc) · 2.98 KB
/
trello_backup.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# frozen_string_literal: true
require 'forwardable'
require 'open-uri'
require 'json'
require 'yaml'
require 'fileutils'
require 'pathname'
class Helpers # rubocop:disable Style/Documentation
extend Forwardable
def_delegator :'self.class', :request
def self.config
@config ||= YAML.load_file(File.expand_path('~/.trello_backup.yml'))
end
# https://developer.atlassian.com/cloud/trello/rest/
def self.request(path, params = '')
auth = "key=#{config['developer_public_key']}&" \
"token=#{config['member_token']}"
prefix = 'https://api.trello.com/1/'
url = "#{prefix}#{path}?#{auth}&#{params}"
JSON.parse(URI.open(url).read)
end
# Aus https://github.com/rails/rails/blob/157920aead96865e3135f496c09ace607d5620dc/activestorage/app/models/active_storage/filename.rb#L57
def sanitize_filename(name)
name
.encode(Encoding::UTF_8, invalid: :replace, undef: :replace, replace: '�')
.strip
.tr("\u{202E}%$|:;/\t\r\n\\", '-')
end
def write(json:, to:)
IO.write(to, JSON.pretty_generate(json))
end
end
class Board < Helpers # rubocop:disable Style/Documentation
def initialize(id)
@id = id
end
def self.all
request('members/me/boards').map { |data| Board.new(data['id']) }
end
def dump_to(backup_path)
response = request "boards/#{@id}", 'cards=all&lists=all&checklists=all'
board_path = backup_path / sanitize_filename(response['name'])
FileUtils.mkdir board_path
write json: response, to: "#{board_path}.json"
response['cards'].each do |card|
Card.new(card).dump_to board_path
end
end
end
class Card < Helpers # rubocop:disable Style/Documentation
def initialize(data)
@data = data
end
def dump_to(base_path)
dump_actions_to(base_path)
dump_attachments_to(base_path)
end
private
def dump_attachments_to(base_path)
return unless attachments?
path = card_path base_path
write json: attachment_data, to: path / 'attachments.json'
uploaded_attachments.each do |attachment|
IO.write(path / attachment['name'], URI.open(attachment['url']).read)
end
end
def dump_actions_to(base_path)
return unless comments?
path = card_path base_path
write json: action_data, to: path / 'actions.json'
# https://developer.atlassian.com/cloud/trello/guides/rest-api/rate-limits/
sleep 0.1
end
def attachments?
!@data['badges']['attachments'].zero?
end
def attachment_data
@attachment_data ||= request 'attachments'
end
def comments?
!@data['badges']['comments'].zero?
end
def action_data
request 'actions'
end
def uploaded_attachments
attachment_data.select { |attachment| attachment['isUpload'] }
end
def card_path(base_path)
path = base_path / sanitize_filename(@data['name'])
FileUtils.mkdir_p path
path
end
def request(sub_resource)
super "cards/#{@data['id']}/#{sub_resource}"
end
end
backup_path = Pathname.new Dir.pwd
Board.all.each { |board| board.dump_to backup_path }