Sha256: f0271e17a8ede89dedb8d17ad3c331eb7dbf5a5178db8323625d55f9284720e5

Contents?: true

Size: 1.27 KB

Versions: 11

Compression:

Stored size: 1.27 KB

Contents

module Gowalla
  module Flags

    # Retrieve a list of flags
    #
    # @return [<Hashie::Mash>] Flag info
    def list_flags(options={})
      connection.get("/flags").body.flags
    end

    # Retrieve information about a particular flag
    #
    # @param [Integer] flag_id Flag ID
    # @return [Hashie::Mash] Flag info
    def flag(flag_id)
      connection.get("/flags/#{flag_id}").body
    end

    # Retrieve a list of flags for a particular spot
    # WARNING: This method uses calls not officially supported by Gowalla.
    #
    # @param [Integer] spot_id Spot ID
    # @return [Hashie::Mash] Array of Flags
    def spot_flags(spot_id)
      connection.get("/spots/#{spot_id}/flags").body.flags
    end

    # Create a flag on a particular spot (Reports a problem to Gowalla)
    # WARNING: This method uses calls not officially supported by Gowalla.
    #
    # @param [String] flag_type Type of flag to create: invalid,duplicate,mislocated,venue_closed,inaccurate_information
    # @param [String] description Description of the problem
    def flag_spot(spot_id, flag_type, description)
      response = connection.post do |req|
        req.url "/spots/#{spot_id}/flags/#{flag_type}"
        req.body = {:description => description}
      end
      response.body
    end

  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
gowalla-0.5.8 lib/gowalla/flags.rb
gowalla-0.5.7 lib/gowalla/flags.rb
gowalla-0.5.6 lib/gowalla/flags.rb
gowalla-0.5.5 lib/gowalla/flags.rb
gowalla-0.5.4 lib/gowalla/flags.rb
gowalla-0.5.3 lib/gowalla/flags.rb
gowalla-0.5.2 lib/gowalla/flags.rb
gowalla-0.5.1 lib/gowalla/flags.rb
gowalla-0.4.2 lib/gowalla/flags.rb
gowalla-0.4.1 lib/gowalla/flags.rb
gowalla-0.4.0 lib/gowalla/flags.rb