dry_runs_controller.rb 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. module Agents
  2. class DryRunsController < ApplicationController
  3. include ActionView::Helpers::TextHelper
  4. def index
  5. @events = if params[:agent_id]
  6. current_user.agents.find_by(id: params[:agent_id]).received_events.limit(5)
  7. elsif params[:source_ids]
  8. Event.where(agent_id: current_user.agents.where(id: params[:source_ids]).pluck(:id))
  9. .order("id DESC").limit(5)
  10. end
  11. render layout: false
  12. end
  13. def create
  14. attrs = agent_params
  15. if agent = current_user.agents.find_by(id: params[:agent_id])
  16. # POST /agents/:id/dry_run
  17. if attrs.present?
  18. attrs.merge!(memory: agent.memory)
  19. type = agent.type
  20. agent = Agent.build_for_type(type, current_user, attrs)
  21. end
  22. else
  23. # POST /agents/dry_run
  24. type = attrs.delete(:type)
  25. agent = Agent.build_for_type(type, current_user, attrs)
  26. end
  27. agent.name ||= '(Untitled)'
  28. if agent.valid?
  29. if event_payload = params[:event]
  30. dummy_agent = Agent.build_for_type('ManualEventAgent', current_user, name: 'Dry-Runner')
  31. dummy_agent.readonly!
  32. event = dummy_agent.events.build(user: current_user, payload: event_payload)
  33. end
  34. @results = agent.dry_run!(event)
  35. else
  36. @results = { events: [], memory: [],
  37. log: [
  38. "#{pluralize(agent.errors.count, "error")} prohibited this Agent from being saved:",
  39. *agent.errors.full_messages
  40. ].join("\n- ") }
  41. end
  42. render layout: false
  43. end
  44. end
  45. end