lib/marvel/client.rb in marvel_api-0.1.2 vs lib/marvel/client.rb in marvel_api-0.1.3

- old
+ new

@@ -10,12 +10,10 @@ class Client include Marvel::Request include Marvel::Connection include Marvel::Configuration - # BASE_URL = 'https://gateway.marvel.com/v1/public/' - def initialize reset end # Requests on the server side must be of the form @@ -23,43 +21,50 @@ # where ts is a timestamp # where apikey is your public API key # where hash is the MD5 hash of the concatenation of # ts, your private API key, and your public API key + # So basic request form for all methods looks like + # Faraday.get("#{BASE_URL}#{path}#{id}#{stub}#{auth}").body + # e.g., get_comics_by_character_id + # Faraday.get("#{BASE_URL}characters/#{id}/comics#{auth}").body + # TODO; MODULARIZE THIS!!! # TODO; Refactor — tons of duplication + # All methods return a Hashie::Mash object + # representation of the original JSON response + # Characters: # fetches lists of characters def get_characters # v1/public/characters end # fetches a single character by id def get_character(id) # v1/public/characters/{characterId} - Faraday.get("#{BASE_URL}characters/#{id}#{auth}").body - # get("characters/#{id}#{auth}") + get("characters/#{id}#{auth}") end # fetches lists of comics filtered by a character id def get_comics_by_character_id(id) # v1/public/characters/{characterId}/comics - Faraday.get("#{BASE_URL}characters/#{id}/comics#{auth}").body + get("characters/#{id}/comics#{auth}") end # fetches lists of events filtered by a character id def get_events_by_character_id(id) # v1/public/characters/{characterId}/events - Faraday.get("#{BASE_URL}characters/#{id}/events#{auth}").body + get("characters/#{id}/events#{auth}") end # fetches lists of stories filtered by a character id def get_stories_by_character_id(id) # v1/public/characters/{characterId}/stories - Faraday.get("#{BASE_URL}characters/#{id}/stories#{auth}").body + get("characters/#{id}/stories#{auth}") end # Comics: # fetches lists of comics @@ -68,35 +73,35 @@ end # fetches a single comic by id def get_comic(id) # v1/public/comics/{comicId} - Faraday.get("#{BASE_URL}comics/#{id}#{auth}").body + get("comics/#{id}#{auth}") end # fetches lists of characters filtered by a comic id def get_characters_by_comic_id(id) # v1/public/comics/{comicId}/characters - Faraday.get("#{BASE_URL}comics/#{id}/characters#{auth}").body + get("comics/#{id}/characters#{auth}") end # fetches lists of creators filtered by a comic id def get_creators_by_comic_id(id) # v1/public/comics/{comicId}/creators - Faraday.get("#{BASE_URL}comics/#{id}/creators#{auth}").body + get("comics/#{id}/creators#{auth}") end # fetches lists of events filtered by a comic id def get_events_by_comic_id(id) # v1/public/comics/{comicId}/events - Faraday.get("#{BASE_URL}comics/#{id}/events#{auth}").body + get("comics/#{id}/events#{auth}") end # fetches lists of stories filtered by a comic id def get_stories_by_comic_id(id) # v1/public/comics/{comicId}/stories - Faraday.get("#{BASE_URL}comics/#{id}/stories#{auth}").body + get("comics/#{id}/stories#{auth}") end # Creators: # fetches lists of creators @@ -105,29 +110,29 @@ end # fetches a single creator by id def get_creator(id) # v1/public/creators/{creatorId} - Faraday.get("#{BASE_URL}creators/#{id}#{auth}").body + get("creators/#{id}#{auth}") end # fetches lists of comics filtered by a creator id def get_comics_by_creator_id(id) # v1/public/creators/{creatorId}/comics - Faraday.get("#{BASE_URL}creators/#{id}/comics#{auth}").body + get("creators/#{id}/comics#{auth}") end # fetches lists of events filtered by a creator id def get_events_by_creator_id(id) # v1/public/creators/{creatorId}/events - Faraday.get("#{BASE_URL}creators/#{id}/events#{auth}").body + get("creators/#{id}/events#{auth}") end # fetches lists of stories filtered by a creator id def get_stories_by_creator_id(id) # v1/public/creators/{creatorId}/stories - Faraday.get("#{BASE_URL}creators/#{id}/stories#{auth}").body + get("creators/#{id}/stories#{auth}") end # Events: # fetches lists of events @@ -136,35 +141,35 @@ end # fetches a single event by id def get_event(id) # v1/public/events/{eventId} - Faraday.get("#{BASE_URL}events/#{id}#{auth}").body + get("events/#{id}#{auth}") end # fetches lists of characters filtered by an event id def get_characters_by_event_id(id) # v1/public/events/{eventId}/characters - Faraday.get("#{BASE_URL}events/#{id}/characters#{auth}").body + get("events/#{id}/characters#{auth}") end # fetches lists of comics filtered by an event id def get_comics_by_event_id(id) # v1/public/events/{eventId}/comics - Faraday.get("#{BASE_URL}events/#{id}/comics#{auth}").body + get("events/#{id}/comics#{auth}") end # fetches lists of creators filtered by an event id def get_creators_by_event_id(id) # v1/public/events/{eventId}/creators - Faraday.get("#{BASE_URL}events/#{id}/creators#{auth}").body + get("events/#{id}/creators#{auth}") end # fetches lists of stories filtered by an event id def get_stories_by_event_id(id) # v1/public/events/{eventId}/stories - Faraday.get("#{BASE_URL}events/#{id}/stories#{auth}").body + get("events/#{id}/stories#{auth}") end # Series: @@ -174,41 +179,41 @@ end # fetches a single comic series by id def get_series_by_id(id) # v1/public/series/{seriesId} - Faraday.get("#{BASE_URL}series/#{id}#{auth}").body + get("series/#{id}#{auth}") end # fetches lists of characters filtered by a series id def get_characters_by_series_id(id) # v1/public/series/{seriesId}/characters - Faraday.get("#{BASE_URL}series/#{id}/characters#{auth}").body + get("series/#{id}/characters#{auth}") end # fetches lists of comics filtered by a series id def get_comics_by_series_id(id) # v1/public/series/{seriesId}/comics - Faraday.get("#{BASE_URL}series/#{id}/comics#{auth}").body + get("series/#{id}/comics#{auth}") end # fetches lists of creators filtered by a series id def get_creators_by_series_id(id) # v1/public/series/{seriesId}/creators - Faraday.get("#{BASE_URL}series/#{id}/creators#{auth}").body + get("series/#{id}/creators#{auth}") end # fetches lists of events filtered by a series id def get_events_by_series_id(id) # v1/public/series/{seriesId}/events - Faraday.get("#{BASE_URL}series/#{id}/events#{auth}").body + get("series/#{id}/events#{auth}") end # fetches lists of stories filtered by a series id def get_stories_by_series_id(id) # v1/public/series/{seriesId}/stories - Faraday.get("#{BASE_URL}series/#{id}/stories#{auth}").body + get("series/#{id}/stories#{auth}") end # Stories: # fetches lists of stories @@ -217,34 +222,34 @@ end # fetches a single comic story by id def get_story(id) # v1/public/stories/{storyId} - Faraday.get("#{BASE_URL}stories/#{id}#{auth}").body + get("stories/#{id}#{auth}") end # fetches lists of characters filtered by a story id def get_characters_by_story_id(id) # v1/public/stories/{storyId}/characters - Faraday.get("#{BASE_URL}stories/#{id}/characters#{auth}").body + get("stories/#{id}/characters#{auth}") end # fetches lists of comics filtered by a story id def get_comics_by_story_id(id) # v1/public/stories/{storyId}/comics - Faraday.get("#{BASE_URL}stories/#{id}/comics#{auth}").body + get("stories/#{id}/comics#{auth}") end # fetches lists of creators filtered by a story id def get_creators_by_story_id(id) # v1/public/stories/{storyId}/creators - Faraday.get("#{BASE_URL}stories/#{id}/creators#{auth}").body + get("stories/#{id}/creators#{auth}") end # fetches lists of events filtered by a story id def get_events_by_story_id(id) # v1/public/stories/{storyId}/events - Faraday.get("#{BASE_URL}stories/#{id}/events#{auth}").body + get("stories/#{id}/events#{auth}") end private def auth \ No newline at end of file