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 = {}) ⇒ Group

Returns a new instance of Group.



685
686
687
688
689
690
691
692
693
# File 'lib/flickr.rb', line 685

def initialize(id_or_params_hash=nil, api_key={})
  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



683
684
685
# File 'lib/flickr.rb', line 683

def client
  @client
end

#descriptionObject (readonly)

, :chatid, :chatcount



683
684
685
# File 'lib/flickr.rb', line 683

def description
  @description
end

#eighteenplusObject (readonly)

, :chatid, :chatcount



683
684
685
# File 'lib/flickr.rb', line 683

def eighteenplus
  @eighteenplus
end

#idObject (readonly)

, :chatid, :chatcount



683
684
685
# File 'lib/flickr.rb', line 683

def id
  @id
end

#membersObject (readonly)

, :chatid, :chatcount



683
684
685
# File 'lib/flickr.rb', line 683

def members
  @members
end

#nameObject (readonly)

, :chatid, :chatcount



683
684
685
# File 'lib/flickr.rb', line 683

def name
  @name
end

#onlineObject (readonly)

, :chatid, :chatcount



683
684
685
# File 'lib/flickr.rb', line 683

def online
  @online
end

#privacyObject (readonly)

, :chatid, :chatcount



683
684
685
# File 'lib/flickr.rb', line 683

def privacy
  @privacy
end

#urlObject (readonly)

, :chatid, :chatcount



683
684
685
# File 'lib/flickr.rb', line 683

def url
  @url
end

Instance Method Details

#getInfoObject

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



697
698
699
700
701
702
703
704
705
706
707
# File 'lib/flickr.rb', line 697

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