Class: FruitToLime::RootModel

Inherits:
Object
  • Object
show all
Includes:
SerializeHelper
Defined in:
lib/fruit_to_lime/model/rootmodel.rb

Overview

The root model for Go import. This class is the container for everything else.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from SerializeHelper

#get_import_rows, #serialize, #serialize_to_file

Constructor Details

#initializeRootModel

Returns a new instance of RootModel.



30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 30

def initialize()
    @settings = Settings.new
    @organizations = []
    @coworkers = []
    @import_coworker = Coworker.new
    @import_coworker.integration_id = "import"
    @import_coworker.first_name = "Import"
    @coworkers.push @import_coworker
    @deals = []
    @notes = []
    @documents = Documents.new
end

Instance Attribute Details

#coworkersObject

Returns the value of attribute coworkers.



9
10
11
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 9

def coworkers
  @coworkers
end

#dealsObject

Returns the value of attribute deals.



9
10
11
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 9

def deals
  @deals
end

#documentsObject (readonly)

Returns the value of attribute documents.



11
12
13
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 11

def documents
  @documents
end

#import_coworkerObject

the import_coworker is a special coworker that is set as responsible for objects that requires a coworker, eg a note.



7
8
9
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 7

def import_coworker
  @import_coworker
end

#notesObject

Returns the value of attribute notes.



9
10
11
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 9

def notes
  @notes
end

#organizationsObject

Returns the value of attribute organizations.



9
10
11
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 9

def organizations
  @organizations
end

#settingsObject

Returns the value of attribute settings.



9
10
11
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 9

def settings
  @settings
end

Instance Method Details

#add_coworker(coworker) ⇒ Object

Adds the specifed coworker object to the model.

Examples:

Add a coworker from a hash

rootmodel.add_coworker({
    :integration_id=>"123",
    :first_name=>"Kalle",
    :last_name=>"Anka",
    :email=>"[email protected]"
})

Add a coworker from a new coworker

coworker = FruitToLime::Coworker.new
coworker.integration_id = "123"
coworker.first_name="Kalle"
coworker.last_name="Anka"
coworker.email = "[email protected]"
rootmodel.add_coworker(coworker)

If you want to keep adding coworkers and dont care about duplicates not being added

begin
   rootmodel.add_coworker(coworker)
rescue FruitToLime::AlreadyAddedError
   puts "Warning: already added coworker"
end

See Also:



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 67

def add_coworker(coworker)
    @coworkers = [] if @coworkers == nil

    if coworker.nil?
        return nil
    end

    coworker = Coworker.new(coworker) if !coworker.is_a?(Coworker)

    if find_coworker_by_integration_id(coworker.integration_id) != nil
        raise AlreadyAddedError, "Already added a coworker with integration_id #{coworker.integration_id}"
    end

    @coworkers.push(coworker)

    return coworker
end

#add_deal(deal) ⇒ Object

Adds the specifed deal object to the model. care about duplicates not being added. Your model might not be saved due to duplicate integration_ids.

begin
   rootmodel.add_deal(deal)
rescue FruitToLime::AlreadyAddedError
   puts "Warning: already added deal"
end

Examples:

Add an deal from a hash

rootmodel.add_deal({
    :integration_id => "123",
    :name => "Big deal",
})

Add a deal from a new deal

deal = FruitToLime::Deal.new
deal.integration_id = "123"
deal.name = "Big deal"
rootmodel.add_deal(deal)

If you want to keep adding deals and dont

See Also:



147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 147

def add_deal(deal)
    @deals = [] if @deals.nil?

    if deal.nil?
        return nil
    end

    deal = Deal.new(deal) if !deal.is_a?(Deal)

    if find_deal_by_integration_id(deal.integration_id) != nil
        raise AlreadyAddedError, "Already added a deal with integration_id #{deal.integration_id}"
    end

    if deal.responsible_coworker.nil?
        deal.responsible_coworker = @import_coworker
    end

    @deals.push(deal)

    return deal
end


210
211
212
213
214
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 210

def add_link(link)
    @documents = Documents.new if @documents == nil

    return @documents.add_link(link)
end

#add_note(note) ⇒ Object

Adds the specifed note object to the model. care about duplicates not being added. Your model might not be saved due to duplicate integration_ids.

begin
   rootmodel.add_deal(deal)
rescue FruitToLime::AlreadyAddedError
   puts "Warning: already added deal"
end

Examples:

Add an deal from a hash

rootmodel.add_note({
    :integration_id => "123",
    :text => "This is a note",
})

Add a note from a new note

note = FruitToLime::Note.new
note.integration_id = "123"
note.text = "Big deal"
rootmodel.add_note(note)

If you want to keep adding deals and dont

See Also:



191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 191

def add_note(note)
    @notes = [] if @notes == nil

    if note.nil?
        return nil
     end

    note = Note.new(note) if !note.is_a?(Note)

    if (!note.integration_id.nil? && note.integration_id.length > 0) &&
            find_note_by_integration_id(note.integration_id) != nil
        raise AlreadyAddedError, "Already added a note with integration_id #{note.integration_id}"
    end

    @notes.push(note)

    return note
end

#add_organization(organization) ⇒ Object

Adds the specifed organization object to the model. care about duplicates not being added. Your model might not be saved due to duplicate integration_ids.

begin
   rootmodel.add_organization(organization)
