tfa 0.0.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a47ffe6d1cae778068cc94adec9c66b974d97b74
4
+ data.tar.gz: 7ea760fbfc4907cb5768dd8fadb480982a0e9e0c
5
+ SHA512:
6
+ metadata.gz: 95eb720508e0210264bba88b17efa6a83fb563a15db15423158848a14cc8d41e25d0d5a946ca8d5e99263dfbf29b78c7fba083fd5fe7fbddae9dc8f2911efaad
7
+ data.tar.gz: e6ef1edea41a5f18c7fc88aa279242d5917430cd499e7834f47a97e59f46182759dcdce9fe1221117d4a4ab93d420b9809b348ddae23f21808fa94e9a87b9af5
data/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --color
2
+ --warnings
3
+ --require spec_helper
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in in.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 mo khan
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # In
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'tfa'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install tfa
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( https://github.com/mokhan/tfa/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
data/bin/tfa ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'tfa'
4
+
5
+ console = TFA::Console.new
6
+ console.run(ARGV)
@@ -0,0 +1,16 @@
1
+ module TFA
2
+ class AddCommand
3
+ def initialize(storage)
4
+ @storage = storage
5
+ end
6
+
7
+ def run(arguments)
8
+ name = arguments.first
9
+ secret = arguments.last
10
+ @storage.transaction do
11
+ @storage[name] = secret
12
+ end
13
+ "Added #{name}"
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,27 @@
1
+ module TFA
2
+ class Console
3
+ def initialize(filename = "tfa")
4
+ @storage = PStore.new(File.join(Dir.home, ".#{filename}.pstore"))
5
+ end
6
+
7
+ def run(arguments)
8
+ command_name = arguments.first
9
+ command_for(command_name).run(arguments - [command_name])
10
+ end
11
+
12
+ private
13
+
14
+ def command_for(command_name)
15
+ case command_name
16
+ when "add"
17
+ AddCommand.new(@storage)
18
+ when "show"
19
+ ShowCommand.new(@storage)
20
+ when "totp"
21
+ TotpCommand.new(@storage)
22
+ else
23
+ UsageCommand.new(@storage)
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,14 @@
1
+ module TFA
2
+ class ShowCommand
3
+ def initialize(storage)
4
+ @storage = storage
5
+ end
6
+
7
+ def run(arguments)
8
+ name = arguments.last
9
+ @storage.transaction(true) do
10
+ @storage[name]
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,20 @@
1
+ module TFA
2
+ class TotpCommand
3
+ def initialize(storage)
4
+ @storage = storage
5
+ end
6
+
7
+ def run(arguments)
8
+ name = arguments.first
9
+ ::ROTP::TOTP.new(secret_for(name)).now
10
+ end
11
+
12
+ private
13
+
14
+ def secret_for(name)
15
+ @storage.transaction(true) do
16
+ @storage[name]
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,15 @@
1
+ module TFA
2
+ class UsageCommand
3
+ def initialize(storage)
4
+ end
5
+
6
+ def run(arguments)
7
+ <<-MESSAGE
8
+ Try:
9
+ - tfa add develoment <secret>
10
+ - tfa show development
11
+ - tfa totp development
12
+ MESSAGE
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,3 @@
1
+ module TFA
2
+ VERSION = "0.0.1"
3
+ end
data/lib/tfa.rb ADDED
@@ -0,0 +1,8 @@
1
+ require "pstore"
2
+ require "rotp"
3
+ require "tfa/version"
4
+ require "tfa/add_command"
5
+ require "tfa/show_command"
6
+ require "tfa/totp_command"
7
+ require "tfa/usage_command"
8
+ require "tfa/console"
@@ -0,0 +1,28 @@
1
+ module TFA
2
+ describe Console do
3
+ subject { Console.new('testing') }
4
+ let(:secret) { ::ROTP::Base32.random_base32 }
5
+
6
+ describe "#run" do
7
+ context "when adding a key" do
8
+ it "saves a new secret" do
9
+ subject.run(["add", "development", secret])
10
+ expect(subject.run(["show", "development"])).to eql(secret)
11
+ end
12
+ end
13
+
14
+ context "when getting a one time password" do
15
+ it "creates a totp for a certain key" do
16
+ subject.run(["add", "development", secret])
17
+ expect(subject.run(["totp", "development"])).to_not be_nil
18
+ end
19
+ end
20
+
21
+ context "when running an unknown command" do
22
+ it "returns the usage" do
23
+ expect(subject.run([])).to_not be_nil
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,16 @@
1
+ module TFA
2
+ describe ShowCommand do
3
+ subject { ShowCommand.new(storage) }
4
+ let(:storage) { PStore.new(Tempfile.new('blah').path) }
5
+
6
+ it "retrieves the secret associated with the key given" do
7
+ secret = SecureRandom.uuid
8
+ storage.transaction do
9
+ storage['production'] = secret
10
+ end
11
+
12
+ result = subject.run(['production'])
13
+ expect(result).to eql(secret)
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,22 @@
1
+ require "tempfile"
2
+
3
+ module TFA
4
+ describe TotpCommand do
5
+ subject { TotpCommand.new(storage) }
6
+ let(:secret) { ::ROTP::Base32.random_base32 }
7
+ let(:storage) { PStore.new(Tempfile.new('test').path) }
8
+
9
+ before :each do
10
+ storage.transaction do
11
+ storage['development'] = secret
12
+ end
13
+ end
14
+
15
+ describe "#run" do
16
+ it "returns a time based one time password for the authentication secret given" do
17
+ correct_code = ::ROTP::TOTP.new(secret).now
18
+ expect(subject.run(["development"])).to eql(correct_code)
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,79 @@
1
+ # This file was generated by the `rspec --init` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # The generated `.rspec` file contains `--require spec_helper` which will cause this
4
+ # file to always be loaded, without a need to explicitly require it in any files.
5
+ #
6
+ # Given that it is always loaded, you are encouraged to keep this file as
7
+ # light-weight as possible. Requiring heavyweight dependencies from this file
8
+ # will add to the boot time of your test suite on EVERY test run, even for an
9
+ # individual file that may not need all of that loaded. Instead, make a
10
+ # separate helper file that requires this one and then use it only in the specs
11
+ # that actually need it.
12
+ #
13
+ # The `.rspec` file also contains a few flags that are not defaults but that
14
+ # users commonly want.
15
+ #
16
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
17
+ require 'tfa'
18
+ RSpec.configure do |config|
19
+ # The settings below are suggested to provide a good initial experience
20
+ # with RSpec, but feel free to customize to your heart's content.
21
+ =begin
22
+ # These two settings work together to allow you to limit a spec run
23
+ # to individual examples or groups you care about by tagging them with
24
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
25
+ # get run.
26
+ config.filter_run :focus
27
+ config.run_all_when_everything_filtered = true
28
+
29
+ # Many RSpec users commonly either run the entire suite or an individual
30
+ # file, and it's useful to allow more verbose output when running an
31
+ # individual spec file.
32
+ if config.files_to_run.one?
33
+ # Use the documentation formatter for detailed output,
34
+ # unless a formatter has already been configured
35
+ # (e.g. via a command-line flag).
36
+ config.default_formatter = 'doc'
37
+ end
38
+
39
+ # Print the 10 slowest examples and example groups at the
40
+ # end of the spec run, to help surface which specs are running
41
+ # particularly slow.
42
+ config.profile_examples = 10
43
+
44
+ # Run specs in random order to surface order dependencies. If you find an
45
+ # order dependency and want to debug it, you can fix the order by providing
46
+ # the seed, which is printed after each run.
47
+ # --seed 1234
48
+ config.order = :random
49
+
50
+ # Seed global randomization in this process using the `--seed` CLI option.
51
+ # Setting this allows you to use `--seed` to deterministically reproduce
52
+ # test failures related to randomization by passing the same `--seed` value
53
+ # as the one that triggered the failure.
54
+ Kernel.srand config.seed
55
+
56
+ # rspec-expectations config goes here. You can use an alternate
57
+ # assertion/expectation library such as wrong or the stdlib/minitest
58
+ # assertions if you prefer.
59
+ config.expect_with :rspec do |expectations|
60
+ # Enable only the newer, non-monkey-patching expect syntax.
61
+ # For more details, see:
62
+ # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
63
+ expectations.syntax = :expect
64
+ end
65
+
66
+ # rspec-mocks config goes here. You can use an alternate test double
67
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
68
+ config.mock_with :rspec do |mocks|
69
+ # Enable only the newer, non-monkey-patching expect syntax.
70
+ # For more details, see:
71
+ # - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
72
+ mocks.syntax = :expect
73
+
74
+ # Prevents you from mocking or stubbing a method that does not exist on
75
+ # a real object. This is generally recommended.
76
+ mocks.verify_partial_doubles = true
77
+ end
78
+ =end
79
+ end
data/tfa.gemspec ADDED
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'tfa/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "tfa"
8
+ spec.version = TFA::VERSION
9
+ spec.authors = ["mo khan"]
10
+ spec.email = ["mo@mokhan.ca"]
11
+ spec.summary = %q{A CLI to manage your one time passwords.}
12
+ spec.description = %q{A CLI to manage your one time passwords.}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency "rotp"
22
+ spec.add_development_dependency "bundler", "~> 1.6"
23
+ spec.add_development_dependency "rake"
24
+ spec.add_development_dependency "rspec"
25
+ end
metadata ADDED
@@ -0,0 +1,124 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tfa
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - mo khan
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-07-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rotp
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.6'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.6'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: A CLI to manage your one time passwords.
70
+ email:
71
+ - mo@mokhan.ca
72
+ executables:
73
+ - tfa
74
+ extensions: []
75
+ extra_rdoc_files: []
76
+ files:
77
+ - ".gitignore"
78
+ - ".rspec"
79
+ - Gemfile
80
+ - LICENSE.txt
81
+ - README.md
82
+ - Rakefile
83
+ - bin/tfa
84
+ - lib/tfa.rb
85
+ - lib/tfa/add_command.rb
86
+ - lib/tfa/console.rb
87
+ - lib/tfa/show_command.rb
88
+ - lib/tfa/totp_command.rb
89
+ - lib/tfa/usage_command.rb
90
+ - lib/tfa/version.rb
91
+ - spec/lib/console_spec.rb
92
+ - spec/lib/show_command_spec.rb
93
+ - spec/lib/totp_command_spec.rb
94
+ - spec/spec_helper.rb
95
+ - tfa.gemspec
96
+ homepage: ''
97
+ licenses:
98
+ - MIT
99
+ metadata: {}
100
+ post_install_message:
101
+ rdoc_options: []
102
+ require_paths:
103
+ - lib
104
+ required_ruby_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
109
+ required_rubygems_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ requirements: []
115
+ rubyforge_project:
116
+ rubygems_version: 2.2.2
117
+ signing_key:
118
+ specification_version: 4
119
+ summary: A CLI to manage your one time passwords.
120
+ test_files:
121
+ - spec/lib/console_spec.rb
122
+ - spec/lib/show_command_spec.rb
123
+ - spec/lib/totp_command_spec.rb
124
+ - spec/spec_helper.rb