Class: Readiness::Repos::Automations

Inherits:
Client
  • Object
show all
Defined in:
lib/support_readiness/repos/automations.rb

Overview

Defines the class Automations within the module Readiness::Repos.

Author:

  • Jason Colyer

Since:

  • 1.0.12

Class Method Summary collapse

Methods inherited from Client

auth_error, bad_request_error, convert_actions, convert_conditions, convert_standard_names_to_ids, convert_ticket_form_agent_conditions, convert_ticket_form_brands, convert_ticket_form_end_user_conditions, convert_ticket_form_names_to_ids, convert_view_names_to_ids, convert_view_restrictions, covert_ticket_form_field_ids, create_package!, erb_renderer, handle_request_error, not_found_error, not_processible_error, put_into_archive, recursively_deflate_directory, timestamp_filename, to_clean_json, to_clean_json_with_key, to_hash, to_nearly_clean_json, to_nearly_clean_json_with_key, to_param_string, write_entries

Class Method Details

.compare(zendesk_client, location = 'data', verbose = false) ⇒ Hash

Compares the repo automation files to the Zendesk instance automations

Examples:

require 'support_readiness'
config = Readiness::Zendesk::Configuration.new
config.username = 'alice@example.com'
config.token = 'test123abc'
config.url = 'https://example.zendesk.com/api/v2'
client = Readiness::Zendesk::Client.new(config)
diffs = Readiness::Repos::Automations.compare(client, 'automations/data', false)
pp diffs[:updates.count]
# => 5
require 'support_readiness'
config = Readiness::Zendesk::Configuration.new
config.username = 'alice@example.com'
config.token = 'test123abc'
config.url = 'https://example.zendesk.com/api/v2'
client = Readiness::Zendesk::Client.new(config)
diffs = Readiness::Repos::Automations.compare(client, 'automations/data', true)
# => Detailed diff of Status::Close::Close solved tickets after 7 days
# => - @default Repo:
# => false
# =>   @default Zendesk:
# => true
# => Compare report:
# => - Creates: 0
# => - Updates: 1
pp diffs[:updates.count]
# => 1

Parameters:

  • zendesk_client (Object)

    An instance of Zendesk::Client

  • location (String) (defaults to: 'data')

    The location (relative or absolute) of the repo’s data folder

  • verbose (Boolean) (defaults to: false)

    Whether you want a detailed report or not

Returns:

  • (Hash)

Author:

  • Jason Colyer

Since:

  • 1.0.12



50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/support_readiness/repos/automations.rb', line 50

def self.compare(zendesk_client, location = 'data', verbose = false)
  @zendesk_client = zendesk_client
  diffs = {
    updates: [],
    creates: []
  }
  from_repo = gather(location)
  from_zendesk = Zendesk::Automations.list(zendesk_client)
  from_repo.each do |repo|
    zd = from_zendesk.detect { |z| z.title == repo.title }
    if zd.nil?
      diffs[:creates].push(repo)
    else
      comparable = zd.dup
      comparable.id = nil
      comparable.conditions = zd.conditions.sort.to_h
      diffs[:updates].push(update_object(repo, zd)) if to_clean_json(repo) != to_clean_json(comparable)
      detailed_diff(repo, comparable) if verbose && to_clean_json(repo) != to_clean_json(comparable)
    end
  end
  report_diffs(diffs) if verbose
  diffs
end

.convert_managed_content(object) ⇒ Object

Performs conversions for a repo file if using managed content

Parameters:

  • object (Hash)

    The Hash derived from parsing a YAML file

Author:

  • Jason Colyer

Since:

  • 1.0.12



210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# File 'lib/support_readiness/repos/automations.rb', line 210

def self.convert_managed_content(object)
  path = "#{@location}/managed_content/#{object['title']}.md"
  handle_request_error(1, 'Repos', 404, { action: 'Get managed content', id: object['title'] }) unless File.exist?(path)
  object['actions'].each_with_index do |action, index|
    if action['value'].is_a?(String)
      if action['value'] =~ /MANAGED_CONTENT/
        if action['value'] == 'MANAGED_CONTENT'
          object['actions'][index]['value'] = action['value'].gsub('MANAGED_CONTENT', File.read(path).chomp)
        else
          object['actions'][index]['value'] = action['value'].gsub('MANAGED_CONTENT', File.read(path).chomp.gsub("\n", '\\n'))
        end
      end
    elsif action['value'].is_a?(Array)
      action['value'].each_with_index do |value, sub_index|
        if value =~ /MANAGED_CONTENT/
          if value == 'MANAGED_CONTENT'
            object['actions'][index]['value'][sub_index] = value.gsub('MANAGED_CONTENT', File.read(path).chomp)
          else
            object['actions'][index]['value'][sub_index] = value.gsub('MANAGED_CONTENT', File.read(path).chomp.gsub("\n", '\\n'))
          end
        end
      end
    end
  end
  object
end

.convert_managed_webhook(object) ⇒ Object

Performs conversions for a repo file if using managed webhooks

Parameters:

  • object (Hash)

    The Hash derived from parsing a YAML file

Author:

  • Jason Colyer

Since:

  • 1.0.12



243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
# File 'lib/support_readiness/repos/automations.rb', line 243

def self.convert_managed_webhook(object)
  path = "#{@location}/managed_content/#{object['title']}.webhook"
  handle_request_error(1, 'Repos', 404, { action: 'Get managed webhook', id: object['title'] }) unless File.exist?(path)
  object['actions'].each_with_index do |action, index|
    next unless action['value'].is_a?(Array)

    action['value'].each_with_index do |value, sub_index|
      next unless value == 'MANAGED_WEBHOOK'

      converted_value = JSON.parse(File.read(path))
      if converted_value.is_a? Hash
        object['actions'][index]['value'][sub_index] = converted_value.to_json
      else
        object['actions'][index]['value'][sub_index] = converted_value
      end
    end
  end
  object
