doctor 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7dcdd7cfd84b7bb6ba7d04a0254c49464442fd34
4
- data.tar.gz: d1a0e88d205b65bc47a4b8649f02c052c2069b84
3
+ metadata.gz: d0778c752ecf7aea89528338be96ecc20ce858f8
4
+ data.tar.gz: d3efb8f07489cd2ab15a781b354b766e650e0597
5
5
  SHA512:
6
- metadata.gz: 54de54f7f1831ffe063bc62d203add92114cd8b9048c3209e19994a80366252fcc168e45f80e9fb26b2b65bc38907c8b8d6e22b1b5d166b87349ef91ec0b3db7
7
- data.tar.gz: 414f78c97a15e2dd4d683a12a6dc2c9c9e685b3a585fde4aa90e312e214e363e004e50a5558ae3fe597dd32d0c3f45a2fbf0f418f9d8a954435b1a8789572930
6
+ metadata.gz: 04af796dedfd5e6d6a543264ce643ac52ec8caf9b8bb6e99eace7f8c79704e1737feea9bfb07f6510bb2544bde06204f7bfb86506f4340e1ff0ec6c0c8023a48
7
+ data.tar.gz: 57009fc3463ee33d175089a15e2c3d2df0fcf037706d82c314ed0991057063b7a0274a07c2e6df28bcfe19ba07d60c827d4e3311c026cb5af9614677d47b2f00
@@ -1,8 +1,11 @@
1
1
  module Doctor
2
2
  class HealthCheckController < ApplicationController
3
3
  def index
4
- result = HealthCheck.new.perform
5
- render json: result, head: :ok
4
+ check_result = HealthCheck.new.perform
5
+
6
+ status = check_result.has_error? ? :internal_server_error : :ok
7
+
8
+ render json: check_result.result, status: status
6
9
  end
7
10
  end
8
11
  end
@@ -6,7 +6,7 @@ module Doctor
6
6
  result[:telnets] = analyze_telnet
7
7
  result[:databases] = analyze_database
8
8
 
9
- result
9
+ OpenStruct.new(result: result, has_error?: has_error?(result))
10
10
  end
11
11
 
12
12
  private
@@ -29,5 +29,17 @@ module Doctor
29
29
 
30
30
  dto_result
31
31
  end
32
+
33
+ def has_error?(result_hash)
34
+ result_hash.values.each do |result_analyze|
35
+ result_analyze.each do |result|
36
+ if !result.status.eql?('ok')
37
+ return true
38
+ end
39
+ end
40
+ end
41
+
42
+ false
43
+ end
32
44
  end
33
45
  end
@@ -1,6 +1,8 @@
1
1
  module Doctor
2
2
  module Dto
3
3
  class DatabaseResultDto
4
+ attr_reader :status
5
+
4
6
  def initialize(data)
5
7
  @status = data[:status]
6
8
  @error_message = data[:error_message] unless data[:error_message].nil?
@@ -1,6 +1,8 @@
1
1
  module Doctor
2
2
  module Dto
3
3
  class TelnetResultDto
4
+ attr_reader :status
5
+
4
6
  def initialize(data)
5
7
  @name = data[:name]
6
8
  @host = data[:host]
@@ -1,3 +1,3 @@
1
1
  module Doctor
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: doctor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
- - Write your name
7
+ - uaiHebert
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
@@ -52,9 +52,11 @@ dependencies:
52
52
  - - '='
53
53
  - !ruby/object:Gem::Version
54
54
  version: 10.5.0
55
- description: " a longer description or delete this line."
55
+ description: With this project you will able to analyse your external resources status.
56
+ You will be able to configure wich database connection to check or all the http
57
+ urls
56
58
  email:
57
- - Write your email address
59
+ - holiveira@estantevirtual.com.br
58
60
  executables: []
59
61
  extensions: []
60
62
  extra_rdoc_files: []
@@ -97,5 +99,5 @@ rubyforge_project:
97
99
  rubygems_version: 2.4.6
98
100
  signing_key:
99
101
  specification_version: 4
100
- summary: Write a short summary, because Rubygems requires one.
102
+ summary: This project will analyse the databases, urls, etc statuses
101
103
  test_files: []