Sha256: 55ee69e6248b12f76caf76c479216e80561ec10e0585e852908b66a915f375bc

Contents?: true

Size: 1.57 KB

Versions: 4

Compression:

Stored size: 1.57 KB

Contents

module Facebooker
  class Admin
    def initialize(session)
      @session = session
    end
    
    # ** BETA ***
    # +properties+: Hash of properties you want to set
    def set_app_properties(properties)
      properties = properties.respond_to?(:to_json) ? properties.to_json : properties
      (@session.post 'facebook.admin.setAppProperties', :properties => properties) == '1'
    end
    
    # ** BETA ***
    # +properties+: Hash of properties you want to view.
    def get_app_properties(*properties)
      json = @session.post('facebook.admin.getAppProperties', :properties => properties.to_json)
      hash = JSON.parse(CGI.unescapeHTML(json))
      @properties = ApplicationProperties.from_hash(hash)
    end
    
    # ** BETA ***
    # +restrictions+: Hash of restrictions you want to set.
    def set_restriction_info(restrictions)
      restrictions = restrictions.respond_to?(:to_json) ? restrictions.to_json : restrictions
      (@session.post 'facebook.admin.setRestrictionInfo', :restriction_str => restrictions) == '1'
    end
    
    # ** BETA ***
    def get_restriction_info(*restrictions)
      json = @session.post('facebook.admin.getRestrictionInfo')
      hash = JSON.parse(CGI.unescapeHTML(json))
      @restrictions = ApplicationRestrictions.from_hash(hash)
    end
  
    # Integration points include..
    #   :notifications_per_day, :requests_per_day, :emails_per_day, :email_disable_message_location
    def get_allocation(integration_point)
      @session.post('facebook.admin.getAllocation', :integration_point_name => integration_point.to_s).to_i
    end    
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
mmangino-facebooker-1.0.14 lib/facebooker/admin.rb
mmangino-facebooker-1.0.15 lib/facebooker/admin.rb
mmangino-facebooker-1.0.16 lib/facebooker/admin.rb
facebooker-1.0.13 lib/facebooker/admin.rb