Class: Flickr::Group

Inherits:
Object
  • Object
show all
Defined in:
lib/flickr.rb

Overview

Todo: flickr.groups.pools.add flickr.groups.pools.getContext flickr.groups.pools.getGroups flickr.groups.pools.getPhotos flickr.groups.pools.remove

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id_or_params_hash = nil, api_key = nil) ⇒ Group

Returns a new instance of Group.



637
638
639
640
641
642
643
644
645
# File 'lib/flickr.rb', line 637

def initialize(id_or_params_hash=nil, api_key=nil)
  if id_or_params_hash.is_a?(Hash)
    id_or_params_hash.each { |k,v| self.instance_variable_set("@#{k}", v) } # convert extra_params into instance variables
  else
    @id = id_or_params_hash
    @api_key = api_key      
    @client = Flickr.new @api_key
  end
end

Instance Attribute Details

#clientObject (readonly)

, :chatid, :chatcount



635
636
637
# File 'lib/flickr.rb', line 635

def client
  @client
end

#descriptionObject (readonly)

, :chatid, :chatcount



635
636
637
# File 'lib/flickr.rb', line 635

def description
  @description
end

#eighteenplusObject (readonly)

, :chatid, :chatcount



635
636
637
# File 'lib/flickr.rb', line 635

def eighteenplus
  @eighteenplus
end

#idObject (readonly)

, :chatid, :chatcount



635
636
637
# File 'lib/flickr.rb', line 635

def id
  @id
end

#membersObject (readonly)

, :chatid, :chatcount



635
636
637
# File 'lib/flickr.rb', line 635

def members
  @members
end

#nameObject (readonly)

, :chatid, :chatcount



635
636
637
# File 'lib/flickr.rb', line 635

def name
  @name
end

#onlineObject (readonly)

, :chatid, :chatcount



635
636
637
# File 'lib/flickr.rb', line 635

def online
  @online
end

#privacyObject (readonly)

, :chatid, :chatcount



635
636
637
# File 'lib/flickr.rb', line 635

def privacy
  @privacy
end

#urlObject (readonly)

, :chatid, :chatcount



635
636
637
# File 'lib/flickr.rb', line 635

def url
  @url
end

Instance Method Details

#getInfoObject

Implements flickr.groups.getInfo and flickr.urls.getGroup private, once we can call it as needed



649
650
651
652
653
654
655
656
657
658
659
# File 'lib/flickr.rb', line 649

def getInfo
  info = @client.groups_getInfo('group_id'=>@id)['group']
  @name = info['name']
  @members = info['members']
  @online = info['online']
  @privacy = info['privacy']
  # @chatid = info['chatid']
  # @chatcount = info['chatcount']
  @url = @client.urls_getGroup('group_id'=>@id)['group']['url']
  self
end