This repository was archived by the owner on Apr 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathbatchbook.rb
More file actions
487 lines (381 loc) · 12.2 KB
/
batchbook.rb
File metadata and controls
487 lines (381 loc) · 12.2 KB
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
require 'rubygems'
require 'active_resource'
# Ruby lib for working with the BatchBook's API's XML interface. Set the account
# name and authentication token, using the Batchbook API Key found in your
# account settings, and you're ready to roll.
#
# http://demo.batchbook.com
# BatchBook.account = 'demo'
# BatchBook.token = 'XYZ'
#
#
module BatchBook
VERSION = '1.0.5'
class Error < StandardError; end
class << self
attr_accessor :host_format, :site_format, :domain_format, :protocol, :path
attr_reader :account, :token
# Sets the account name, and updates all the resources with the new domain.
def account=(name)
resources.each do |r|
r.site = r.site_format % (host_format % [protocol, domain_format % name, path])
end
@account = name
end
# Sets the Batchbook API Key for all resources.
def token=(value)
resources.each do |r|
r.user = value
end
end
def site=(value)
resources.each do |r|
r.site = value
end
end
def resources
@resources ||= []
end
end
self.host_format = '%s://%s/%s'
self.domain_format = '%s.batchbook.com'
self.path = 'service'
self.protocol = 'https'
class Base < ActiveResource::Base
@proxy = ''
@timeout = 15
def self.inherited(base)
BatchBook.resources << base
class << base
attr_accessor :site_format
end
base.site_format = '%s'
self.format = ActiveResource::Formats::XmlFormat
super
end
end
class Activities < Base
def self.recent
self.find(:all, :from => :recent)
end
end
class Affiliation < Base
end
class Person < Base
#http://developer.batchblue.com/people.html
def tags
Tag.find(:all, :params => {:contact_id => id})
end
def locations
self.get('locations')
end
def location label
raise Error, "Location label not specified. Usage: person.location('label_name')" unless label
self.get('locations', :label => label)
end
# Add a Location to a Person
# POST https://test.batchbook.com/service/people/#{id}/locations.xml
# Field Description
# location[label] Location Name ('work', 'home', etc.) - REQUIRED
# location[email] Email Address
# location[website] Website URL
# location[phone] Phone Number
# location[cell] Cell Phone Number
# location[fax] Fax Number
# location[street_1] Street Address
# location[street_2] Street Address 2
# location[city] City
# location[state] State
# location[postal_code] Postal Code
# location[country] Country
def add_location(params = {})
params.update(:label => 'home') unless params[:label].present?
location = Location.new(params)
location.person = self
location.save
end
class Location < Base
def person=(person)
self.prefix_options[:person_id] = person.id
end
end
def supertags
self.get('super_tags')
end
def supertag name
raise Error, "SuperTag name not specified. Usage: person.supertag('tag_name')" unless name
self.get('super_tags', :name => name)
end
#TODO : Fix supertags
# Add a SuperTag to a Person
#
# Add a SuperTag to a Person the same way you add a regular tag to it, via PUT https://test.batchbook.com/service/people/#{id}/add_tag/#{super_tag_name}.xml.
# Remove a SuperTag from a Person
# DELETE https://test.batchbook.com/service/people/#{id}/super_tags/#{super_tag_name}.xml
def add_supertag name, params = {}
raise Error, "Tag name not specified. Usage: person.add_supertag('tag_name')" unless name
self.put(:add_tag, :tag => name)
unless params.empty?
self.put("super_tags/#{name.gsub(/ /, '%20')}", :super_tag => params)
end
end
def add_tag name
raise Error, "Tag name not specified. Usage: person.add_tag('tag_name')" unless name
self.put(:add_tag, :tag => name)
end
def add_tags names = []
raise Error, "Tag name not specified. Usage: person.add_tag('tag_name')" unless names
self.put(:add_tag, :tags => names)
end
def remove_tag name
raise Error, "Tag name not specified. Usage: person.remove_tag('tag_name')" unless name
self.delete(:remove_tag, :tag => name)
end
def comments(scope = :all)
Comment.find(scope, :params => {:person_id => self.id})
end
def comment(id)
comments(id)
end
def affiliations
Affiliation.find(:all, :params => {:person_id => self.id})
end
def communications
Communication.find(:all, :params => {:person_id => self.id})
end
def todos
Todo.find(:all, :params => {:person_id => self.id})
end
end
class Company < Base
def tags
Tag.find(:all, :params => {:contact_id => id})
end
def locations
self.get('locations')
end
def location label
raise Error, "Location label not specified. Usage: person.location('label_name')" unless label
self.get('locations', :label => label)
end
def supertags
self.get('super_tags')
end
def supertag name
raise Error, "SuperTag name not specified. Usage: person.supertag('tag_name')" unless name
self.get('super_tags', :name => name)
end
def add_supertag name, params = {}
raise Error, "Tag name not specified. Usage: person.add_supertag('tag_name')" unless name
self.put(:add_tag, :tag => name)
unless params.empty?
self.put("super_tags/#{name.gsub(/ /, '%20')}", :super_tag => params)
end
end
def add_tag name
raise Error, "Tag name not specified. Usage: person.add_tag('tag_name')" unless name
self.put(:add_tag, :tag => name)
end
def add_tags names = []
raise Error, "Tag name not specified. Usage: person.add_tag('tag_name')" unless names
self.put(:add_tag, :tags => names)
end
def remove_tag name
raise Error, "Tag name not specified. Usage: person.remove_tag('tag_name')" unless name
self.delete(:remove_tag, :tag => name)
end
def comments(scope = :all)
Comment.find(scope, :params => {:company_id => self.id})
end
def comment(id)
comments(id)
end
def people
Person.find(:all, :params => {:company_id => self.id})
# self.get(:people)
end
def affiliations
Affiliation.find(:all, :params => {:company_id => self.id})
end
def communications
Communication.find(:all, :params => {:company_id => self.id})
end
def todos
Todo.find(:all, :params => {:company_id => self.id})
end
end
class Todo < Base
def tags
Tag.find(:all, :params => {:todo_id => id})
end
def add_tag name
raise Error, "Tag name not specified. Usage: todo.add_tag('tag_name')" unless name
self.put(:add_tag, :tag => name)
end
def remove_tag name
raise Error, "Tag name not specified. Usage: todo.remove_tag('tag_name')" unless name
self.delete(:remove_tag, :tag => name)
end
def comments(scope = :all)
Comment.find(scope, :params => {:todo_id => self.id})
end
def comment(id)
comments(id)
end
def add_related_contact(contact_id)
raise Error, "Contact not specified. Usage: deal.add_contact(50)" unless contact_id
self.put(:add_related_contact, :contact_id => contact_id)
end
def remove_related_contact(contact_id)
raise Error, "Contact not specified. Usage: deal.add_contact(50)" unless contact_id
self.delete(:remove_related_contact, :contact_id => contact_id)
end
end
class Deal < Base
def tags
Tag.find(:all, :params => {:deal_id => id})
end
def add_tag name
raise Error, "Tag name not specified. Usage: deal.add_tag('tag_name')" unless name
self.put(:add_tag, :tag => name)
end
def add_tags names = []
raise Error, "Tag name not specified. Usage: person.add_tag('tag_name')" unless names
self.put(:add_tag, :tags => names)
end
def remove_tag name
raise Error, "Tag name not specified. Usage: deal.remove_tag('tag_name')" unless name
self.delete(:remove_tag, :tag => name)
end
def comments(scope = :all)
Comment.find(scope, :params => {:deal_id => self.id})
end
def comment(id)
comments(id)
end
def contacts
Person.find(:all, :params => {:deal_id => self.id})
end
def add_related_contact(contact_id)
raise Error, "Contact not specified. Usage: deal.add_contact(50)" unless contact_id
self.put(:add_related_contact, :contact_id => contact_id)
end
def remove_related_contact(contact_id)
raise Error, "Contact not specified. Usage: deal.add_contact(50)" unless contact_id
self.delete(:remove_related_contact, :contact_id => contact_id)
end
def statuses
self.get(:statuses)
end
def supertags
self.get('super_tags')
end
def supertag name
raise Error, "SuperTag name not specified. Usage: person.supertag('tag_name')" unless name
self.get('super_tags', :name => name)
end
def add_supertag name, params = {}
raise Error, "Tag name not specified. Usage: person.add_supertag('tag_name')" unless name
self.put(:add_tag, :tag => name)
unless params.empty?
self.put("super_tags/#{name.gsub(/ /, '%20')}", :super_tag => params)
end
end
end
class Communication < Base
def tags
Tag.find(:all, :params => {:communication_id => id})
end
def add_tag name
raise Error, "Tag name not specified. Usage: communication.add_tag('tag_name')" unless name
self.put(:add_tag, :tag => name)
end
def remove_tag name
raise Error, "Tag name not specified. Usage: communication.remove_tag('tag_name')" unless name
self.delete(:remove_tag, :tag => name)
end
def comments(scope = :all)
Comment.find(scope, :params => {:communication_id => self.id})
end
def comment(id)
comments(id)
end
end
class Comment < Base
def initialize(attributes = {})
if(attributes[:comment])
attributes[:comment] = {:comment => attributes[:comment]}
end
super(attributes)
end
def communication
Communication.find(self.prefix_options[:communication_id])
end
def communication=(communication)
self.prefix_options[:communication_id] = communication.id
end
def company
Company.find(self.prefix_options[:company_id])
end
def company=(company)
self.prefix_options[:company_id] = company.id
end
def deal
Deal.find(self.prefix_options[:deal_id])
end
def deal=(deal)
self.prefix_options[:deal_id] = deal.id
end
def list
List.find(self.prefix_options[:list_id])
end
def list=(list)
self.prefix_options[:list_id] = list.id
end
def person
Person.find(self.prefix_options[:person_id])
end
def person=(person)
self.prefix_options[:person_id] = person.id
end
def todo
Todo.find(self.prefix_options[:todo_id])
end
def todo=(todo)
self.prefix_options[:todo_id] = todo.id
end
end
class List < Base
def comments(scope = :all)
Comment.find(scope, :params => {:list_id => self.id})
end
def comment(id)
comments(id)
end
end
class Tag < Base
end
class Location < Base
end
class SuperTag < Base
end
class Record < Base
end
class User < Base
end
end
__END__
require 'batchbook'
BatchBook.account = 'devo'
BatchBook.token = 'xyZ'
search_by_name = BatchBook::Person.find(:all, :params => {:name => 'will'} )
search_by_email = BatchBook::Person.find(:all, :params => {:email => will@batchblue.com})
person = BatchBook::Person.find 1937
person.last_name = 'new last name'
person.save
new_person = BatchBook::Person.new :first_name => 'will', :last_name => 'larson', :title => 'dev'
new_person.save
new_person_comment = BatchBook.Comment.new :comment => 'Best comment ever'
new_person_comment.person = new_person
new_person_comment.save
assert new_person.comments.include? new_person_comment