ruboty-kanjo 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 94f52aa724a6748935c8a8864eee93b941c1c03d
4
+ data.tar.gz: b12af63a2675dec4f218b269ba97ef0d48039cec
5
+ SHA512:
6
+ metadata.gz: 23ed9e548c954598e1a399e8153a547d913a66d64f1a6bc4f741a2423b179be867709f3bc715b2e4f08951718c47766c25176854c87caee2214d7409d3158bd7
7
+ data.tar.gz: 68ae94550d2a88965525303939970f8e52f88c5950881e56cd2f4f9a2f5fdde3e1b58e65f9dd6e3e5bf7584627b91d5a513b1d6d608d5396e73dddcfe03be039
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.1
5
+ before_install: gem install bundler -v 1.13.6
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ruboty-kanjo.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Sho Kusano
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.
@@ -0,0 +1,37 @@
1
+ # Ruboty::Kanjo
2
+
3
+ Provides get pricing operations for ruboty.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'ruboty-kanjo'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ ## Usage
18
+
19
+ ```
20
+ ruboty kanjo aws - fetch pricing by AWS
21
+ ```
22
+
23
+ ## Development
24
+
25
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
26
+
27
+ 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).
28
+
29
+ ## Contributing
30
+
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/zeny-io/ruboty-kanjo.
32
+
33
+
34
+ ## License
35
+
36
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
37
+
@@ -0,0 +1,6 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task default: :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'ruboty/kanjo'
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
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,12 @@
1
+ require 'ruboty/kanjo'
2
+ require 'ruboty/kanjo/actions/aws'
3
+
4
+ module Ruboty::Handlers
5
+ class Kanjo < Ruboty::Handlers::Base
6
+ on /kanjo aws\z/, name: :aws, description: 'fetch aws billing'
7
+
8
+ def aws(message)
9
+ Ruboty::Kanjo::Actions::AWS.new(message).call
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,3 @@
1
+ require 'ruboty'
2
+ require 'ruboty/kanjo/version'
3
+ require 'ruboty/handlers/kanjo'
@@ -0,0 +1,68 @@
1
+ require 'aws-sdk'
2
+
3
+ module Ruboty::Kanjo::Actions
4
+ class AWS < Ruboty::Actions::Base
5
+ ONE_HOUR = 60 * 60
6
+
7
+ def call
8
+ services = list_services
9
+
10
+ col = (services + ['Total']).map(&:size).max
11
+
12
+ total_price = get_price
13
+ msg = ["#{'Total'.ljust(col)} : #{total_price} USD"]
14
+
15
+ services.each do |service|
16
+ msg.push("#{service.ljust(col)} : #{get_price(service)} USD")
17
+ end
18
+
19
+ message.reply(msg.join("\n"))
20
+ end
21
+
22
+ def list_services
23
+ resp = cloudwatch.list_metrics(namespace: 'AWS/Billing',
24
+ metric_name: 'EstimatedCharges',
25
+ dimensions: [
26
+ { name: 'Currency', value: 'USD' }
27
+ ])
28
+
29
+ services = []
30
+ resp.metrics.each do |metric|
31
+ metric.dimensions.each do |dimension|
32
+ services.push(dimension.value) if dimension.name == 'ServiceName'
33
+ end
34
+ end
35
+
36
+ services
37
+ end
38
+
39
+ def get_price(service = nil)
40
+ now = Time.now
41
+
42
+ dimensions = [
43
+ { name: 'Currency', value: 'USD' }
44
+ ]
45
+
46
+ dimensions.push(name: 'ServiceName', value: service) if service
47
+
48
+ resp = cloudwatch.get_metric_statistics(
49
+ namespace: 'AWS/Billing',
50
+ metric_name: 'EstimatedCharges',
51
+ dimensions: dimensions,
52
+ start_time: now - ONE_HOUR,
53
+ end_time: now,
54
+ statistics: ['Maximum'],
55
+ period: 60,
56
+ unit: 'None'
57
+ )
58
+
59
+ resp.datapoints.last.maximum
60
+ end
61
+
62
+ private
63
+
64
+ def cloudwatch
65
+ @cloudwatch ||= Aws::CloudWatch::Client.new(region: 'us-east-1')
66
+ end
67
+ end
68
+ end
@@ -0,0 +1,5 @@
1
+ module Ruboty
2
+ module Kanjo
3
+ VERSION = '0.1.0'.freeze
4
+ end
5
+ end
@@ -0,0 +1,30 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'ruboty/kanjo/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'ruboty-kanjo'
8
+ spec.version = Ruboty::Kanjo::VERSION
9
+ spec.authors = ['Sho Kusano']
10
+ spec.email = ['rosylilly@aduca.org']
11
+
12
+ spec.summary = 'Provides get pricing operations for ruboty'
13
+ spec.description = spec.summary
14
+ spec.homepage = 'https://github.com/zeny-io/ruboty-kanjo'
15
+ spec.license = 'MIT'
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+ spec.bindir = 'exe'
21
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
+ spec.require_paths = ['lib']
23
+
24
+ spec.add_development_dependency 'bundler', '~> 1.13'
25
+ spec.add_development_dependency 'rake', '~> 10.0'
26
+ spec.add_development_dependency 'rspec', '~> 3.0'
27
+
28
+ spec.add_dependency 'ruboty'
29
+ spec.add_dependency 'aws-sdk', '~> 2.0'
30
+ end
metadata ADDED
@@ -0,0 +1,128 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruboty-kanjo
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Sho Kusano
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-11-04 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.13'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.13'
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: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: ruboty
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: aws-sdk
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '2.0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '2.0'
83
+ description: Provides get pricing operations for ruboty
84
+ email:
85
+ - rosylilly@aduca.org
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - ".rspec"
92
+ - ".travis.yml"
93
+ - Gemfile
94
+ - LICENSE.txt
95
+ - README.md
96
+ - Rakefile
97
+ - bin/console
98
+ - bin/setup
99
+ - lib/ruboty/handlers/kanjo.rb
100
+ - lib/ruboty/kanjo.rb
101
+ - lib/ruboty/kanjo/actions/aws.rb
102
+ - lib/ruboty/kanjo/version.rb
103
+ - ruboty-kanjo.gemspec
104
+ homepage: https://github.com/zeny-io/ruboty-kanjo
105
+ licenses:
106
+ - MIT
107
+ metadata: {}
108
+ post_install_message:
109
+ rdoc_options: []
110
+ require_paths:
111
+ - lib
112
+ required_ruby_version: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: '0'
117
+ required_rubygems_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - ">="
120
+ - !ruby/object:Gem::Version
121
+ version: '0'
122
+ requirements: []
123
+ rubyforge_project:
124
+ rubygems_version: 2.5.1
125
+ signing_key:
126
+ specification_version: 4
127
+ summary: Provides get pricing operations for ruboty
128
+ test_files: []