work_hours_calculator 0.2.0 → 0.3.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 +4 -4
- data/lib/work_hours_calculator/logger.rb +83 -0
- data/lib/work_hours_calculator/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '01250922e8ef25f907d2c9bf9b39da140e432d3089b5f7133c3c63de063bd7e5'
|
4
|
+
data.tar.gz: e1e29fa8dddf4d95c4c64a558dd9ba932f1180adaa65b5bfcee98636bb0f024d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bdadeee003eeee6c5ae9a4bf44519119805e306c61391bbfba1da1ec4e3a5177c1d0d9c5513a9f822fb012435967e22deaff218886624972cdbae71c137f1679
|
7
|
+
data.tar.gz: 644efc89b85c8bc878e720a00e3d1b50eb9031603f64aa91ec68b6d78c257228cb4d315a1f6511f514aa95aed0692e0fc8a18ba0516eef7f11b3baa4046abf10
|
@@ -0,0 +1,83 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "csv"
|
4
|
+
require "date"
|
5
|
+
require "time"
|
6
|
+
module WorkHoursCalculator
|
7
|
+
class InvalidFile < StandardError; end
|
8
|
+
|
9
|
+
class InvalidDir < StandardError; end
|
10
|
+
|
11
|
+
class InvalidRecord < StandardError; end
|
12
|
+
|
13
|
+
class MissingRecord < StandardError; end
|
14
|
+
|
15
|
+
class Logger
|
16
|
+
DEFAULT_LOG_DIR = File.join(Dir.home, "work_hours_logs")
|
17
|
+
LOG_DIR = ENV["WORK_HOURS_LOG_DIR"] || DEFAULT_LOG_DIR
|
18
|
+
|
19
|
+
def self.log_work(description, log_dir = LOG_DIR)
|
20
|
+
raise InvalidRecord, "Description cannot be empty" if description.nil? || description.strip.empty?
|
21
|
+
|
22
|
+
begin
|
23
|
+
Dir.mkdir(log_dir) unless Dir.exist?(log_dir)
|
24
|
+
rescue SystemCallError => e
|
25
|
+
raise InvalidDir, "Failed to create log directory: #{e.message}"
|
26
|
+
end
|
27
|
+
|
28
|
+
log_file = File.join(log_dir, "#{Date.today}.csv")
|
29
|
+
|
30
|
+
begin
|
31
|
+
CSV.open(log_file, "a") do |csv|
|
32
|
+
time = Time.now.strftime("%Y-%m-%d %H:%M:%S")
|
33
|
+
csv << [time, description]
|
34
|
+
end
|
35
|
+
rescue SystemCallError => e
|
36
|
+
raise InvalidFile, "Failed to write to log file: #{e.message}"
|
37
|
+
end
|
38
|
+
|
39
|
+
puts "Logged work: #{Time.now.strftime("%Y-%m-%d %H:%M:%S")} - #{description}"
|
40
|
+
end
|
41
|
+
|
42
|
+
def self.get_hours_from_log(date, log_dir = DEFAULT_LOG_DIR)
|
43
|
+
raise InvalidRecord, "Date cannot be nil" if date.nil?
|
44
|
+
|
45
|
+
log_file = File.join(log_dir, "#{date}.csv")
|
46
|
+
unless File.exist?(log_file)
|
47
|
+
puts "Log file for #{date} not found."
|
48
|
+
exit 1
|
49
|
+
end
|
50
|
+
|
51
|
+
entries = CSV.read(log_file, headers: false).map do |row|
|
52
|
+
{time: Time.parse(row[0]), description: row[1].strip}
|
53
|
+
end
|
54
|
+
|
55
|
+
work_start = entries.find { |entry| entry[:description].downcase != "break" && entry[:description].downcase != "end" }
|
56
|
+
work_end = entries.reverse.find { |entry| entry[:description].downcase == "end" }
|
57
|
+
|
58
|
+
raise MissingRecord, "Work start record not found" if work_start.nil?
|
59
|
+
raise MissingRecord, "Work end record not found" if work_end.nil?
|
60
|
+
|
61
|
+
work_start_time = work_start[:time]
|
62
|
+
work_end_time = work_end[:time]
|
63
|
+
|
64
|
+
breaks = []
|
65
|
+
break_start = nil
|
66
|
+
|
67
|
+
entries.each do |entry|
|
68
|
+
if entry[:description].downcase == "break" || entry[:description].downcase == "end"
|
69
|
+
break_start ||= entry[:time]
|
70
|
+
elsif break_start
|
71
|
+
breaks << [break_start, entry[:time]]
|
72
|
+
break_start = nil
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
{
|
77
|
+
work_start: work_start_time.strftime("%I:%M:%S %p"),
|
78
|
+
work_end: work_end_time.strftime("%I:%M:%S %p"),
|
79
|
+
breaks: breaks.map { |start, end_time| [start.strftime("%I:%M:%S %p"), end_time.strftime("%I:%M:%S %p")] }
|
80
|
+
}
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: work_hours_calculator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gerda Decio
|
@@ -68,6 +68,7 @@ files:
|
|
68
68
|
- lib/work_hours_calculator.rb
|
69
69
|
- lib/work_hours_calculator/calculate.rb
|
70
70
|
- lib/work_hours_calculator/csv_handler.rb
|
71
|
+
- lib/work_hours_calculator/logger.rb
|
71
72
|
- lib/work_hours_calculator/parser.rb
|
72
73
|
- lib/work_hours_calculator/version.rb
|
73
74
|
homepage: https://github.com/gerdadecio/work-hours-calculator-ruby
|