carrierbot_api 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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 4ae635e5b60396c6231e800ee2cabe3a843cbc3d0dfa3b7813d461d21e1c4449
4
+ data.tar.gz: ff7879ded0c91b72bd17d85a271a359ea29d607a62f25a4b4a2a1d8d0a401fe1
5
+ SHA512:
6
+ metadata.gz: 6face818d25fc426a22d618a7870f31cae20b20b6a8ccb5c0296f7ebe838eab9bcbe26689e329667e4aff0a39f9d06674de1f864a47acfee09e57c181cb58467
7
+ data.tar.gz: 3f74e0091b41d14d918c5b0e85d2ce8e9ade22d1998411eb05b9dd6946e56d0770c5073ce7c6d6649660439d3abaf635e9829b7c1ee8f9b2354ed1746ebe80d3
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ carrierbot_api-0.1.0.gem
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.5.0
7
+ before_install: gem install bundler -v 1.16.6
File without changes
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at storkyd@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in carrierbot_api.gemspec
6
+ gemspec
@@ -0,0 +1,22 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ carrierbot_api (0.3.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ minitest (5.14.1)
10
+ rake (10.5.0)
11
+
12
+ PLATFORMS
13
+ ruby
14
+
15
+ DEPENDENCIES
16
+ bundler (~> 1.16)
17
+ carrierbot_api!
18
+ minitest (~> 5.0)
19
+ rake (~> 10.0)
20
+
21
+ BUNDLED WITH
22
+ 1.16.6
@@ -0,0 +1,57 @@
1
+ # CarrierBotAPI
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/carrierbot_api`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'carrierbot_api'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install carrierbot_api
22
+
23
+ ## Usage
24
+
25
+ A `configuration.yml` file is required in your `/config` directory
26
+ ```
27
+ default:
28
+ carrierbot_origin_country: AU
29
+ carrierbot_origin_postal_code: 6000
30
+ carrierbot_origin_province: WA
31
+ carrierbot_origin_city: Perth
32
+ carrierbot_origin_name:
33
+ carrierbot_origin_address1:
34
+ carrierbot_origin_address2:
35
+ carrierbot_origin_address3:
36
+ carrierbot_origin_phone:
37
+ carrierbot_origin_fax:
38
+ carrierbot_origin_email:
39
+ carrierbot_origin_address_type:
40
+ carrierbot_origin_company_name: Seshbot
41
+ carrierbot_vendor: BrewKeeper
42
+ carrierbot_fulfillment_service: manual
43
+ ```
44
+
45
+ ## Development
46
+
47
+ 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.
48
+
49
+ 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).
50
+
51
+ ## Contributing
52
+
53
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/carrierbot_api. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
54
+
55
+ ## Code of Conduct
56
+
57
+ Everyone interacting in the CarrierbotRates project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/carrierbot_api/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList["test/**/*_test.rb"]
8
+ end
9
+
10
+ task :default => :test
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "carrierbot_api"
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__)
@@ -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,39 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "carrierbot_api/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "carrierbot_api"
8
+ spec.version = CarrierBotAPI::VERSION
9
+ spec.authors = ["Shaun"]
10
+ spec.email = ["shaun@brewkeeper.com.au"]
11
+
12
+ spec.summary = %q{Connect to CarrierBot API}
13
+ spec.homepage = "https://gitlab.com/brewkeeper/carrierbot_api"
14
+
15
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
16
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
17
+ if spec.respond_to?(:metadata)
18
+ # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
19
+
20
+ spec.metadata["homepage_uri"] = spec.homepage
21
+ spec.metadata["source_code_uri"] = "https://gitlab.com/brewkeeper/carrierbot_api"
22
+ spec.metadata["changelog_uri"] = "https://gitlab.com/brewkeeper/carrierbot_api/-/blob/master/CHANGELOG.md"
23
+ else
24
+ raise "RubyGems 2.0 or newer is required to protect against " \
25
+ "public gem pushes."
26
+ end
27
+
28
+ # Specify which files should be added to the gem when it is released.
29
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
30
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
31
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
32
+ end
33
+ spec.bindir = "exe"
34
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
35
+ spec.require_paths = ["lib"]
36
+ spec.add_development_dependency "bundler", "~> 1.16"
37
+ spec.add_development_dependency "rake", "~> 10.0"
38
+ spec.add_development_dependency "minitest", "~> 5.0"
39
+ end
@@ -0,0 +1,7 @@
1
+ require "carrierbot_api/version"
2
+
3
+ require 'carrierbot_api/configuration'
4
+ require 'carrierbot_api/address'
5
+ require 'carrierbot_api/item'
6
+ require 'carrierbot_api/fulfillment'
7
+ require 'carrierbot_api/rates_request'
@@ -0,0 +1,30 @@
1
+ module CarrierBotAPI
2
+ class Address
3
+ attr_accessor :country, :postal_code, :province, :city, :name, :address1, :address2, :address3, :phone, :fax, :email, :address_type, :company_name
4
+
5
+ def initialize(data)
6
+ @country = data[:country]
7
+ @postal_code = data[:postal_code]
8
+ @province = data[:province]
9
+ @city = data[:city]
10
+ @name = data[:name]
11
+ @address1 = data[:address1]
12
+ @address2 = data[:address2]
13
+ @address3 = data[:address3]
14
+ @phone = data[:phone]
15
+ @fax = data[:fax]
16
+ @email = data[:email]
17
+ @address_type = data[:address_type]
18
+ @company_name = data[:company_name]
19
+ end
20
+
21
+ def to_json
22
+ {
23
+ 'country': self.country, 'postal_code': self.postal_code, 'province': self.province, 'city': self.city, 'name': self.name,
24
+ 'address1': self.address1, 'address2': self.address2, 'address3': self.address3,
25
+ 'phone': self.phone, 'fax': self.fax, 'email': self.email, 'address_type': self.address_type,
26
+ 'company_name': self.company_name
27
+ }
28
+ end
29
+ end
30
+ end # module CarrierBot
@@ -0,0 +1,49 @@
1
+ module CarrierBotAPI
2
+ module Configuration
3
+ @defaults = {}
4
+ @config = nil
5
+
6
+ class << self
7
+ def load(options={})
8
+ filename = options[:file] || File.join(Rails.root, 'config', 'configuration.yml')
9
+ env = options[:env] || Rails.env
10
+
11
+ @config = @defaults.dup
12
+ if File.file?(filename)
13
+ @config.merge!(load_from_yaml(filename, env))
14
+ end
15
+ @config
16
+ end
17
+
18
+ def [](name)
19
+ load unless @config
20
+ @config[name]
21
+ end
22
+
23
+ private
24
+
25
+ def load_from_yaml(filename, env)
26
+ yaml = nil
27
+ begin
28
+ yaml = YAML::load(ERB.new(File.read(filename)).result)
29
+ rescue ArgumentError
30
+ abort "could not load YAML file #{filename}"
31
+ rescue SyntaxError => e
32
+ abort "could not load YAML file #{filename} - syntax error:\n#{e.message}"
33
+ end
34
+ conf = {}
35
+ if yaml.is_a?(Hash)
36
+ if yaml['default']
37
+ conf.merge!(yaml['default'])
38
+ end
39
+ if yaml[env]
40
+ conf.merge!(yaml[env])
41
+ end
42
+ else
43
+ abort "could not load YAML configuration #{filename} - unexpected formatting"
44
+ end
45
+ conf
46
+ end
47
+ end # class methods
48
+ end # module Configuration
49
+ end
@@ -0,0 +1,27 @@
1
+ module CarrierBotAPI
2
+ class Fulfillment
3
+ attr_reader :ordered_at, :fulfilled_at, :total_price, :service_code, :order_id, :fulfillment_id, :items
4
+
5
+ def initialize(data)
6
+ @ordered_at = data[:ordered_at]
7
+ @fulfilled_at = data[:fulfilled_at]
8
+ @total_price = data[:total_price]
9
+ @service_code = data[:service_code]
10
+ @order_id = data[:order_id]
11
+ @fulfillment_id = data[:fulfillment_id]
12
+ @items = data[:items]
13
+ end
14
+
15
+ def to_json
16
+ {
17
+ 'ordered_at': self.ordered_at,
18
+ 'fulfilled_at': self.fulfilled_at,
19
+ 'total_price': self.total_price,
20
+ 'service_code': self.service_code,
21
+ 'order_id': self.order_id,
22
+ 'fulfillment_id': self.fulfillment_id,
23
+ 'items': self.items.map(&:to_json)
24
+ }
25
+ end
26
+ end
27
+ end # module CarrierBotAPI
@@ -0,0 +1,37 @@
1
+ module CarrierBotAPI
2
+ class Item
3
+ attr_reader :name, :sku, :quantity, :grams, :price, :vendor, :requires_shipping, :taxable, :fulfillment_service, :properties, :product_id, :variant_id
4
+
5
+ def initialize(data)
6
+ @name = data[:name]
7
+ @sku = data[:sku]
8
+ @quantity = data[:quantity]
9
+ @grams = data[:grams]
10
+ @price = data[:price]
11
+ @vendor = data[:vendor] || CarrierBotAPI::Configuration['carrierbot_vendor']
12
+ @requires_shipping = data[:requires_shipping]
13
+ @taxable = data[:taxable]
14
+ @fulfillment_service = data[:fulfillment_service] || CarrierBotAPI::Configuration['carrierbot_fulfillment_service'] || 'manual'
15
+ @properties = data[:properties]
16
+ @product_id = data[:product_id]
17
+ @variant_id = data[:variant_id]
18
+ end
19
+
20
+ def to_json
21
+ {
22
+ 'name': self.name,
23
+ 'sku': self.sku,
24
+ 'quantity': self.quantity,
25
+ 'grams': self.grams,
26
+ 'price': self.price,
27
+ 'vendor': self.vendor,
28
+ 'requires_shipping': self.requires_shipping,
29
+ 'taxable': self.taxable,
30
+ 'fulfillment_service': self.fulfillment_service,
31
+ 'properties': self.properties,
32
+ 'product_id': self.product_id,
33
+ 'variant_id': self.variant_id
34
+ }
35
+ end
36
+ end
37
+ end # module CarrierBotAPI
@@ -0,0 +1,59 @@
1
+ module CarrierBotAPI
2
+ class RatesRequest
3
+ attr_accessor :url
4
+
5
+ def initialize(url = nil)
6
+ @url = url || Setting.current&.carrier_service_url
7
+
8
+ origin_country = CarrierBotAPI::Configuration['carrierbot_origin_country']
9
+ origin_postal_code = CarrierBotAPI::Configuration['carrierbot_origin_postal_code']
10
+ origin_province = CarrierBotAPI::Configuration['carrierbot_origin_province']
11
+ origin_city = CarrierBotAPI::Configuration['carrierbot_origin_city']
12
+ origin_name = CarrierBotAPI::Configuration['carrierbot_origin_name']
13
+ origin_address1 = CarrierBotAPI::Configuration['carrierbot_origin_address1']
14
+ origin_address2 = CarrierBotAPI::Configuration['carrierbot_origin_address2']
15
+ origin_address3 = CarrierBotAPI::Configuration['carrierbot_origin_address3']
16
+ origin_phone = CarrierBotAPI::Configuration['carrierbot_origin_phone']
17
+ origin_fax = CarrierBotAPI::Configuration['carrierbot_origin_fax']
18
+ origin_email = CarrierBotAPI::Configuration['carrierbot_origin_email']
19
+ origin_address_type = CarrierBotAPI::Configuration['carrierbot_origin_address_type']
20
+ origin_company_name = CarrierBotAPI::Configuration['carrierbot_origin_company_name']
21
+
22
+ @origin = Address.new(
23
+ country: origin_country,
24
+ postal_code: origin_postal_code,
25
+ province: origin_province,
26
+ city: origin_city,
27
+ name: origin_name,
28
+ address1: origin_address1,
29
+ address2: origin_address2,
30
+ address3: origin_address3,
31
+ phone: origin_phone,
32
+ fax: origin_fax,
33
+ email: origin_email,
34
+ address_type: origin_address_type,
35
+ company_name: origin_company_name)
36
+ end
37
+
38
+ def get(destination:, items: [], fulfillments: [])
39
+ conn = Faraday.new(url: @url)
40
+
41
+ request = {
42
+ 'rate': {
43
+ 'origin': @origin.to_json,
44
+ 'destination': destination.to_json,
45
+ 'items': items.map(&:to_json),
46
+ 'fulfillments': fulfillments.map(&:to_json),
47
+ 'currency': 'JPY', 'locale': 'en'
48
+ }
49
+ }
50
+
51
+ response = conn.post '/api/v1/requests', request
52
+ raise "could not retrieve shipping rates - #{response.reason_phrase}\nrequest: #{request}" \
53
+ unless response.success?
54
+
55
+ rates = JSON.parse(response.body)['rates']
56
+ rates
57
+ end
58
+ end
59
+ end
@@ -0,0 +1,3 @@
1
+ module CarrierBotAPI
2
+ VERSION = "0.3.0"
3
+ end
metadata ADDED
@@ -0,0 +1,107 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: carrierbot_api
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.0
5
+ platform: ruby
6
+ authors:
7
+ - Shaun
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-06-15 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:
56
+ email:
57
+ - shaun@brewkeeper.com.au
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".travis.yml"
64
+ - CHANGELOG.md
65
+ - CODE_OF_CONDUCT.md
66
+ - Gemfile
67
+ - Gemfile.lock
68
+ - README.md
69
+ - Rakefile
70
+ - bin/console
71
+ - bin/setup
72
+ - carrierbot_rates.gemspec
73
+ - lib/carrierbot_api.rb
74
+ - lib/carrierbot_api/.DS_Store
75
+ - lib/carrierbot_api/address.rb
76
+ - lib/carrierbot_api/configuration.rb
77
+ - lib/carrierbot_api/fulfillment.rb
78
+ - lib/carrierbot_api/item.rb
79
+ - lib/carrierbot_api/rates_request.rb
80
+ - lib/carrierbot_api/version.rb
81
+ homepage: https://gitlab.com/brewkeeper/carrierbot_api
82
+ licenses: []
83
+ metadata:
84
+ homepage_uri: https://gitlab.com/brewkeeper/carrierbot_api
85
+ source_code_uri: https://gitlab.com/brewkeeper/carrierbot_api
86
+ changelog_uri: https://gitlab.com/brewkeeper/carrierbot_api/-/blob/master/CHANGELOG.md
87
+ post_install_message:
88
+ rdoc_options: []
89
+ require_paths:
90
+ - lib
91
+ required_ruby_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ required_rubygems_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ requirements: []
102
+ rubyforge_project:
103
+ rubygems_version: 2.7.8
104
+ signing_key:
105
+ specification_version: 4
106
+ summary: Connect to CarrierBot API
107
+ test_files: []