class Learndot::Events

Public Class Methods

new(api) click to toggle source
# File lib/learndot/events.rb, line 2
def initialize(api)
  @api = api
end

Public Instance Methods

enrolled(class_id) click to toggle source
# File lib/learndot/events.rb, line 51
def enrolled(class_id)
  sessions = @api.search(:course_session, { 'eventId' => [class_id] })
  return [] if sessions.empty?

  conditions = {
    'id'     => sessions.collect { | k, cs | cs['enrolmentId'] },
    'status' => ['TENTATIVE', 'APPROVED', 'CONFIRMED']
  }
  enrollments = @api.search(:enrolment, conditions)
  return [] if enrollments.empty?

  conditions = {
    'id'     => enrollments.collect { | k, cs | cs['contactId'] },
  }
  contacts = @api.search(:contact, conditions)

  contacts.collect do | k, cs |
    { :id => cs['id'], :name => cs['_displayName_'], :email => cs['email'] }
  end
end
enrollment_count(class_id) click to toggle source
# File lib/learndot/events.rb, line 36
def enrollment_count(class_id)
  sessions = @api.search(:course_session, { 'eventId' => [class_id] })

  if ! sessions.empty?
    enrolment_ids         = sessions.collect { | k, cs | cs['enrolmentId'] }
    enrollment_conditions = {
      'id'     => enrolment_ids,
      'status' => ['TENTATIVE', 'APPROVED', 'CONFIRMED']
    }
    count = @api.count('enrolment', enrollment_conditions)
  end

  return count || 0
end
retrieve(conditions, options = {orderBy: 'startTime', asc: true}) click to toggle source
# File lib/learndot/events.rb, line 6
def retrieve(conditions, options = {orderBy: 'startTime', asc: true})
  classes = @api.search(:course_event, conditions, options)
  
  return [] if classes.empty?

  course_ids    = classes.collect { | k, c | c['courseId']    }.uniq
  location_ids  = classes.collect { | k, c | c['locationId']  }.uniq
  organizer_ids = classes.collect { | k, c | c['organizerId'] }.uniq

  courses    = @api.search(:course,   { 'id' => course_ids    })
  locations  = @api.search(:location, { 'id' => location_ids  })
  organizers = @api.search(:contact,  { 'id' => organizer_ids })

  classes.collect do | class_id, klass |
    location = locations[klass['locationId']]

    klass[:learndot_id]      = klass['id'] # for consistency
    klass[:city]             = location['online'] ? location['name'] : location['address']['city']
    klass[:course_name]      = courses[klass['courseId']]['name']
    klass[:organizer]        = organizers[klass['organizerId']] ? organizers[klass['organizerId']]['_displayName_'] : ''
    klass[:enrollment_count] = enrollment_count(class_id)
    klass[:start_time]       = Date.parse(klass['startTime'])
    klass[:end_time]         = Date.parse(klass['finalEndTime'])
    klass[:notes]            = klass['notes']
    klass[:session_url]      = klass['sessionUrl']

    klass
  end
end
update_notes(class_id, notes) click to toggle source
# File lib/learndot/events.rb, line 72
def update_notes(class_id, notes)
  conditions = { 'notes' => notes }
  @api.update(:course_event, conditions, class_id)
end