wunderlist_agent.rb 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. module Agents
  2. class WunderlistAgent < Agent
  3. include FormConfigurable
  4. include Oauthable
  5. valid_oauth_providers :wunderlist
  6. cannot_be_scheduled!
  7. no_bulk_receive!
  8. gem_dependency_check { Devise.omniauth_providers.include?(:wunderlist) }
  9. description <<-MD
  10. The WunderlistAgent creates new Wunderlist tasks based on the incoming event.
  11. #{'## Include the `omniauth-wunderlist` gem in your `Gemfile` and set `WUNDERLIST_OAUTH_KEY` and `WUNDERLIST_OAUTH_SECRET` in your environment to use this Agent' if dependencies_missing?}
  12. To be able to use this Agent you need to authenticate with Wunderlist in the [Services](/services) section first.
  13. MD
  14. def default_options
  15. {
  16. 'list_id' => '',
  17. 'title' => '{{title}}'
  18. }
  19. end
  20. form_configurable :list_id, roles: :completable
  21. form_configurable :title
  22. def complete_list_id
  23. response = request_guard do
  24. HTTParty.get lists_url, request_options
  25. end
  26. response.map { |p| {text: "#{p['title']} (#{p['id']})", id: p['id']}}
  27. end
  28. def validate_options
  29. errors.add(:base, "you need to specify the list you want to add tasks to") unless options['list_id'].present?
  30. errors.add(:base, "you need to specify the title of the task to create") unless options['title'].present?
  31. end
  32. def working?
  33. !recent_error_logs?
  34. end
  35. def receive(incoming_events)
  36. incoming_events.each do |event|
  37. mo = interpolated(event)
  38. title = mo[:title][0..244]
  39. log("Creating new task '#{title}' on list #{mo[:list_id]}", inbound_event: event)
  40. request_guard do
  41. HTTParty.post tasks_url, request_options.merge(body: {title: title, list_id: mo[:list_id].to_i}.to_json)
  42. end
  43. end
  44. end
  45. private
  46. def request_guard(&blk)
  47. response = yield
  48. error("Error during http request: #{response.body}") if response.code > 400
  49. response
  50. end
  51. def lists_url
  52. "https://a.wunderlist.com/api/v1/lists"
  53. end
  54. def tasks_url
  55. "https://a.wunderlist.com/api/v1/tasks"
  56. end
  57. def request_options
  58. {:headers => {'Content-Type' => 'application/json',
  59. 'User-Agent' => 'Huginn (https://github.com/cantino/huginn)',
  60. 'X-Access-Token' => service.token,
  61. 'X-Client-ID' => ENV["WUNDERLIST_OAUTH_KEY"] }}
  62. end
  63. end
  64. end