end

.detailed_diff(repo, zendesk) ⇒ Object

Outputs a comparison report

Parameters:

Author:

  • Jason Colyer

Since:

  • 1.0.12



93
94
95
96
97
98
99
100
101
102
103
104
105
# File 'lib/support_readiness/repos/automations.rb', line 93

def self.detailed_diff(repo, zendesk)
  puts "Detailed diff of #{repo.title}"
  repo.instance_variables.each do |v|
    next if v == :@id

    if repo.instance_variable_get(v) != zendesk.instance_variable_get(v)
      puts "- #{v} Repo:"
      pp repo.instance_variable_get(v)
      puts "  #{v} Zendesk:"
      pp zendesk.instance_variable_get(v)
    end
  end
end

.gather(location = 'data') ⇒ Array

Parses repo automation files

Examples:

require 'support_readiness'
repo = Readiness::Repos::Automations.gather('automations/data')
pp repo.count
# => 35

Parameters:

  • location (String) (defaults to: 'data')

    The location (relative or absolute) of the repo’s data folder

Returns:

  • (Array)

Author:

  • Jason Colyer

Since:

  • 1.0.12



133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# File 'lib/support_readiness/repos/automations.rb', line 133

def self.gather(location = 'data')
  @brands = Readiness::Zendesk::Brands.list(@zendesk_client)
  @categories = Readiness::Zendesk::TriggerCategories.list(@zendesk_client)
  @groups = Readiness::Zendesk::Groups.list(@zendesk_client)
  @schedules = Readiness::Zendesk::Schedules.list(@zendesk_client)
  @satisfaction_reasons = Readiness::Zendesk::SatisfactionReasons.list(@zendesk_client)
  @targets = Readiness::Zendesk::Targets.list(@zendesk_client)
  @ticket_fields = Readiness::Zendesk::TicketFields.list(@zendesk_client)
  @ticket_forms = Readiness::Zendesk::TicketForms.list(@zendesk_client)
  @webhooks = Readiness::Zendesk::Webhooks.list(@zendesk_client)
  @errors = []
  @location = location
  array = []
  Dir["#{@location}/**/*.yaml"].each do |f|
    object = YAML.safe_load_file(f)
    object = convert_managed_content(object) if object['contains_managed_content']
    object = convert_managed_webhook(object) if object['contains_managed_webhook']
    object = convert_standard_names_to_ids(object)
    validity_check(f, object)
    object['id'] = nil
    array.push(Zendesk::Automations.new(object))
  end
  repo_check(array)
  report_errors unless @errors.count.zero?
  array
end

.repo_check(objects) ⇒ Object

Performs basic checks on the repo

Parameters:

  • objects (Array)

    The Array of Hashes derived from parsing the repo files

Author:

  • Jason Colyer

Since:

  • 1.0.12



195
196
197
198
199
200
201
202
# File 'lib/support_readiness/repos/automations.rb', line 195

def self.repo_check(objects)
  duplicate_names = objects.group_by { |o| o.title }.select { |k, v| v.size > 1 }.map(&:first)
  unless duplicate_names.count.zero?
    duplicate_names.each do |d|
      @errors.push("The title '#{d}' is used in multiple files")
    end
  end
end

.report_diffs(diffs) ⇒ Object

Outputs a comparison report

Parameters:

  • diffs (Hash)

    The returned value of compare

Author:

  • Jason Colyer

Since:

  • 1.0.12



80
81
82
83
84
# File 'lib/support_readiness/repos/automations.rb', line 80

def self.report_diffs(diffs)
  puts 'Compare report:'
  puts "- Creates: #{diffs[:creates].count}"
  puts "- Updates: #{diffs[:updates].count}"
end

.report_errorsObject

Outputs an error report and exits with a status code of 1

Author:

  • Jason Colyer

Since:

  • 1.0.12



165
166
167
168
169
170
171
172
# File 'lib/support_readiness/repos/automations.rb', line 165

def self.report_errors
  puts 'The following errors were found in the repo files:'
  @errors.each do |e|
    puts "- #{e}"
  end
  puts 'Rectify the errors and retry. We cannot proceed with those errors occurring.'
  exit 1
end

.update_object(repo, zendesk) ⇒ Object

Creates an instance of Zendesk::Automations to use for updates

Parameters:

Returns:

  • (Object)

Author:

  • Jason Colyer

Since:

  • 1.0.12



115
116
117
118
119
# File 'lib/support_readiness/repos/automations.rb', line 115

def self.update_object(repo, zendesk)
  object = repo
  object.id = zendesk.id
  object
end

.validity_check(file, object) ⇒ Object

Performs basic checks on a repo file

Parameters:

  • file (String)

    The path to the repo file

  • object (Hash)

    The Hash derived from parsing a YAML file

Author:

  • Jason Colyer

Since:

  • 1.0.12



181
182
183
184
185
186
187
# File 'lib/support_readiness/repos/automations.rb', line 181

def self.validity_check(file, object)
  folder = file.split("#{@location}/").last.split('/').first
  @errors.push("Missing position: #{file}") if object['position'].nil?
  @errors.push("Missing title: #{file}") if object['title'].nil?
  @errors.push("Inactive automation in active folder: #{file}") if folder == 'active' && !object['active']
  @errors.push("Active automation in inactive folder: #{file}") if folder == 'inactive' && object['active']
end