sinatra-hexacta 1.7.15 → 1.7.17

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7aabdd0fb02e996cf538594108b6423a1ba8e784628d48c75419d75ac09413aa
4
- data.tar.gz: 410dda8303a38de19a2296887cf002c59ef38103464461418af3db349e551b0c
3
+ metadata.gz: d01443ebb1b12e1ceb49cbf169aa512cfead5d8cd4115982b1d22e6e15f63497
4
+ data.tar.gz: fc8b3a9171e2fcd4ebac49d3cff5282794620137aefd1a4c988a3e24d9de25f4
5
5
  SHA512:
6
- metadata.gz: b1cdd4b009077b130502881ab36838a5c285c1cb02a4bb2fefdc969f657171b636967ef2d93dd6a8f5139ccce913f8f667d0ff0a9a6f3c3da90848edd39334ba
7
- data.tar.gz: ade57d891f9f39c949fc4cee131f6a29c4d37ac1fbfff728127b98ee3d8ef69fbc61fb915da3453a704ef775dea7a34339fe9ab567e9c7e06188e89af3a6bab2
6
+ metadata.gz: 0d5da392906cdf62184f1b8a3733884981b367f8113cd185d8b036df36697375ed7eedf00395f18587dec8d408d1ae492a4da87e8c07a34f74d7e9e42b1558c6
7
+ data.tar.gz: 17756b64a15a6024be29f234806df72f1741bb08867d55dc49af2c67520a19045ca450e6996010d6f969f2db060ccd8feec7f1652003a581c66dd8f17daaf223
@@ -10,3 +10,4 @@ require_relative 'generalmailnolink'
10
10
  require_relative 'menu'
11
11
  require_relative 'notification'
12
12
  require_relative 'processmanager'
13
+ require_relative 'report_generator'
@@ -0,0 +1,21 @@
1
+ # encoding: utf-8
2
+ class ReportGenerator
3
+
4
+ def build(report_columns,query)
5
+ workbook = RubyXL::Workbook.new
6
+ worksheet = workbook[0]
7
+
8
+ report_columns.each_with_index do |report_column, i|
9
+ worksheet.add_cell(0, i, report_column.name)
10
+ end
11
+
12
+ query.all.each_with_index do |element, x|
13
+ report_columns.each_with_index do |report_column, y|
14
+ worksheet.add_cell(x+1, y, report_column.value(element))
15
+ end
16
+ end
17
+
18
+ IO.copy_stream(workbook.stream, out)
19
+ end
20
+
21
+ end
@@ -5,61 +5,83 @@ module Sinatra
5
5
 
6
6
  @@scheduler = Rufus::Scheduler.new
7
7
 
8
- def schedule_every(time)
8
+ def check_file_locked?(specific_lock_file=nil)
9
+ return false if specific_lock_file.nil?
10
+ f = File.open("/tmp/#{specific_lock_file}", File::CREAT)
11
+ Timeout::timeout(0.001) { f.flock(File::LOCK_EX) }
12
+ f.flock(File::LOCK_UN)
13
+ false
14
+ rescue
15
+ true
16
+ ensure
17
+ unless f.nil?
18
+ f.close
19
+ end
20
+ end
21
+
22
+ def schedule_every(time,specific_lock_file)
9
23
  @@scheduler.every time do
10
- begin
11
- file_path = "/tmp/schedule.lock";
12
- f = File.open(file_path, "w+")
13
- # if file was previosly locked then flock throw a exception
14
- f.flock(File::LOCK_EX)
15
- ten_minutes = 600
16
- # if the process overcome ten minutes, the timeout api throw a exception
17
- Timeout::timeout(ten_minutes) do
18
24
 
19
- begin
20
- yield
21
- rescue StandardError => error
22
- title = error.message.split(':')[0].gsub('#<','');
23
- message = error.backtrace.join(',');
24
- NotificationSender.instance.send_error(nil,title,message)
25
- end
25
+ unless check_file_locked?(specific_lock_file)
26
+ begin
27
+ file_path = specific_lock_file.nil?? "/tmp/schedule.lock" : "/tmp/#{specific_lock_file}";
28
+ f = File.open(file_path, "w+")
29
+ # if file was previosly locked then flock throw a exception
30
+ f.flock(File::LOCK_EX)
31
+ ten_minutes = 600
32
+ # if the process overcome ten minutes, the timeout api throw a exception
33
+ Timeout::timeout(ten_minutes) do
26
34
 