rescue FruitToLime::AlreadyAddedError
   puts "Warning: already added organization"
end

Examples:

Add an organization from a hash

rootmodel.add_organization({
    :integration_id => "123",
    :name => "Beagle Boys",
})

Add an organization from a new organization

organization = FruitToLime::Organization.new
organization.integration_id = "123"
organization.name = "Beagle Boys"
rootmodel.add_organization(organization)

If you want to keep adding organizations and dont

See Also:



107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 107

def add_organization(organization)
    @organizations = [] if @organizations.nil?

    if organization.nil?
        return nil
    end

    organization = Organization.new(organization) if !organization.is_a?(Organization)

    if find_organization_by_integration_id(organization.integration_id) != nil
        raise AlreadyAddedError, "Already added an organization with integration_id #(organization.integration_id)"
    end

    @organizations.push(organization)

    return organization
end

#find_coworker_by_integration_id(integration_id) ⇒ Object



217
218
219
220
221
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 217

def find_coworker_by_integration_id(integration_id)
    return @coworkers.find do |coworker|
        coworker.integration_id == integration_id
    end
end

#find_deal_by_integration_id(integration_id) ⇒ Object



254
255
256
257
258
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 254

def find_deal_by_integration_id(integration_id)
    return @deals.find do |deal|
        deal.integration_id == integration_id
    end
end

#find_deals_for_organization(organization) ⇒ Object

find deals for organization using Organization#integration_id



244
245
246
247
248
249
250
251
252
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 244

def find_deals_for_organization(organization)
    deals = []

    deals = @deals.select do |deal|
        !deal.customer.nil? && deal.customer.integration_id == organization.integration_id
    end

    return deals
end

#find_note_by_integration_id(integration_id) ⇒ Object



237
238
239
240
241
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 237

def find_note_by_integration_id(integration_id)
    return @notes.find do |note|
        note.integration_id == integration_id
    end
end

#find_organization_by_integration_id(integration_id) ⇒ Object



223
224
225
226
227
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 223

def find_organization_by_integration_id(integration_id)
    return @organizations.find do |organization|
        organization.integration_id == integration_id
    end
end

#find_person_by_integration_id(integration_id) ⇒ Object



229
230
231
232
233
234
235
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 229

def find_person_by_integration_id(integration_id)
    return nil if @organizations.nil?
    @organizations.each do |organization|
        person = organization.find_employee_by_integration_id(integration_id)
        return person if person
    end
end

#sanity_checkObject

Returns a string describing problems with the data. For instance if integration_id for any entity is not unique.



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
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 261

def sanity_check
    error = String.new

    dups = get_integration_id_duplicates(with_non_empty_integration_id(@coworkers))
    dups_error_items = (dups.collect{|coworker| coworker.integration_id}).compact
    if dups.length > 0
        error = "#{error}\nDuplicate coworker integration_id: #{dups_error_items.join(", ")}."
    end

    dups = get_integration_id_duplicates(with_non_empty_integration_id(@organizations))
    dups_error_items = (dups.collect{|org| org.integration_id}).compact
    if dups.length > 0
        error = "#{error}\nDuplicate organization integration_id: #{dups_error_items.join(", ")}."
    end

    dups = get_integration_id_duplicates(with_non_empty_integration_id(@deals))
    dups_error_items = (dups.collect{|deal| deal.integration_id}).compact
    if dups_error_items.length > 0
        error = "#{error}\nDuplicate deal integration_id: #{dups_error_items.join(", ")}."
    end

    persons = @organizations.collect{|o| o.employees}.flatten.compact
    dups = get_integration_id_duplicates(with_non_empty_integration_id(persons))
    dups_error_items = (dups.collect{|person| person.integration_id}).compact
    if dups_error_items.length > 0
        error = "#{error}\nDuplicate person integration_id: #{dups_error_items.join(", ")}."
    end

    dups = get_integration_id_duplicates(with_non_empty_integration_id(@documents.links))
    dups_error_items = (dups.collect{|l| l.integration_id}).compact
    if dups_error_items.length > 0
        error = "#{error}\nDuplicate link integration_id: #{dups_error_items.join(", ")}."
    end

    return error.strip
end

#serialize_nameObject



24
25
26
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 24

def serialize_name
    "GoImport"
end

#serialize_variablesObject



13
14
15
16
17
18
19
20
21
22
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 13

def serialize_variables
    [
     {:id => :settings, :type => :settings},
     {:id => :coworkers, :type => :coworkers},
     {:id => :organizations, :type => :organizations},
     {:id => :deals, :type => :deals},
     {:id => :notes, :type => :notes},
     {:id => :documents, :type => :documents},
    ]
end

#validateObject



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
# File 'lib/fruit_to_lime/model/rootmodel.rb', line 298

def validate()
    error = String.new

    @organizations.each do |o|
        validation_message = o.validate()

        if !validation_message.empty?
            error = "#{error}\n#{validation_message}"
        end
    end

    @deals.each do |deal|
        validation_message = deal.validate

        if !validation_message.empty?
            error = "#{error}\n#{validation_message}"
        end
    end

    @notes.each do |note|
        validation_message = note.validate

        if !validation_message.empty?
            error = "#{error}\n#{validation_message}"
        end
    end

    @documents.links.each do |link|
        validation_message = link.validate
        if !validation_message.empty?
            error = "#{error}\n#{validation_message}"
        end
    end

    return error.strip
end