tyme 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.travis.yml +6 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +55 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/bin/tyme +7 -0
- data/lib/tyme.rb +7 -0
- data/lib/tyme/db.rb +32 -0
- data/lib/tyme/last.rb +42 -0
- data/lib/tyme/manager.rb +22 -0
- data/lib/tyme/version.rb +3 -0
- data/tyme.gemspec +38 -0
- metadata +103 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 533a7387fac4999e9e6176d43549e2d33d3715a83555f79b3ddcd1c48024f9a6
|
4
|
+
data.tar.gz: fde3ef4ef12fe2521e97b882b40ce09add610a5079324f6e8695f431ce44f570
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: dfd27b1b427041bbea7a3a38ad7daa393a6fcc33c4d28b899ada83bf2aa3b556abf4947f6e34f3879c968a7ed701a34740aa6a0ff51914dd731e9fbbf89e0188
|
7
|
+
data.tar.gz: 8ef56bfceb5800c3d657003ef9ac53c89f70d564afc5015ae4b4339bb1a4786d77b34ccb3a2ae6d77c29201ae6f51a79b2dc852657ebb1ff3a61d8adaccf03bf
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 Guillaume Virlet
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
Tyme [![Build Status](https://travis-ci.org/doc75/tyme.svg?branch=master)](https://travis-ci.org/doc75/tyme)
|
2
|
+
=======
|
3
|
+
|
4
|
+
# Tyme
|
5
|
+
|
6
|
+
This gem allows to extract information from the `last` command in GNU/Linux system and store the result in a yaml file. For each users it stores the logged-in duration per day.
|
7
|
+
By default is stores the result in `/var/lib/tyme/db.yml` (so you have to run it as root).
|
8
|
+
The file is updated with new date and existing dates are overwritten.
|
9
|
+
|
10
|
+
## Installation
|
11
|
+
|
12
|
+
Add this line to your application's Gemfile:
|
13
|
+
|
14
|
+
```ruby
|
15
|
+
gem 'tyme'
|
16
|
+
```
|
17
|
+
|
18
|
+
And then execute:
|
19
|
+
|
20
|
+
$ bundle
|
21
|
+
|
22
|
+
Or install it yourself as:
|
23
|
+
|
24
|
+
$ gem install tyme
|
25
|
+
|
26
|
+
## Usage
|
27
|
+
|
28
|
+
Either you can launch as root:
|
29
|
+
|
30
|
+
```ruby
|
31
|
+
bin/tyme
|
32
|
+
```
|
33
|
+
|
34
|
+
Or you can use it in your own script:
|
35
|
+
|
36
|
+
```ruby
|
37
|
+
require 'tyme'
|
38
|
+
|
39
|
+
manager = Tyme::Manager.new('path/to/db.yml')
|
40
|
+
manager.run
|
41
|
+
```
|
42
|
+
|
43
|
+
## Development
|
44
|
+
|
45
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
46
|
+
|
47
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
48
|
+
|
49
|
+
## Contributing
|
50
|
+
|
51
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/doc75/tyme.
|
52
|
+
|
53
|
+
## License
|
54
|
+
|
55
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "tyme"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/bin/tyme
ADDED
data/lib/tyme.rb
ADDED
data/lib/tyme/db.rb
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
require 'yaml'
|
2
|
+
|
3
|
+
module Tyme
|
4
|
+
class Db
|
5
|
+
|
6
|
+
# structure
|
7
|
+
# :user
|
8
|
+
def initialize( file = '/var/lib/tyme/db.yml' )
|
9
|
+
@db_file = file
|
10
|
+
@db = {}
|
11
|
+
end
|
12
|
+
|
13
|
+
def add_entry(user,date,duration)
|
14
|
+
load_db
|
15
|
+
@db[user.to_sym] ||= {}
|
16
|
+
@db[user.to_sym][date.to_sym] = duration
|
17
|
+
end
|
18
|
+
|
19
|
+
def save
|
20
|
+
save_db
|
21
|
+
end
|
22
|
+
|
23
|
+
private
|
24
|
+
def load_db
|
25
|
+
@db = YAML.load_file(@db_file) if (@db.empty? && File.exist?(@db_file))
|
26
|
+
end
|
27
|
+
|
28
|
+
def save_db
|
29
|
+
File.open(@db_file, 'w') {|f| f.write @db.to_yaml }
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
data/lib/tyme/last.rb
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
require 'open3'
|
2
|
+
require 'date'
|
3
|
+
|
4
|
+
module Tyme
|
5
|
+
class Last
|
6
|
+
def initialize( last_output = nil )
|
7
|
+
if last_output
|
8
|
+
@stdin = nil
|
9
|
+
@stdout = last_output
|
10
|
+
@stderr = nil
|
11
|
+
else
|
12
|
+
@stdin, @stdout, @stderr = Open3.popen3('last --time-format iso -R | grep tty')
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
def process
|
17
|
+
lines = @stdout.readlines
|
18
|
+
return nil if lines.empty?
|
19
|
+
data = lines.select { |line| not line.include? 'gone' }.map { |line| parse_line(line) }
|
20
|
+
consolidate(data)
|
21
|
+
end
|
22
|
+
|
23
|
+
private
|
24
|
+
def consolidate( data )
|
25
|
+
ret={}
|
26
|
+
data.each do |elt|
|
27
|
+
user = elt[:user]
|
28
|
+
date = elt[:date]
|
29
|
+
ret[user] ||= { date => 0 }
|
30
|
+
ret[user][date] += elt[:duration]
|
31
|
+
end
|
32
|
+
ret
|
33
|
+
end
|
34
|
+
|
35
|
+
def parse_line( line )
|
36
|
+
values = line.scan( /(\S+)\s+tty\d+\s+(\S+)\s+-?\s+\S+\s+\((\d+):(\d+)\)/ )[0]
|
37
|
+
date = DateTime.parse( values[1] ).strftime('%F')
|
38
|
+
{ user: values[0].to_sym, date: date.to_sym, duration: values[2].to_i*60 + values[3].to_i }
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
data/lib/tyme/manager.rb
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'open3'
|
2
|
+
require 'date'
|
3
|
+
|
4
|
+
module Tyme
|
5
|
+
class Manager
|
6
|
+
def initialize( db_path = nil, last_output = nil )
|
7
|
+
@db = db_path ? Db.new(db_path) : Db.new
|
8
|
+
@last = last_output ? Last.new(last_output) : Last.new
|
9
|
+
end
|
10
|
+
|
11
|
+
def run
|
12
|
+
@last.process.each do |user, value|
|
13
|
+
value.each do |date, duration|
|
14
|
+
@db.add_entry( user, date, duration )
|
15
|
+
end
|
16
|
+
end
|
17
|
+
@db.save
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
data/lib/tyme/version.rb
ADDED
data/tyme.gemspec
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "tyme/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "tyme"
|
8
|
+
spec.version = Tyme::VERSION
|
9
|
+
spec.authors = ["Guillaume Virlet"]
|
10
|
+
spec.email = ["github@virlet.org"]
|
11
|
+
|
12
|
+
spec.summary = %q{Store information on logged-in duration of Linux users.}
|
13
|
+
spec.description = %q{This gem extracts information from last command and stores the logged-in duration for each day found.}
|
14
|
+
spec.homepage = "https://github.com/doc75/tyme.git."
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
18
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
19
|
+
if spec.respond_to?(:metadata)
|
20
|
+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
21
|
+
else
|
22
|
+
raise "RubyGems 2.0 or newer is required to protect against " \
|
23
|
+
"public gem pushes."
|
24
|
+
end
|
25
|
+
|
26
|
+
# Specify which files should be added to the gem when it is released.
|
27
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
28
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
29
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
30
|
+
end
|
31
|
+
spec.bindir = "exe"
|
32
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
33
|
+
spec.require_paths = ["lib"]
|
34
|
+
|
35
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
36
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
37
|
+
spec.add_development_dependency "minitest", "~> 5.0"
|
38
|
+
end
|
metadata
ADDED
@@ -0,0 +1,103 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: tyme
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Guillaume Virlet
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-06-03 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.16'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.16'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: minitest
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '5.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '5.0'
|
55
|
+
description: This gem extracts information from last command and stores the logged-in
|
56
|
+
duration for each day found.
|
57
|
+
email:
|
58
|
+
- github@virlet.org
|
59
|
+
executables: []
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- ".gitignore"
|
64
|
+
- ".travis.yml"
|
65
|
+
- Gemfile
|
66
|
+
- LICENSE.txt
|
67
|
+
- README.md
|
68
|
+
- Rakefile
|
69
|
+
- bin/console
|
70
|
+
- bin/setup
|
71
|
+
- bin/tyme
|
72
|
+
- lib/tyme.rb
|
73
|
+
- lib/tyme/db.rb
|
74
|
+
- lib/tyme/last.rb
|
75
|
+
- lib/tyme/manager.rb
|
76
|
+
- lib/tyme/version.rb
|
77
|
+
- tyme.gemspec
|
78
|
+
homepage: https://github.com/doc75/tyme.git.
|
79
|
+
licenses:
|
80
|
+
- MIT
|
81
|
+
metadata:
|
82
|
+
allowed_push_host: https://rubygems.org
|
83
|
+
post_install_message:
|
84
|
+
rdoc_options: []
|
85
|
+
require_paths:
|
86
|
+
- lib
|
87
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
92
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
requirements: []
|
98
|
+
rubyforge_project:
|
99
|
+
rubygems_version: 2.7.6
|
100
|
+
signing_key:
|
101
|
+
specification_version: 4
|
102
|
+
summary: Store information on logged-in duration of Linux users.
|
103
|
+
test_files: []
|