27
- end
28
- ensure
29
- unless f.nil?
30
- f.flock(File::LOCK_UN)
31
- f.close
35
+ begin
36
+ yield
37
+ rescue StandardError => error
38
+ title = error.message.split(':')[0].gsub('#<','');
39
+ message = error.backtrace.join(',');
40
+ NotificationSender.instance.send_error(nil,title,message)
41
+ end
42
+
43
+ end
44
+ ensure
45
+ unless f.nil?
46
+ f.flock(File::LOCK_UN)
47
+ f.close
48
+ end
32
49
  end
33
50
  end
51
+
34
52
  end
35
53
  end
36
54
 
37
- def schedule_at(cron_expression)
55
+ def schedule_at(cron_expression,specific_lock_file)
38
56
  @@scheduler.cron cron_expression do
39
- begin
40
- file_path = "/tmp/schedule.lock";
41
- f = File.open(file_path, "w+")
42
- # if file was previosly locked then flock throw a exception
43
- f.flock(File::LOCK_EX)
44
- ten_minutes = 600
45
- # if the process overcome ten minutes, the timeout api throw a exception
46
- Timeout::timeout(ten_minutes) do
47
57
 
48
- begin
49
- yield
50
- rescue error
51
- title = error.message.split(':')[0].gsub('#<','');
52
- message = error.backtrace.join(',');
53
- NotificationSender.instance.send_error(nil,title,message)
54
- end
58
+ unless check_file_locked?(specific_lock_file)
59
+ begin
60
+ file_path = specific_lock_file.nil?? "/tmp/schedule.lock" : "/tmp/#{specific_lock_file}";
61
+ f = File.open(file_path, "w+")
62
+ # if file was previosly locked then flock throw a exception
63
+ f.flock(File::LOCK_EX)
64
+ ten_minutes = 600
65
+ # if the process overcome ten minutes, the timeout api throw a exception
66
+ Timeout::timeout(ten_minutes) do
55
67
 
56
- end
57
- ensure
58
- unless f.nil?
59
- f.flock(File::LOCK_UN)
60
- f.close
68
+ begin
69
+ yield
70
+ rescue error
71
+ title = error.message.split(':')[0].gsub('#<','');
72
+ message = error.backtrace.join(',');
73
+ NotificationSender.instance.send_error(nil,title,message)
74
+ end
75
+
76
+ end
77
+ ensure
78
+ unless f.nil?
79
+ f.flock(File::LOCK_UN)
80
+ f.close
81
+ end
61
82
  end
62
83
  end
84
+
63
85
  end
64
86
  end
65
87
  end
@@ -76,6 +76,7 @@ function update_html_elements() {
76
76
  }
77
77
  $('body').append('<div aria-labelledby="error" class="modal bounceIn animated" id="error-modal" role="dialog" tabindex="-1"><div class="modal-dialog modal-sm" style="min-width:150px !Important;"><div class="modal-content"><div class="modal-body p-20 text-center"><i class="zmdi zmdi-hc-3x zmdi-alert-polygon c-red"></i></div><div class="modal-footer" style="text-align: center !Important;"><div class="f-900 c-gray">' + error.responseText + '</div></div></div></div></div>');
78
78
  $('#error-modal').modal('show');
79
+ $(this).find(':submit').attr("disabled",false);
79
80
  }
80
81
  });
81
82
  });
@@ -11,8 +11,8 @@
11
11
  a.bgm-blue.c-white #{i}
12
12
  -else
13
13
  li.page-pre
14
- a href="#" onclick="advance_search(#{report.id},#{i-1},'#{format}');" #{i}
14
+ a href="#" onclick="advance_search('#{url}',#{i-1},'#{format}');" #{i}
15
15
  ul.pagination.no-margin style="vertical-align:middle"
16
16
  -if offset < pages -1
17
17
  li.page-last
18
- a onclick="advance_search(#{report.id},#{pages-1},'#{format}');" »
18
+ a onclick="advance_search('#{url}',#{pages-1},'#{format}');" »
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sinatra-hexacta
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.15
4
+ version: 1.7.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marco Zanger
@@ -80,6 +80,20 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: 0.3.1
83
+ - !ruby/object:Gem::Dependency
84
+ name: rubyXL
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 3.4.25
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 3.4.25
83
97
  description: A gem to support general functionality accross all apps
84
98
  email: mzanger@hexacta.com
85
99
  executables: []
@@ -98,6 +112,7 @@ files:
98
112
  - lib/sinatra/extensions/menu.rb
99
113
  - lib/sinatra/extensions/notification.rb
100
114
  - lib/sinatra/extensions/processmanager.rb
115
+ - lib/sinatra/extensions/report_generator.rb
101
116
  - lib/sinatra/handlers/constants.rb
102
117
  - lib/sinatra/handlers/cross_origin.rb
103
118
  - lib/sinatra/handlers/errors.rb