micro_service_server 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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e60b238f26adc65619bc342800ce86d7ffe58fca
4
+ data.tar.gz: ea2f8292ffd0e0fe70b223b111f9fff2ab46ca66
5
+ SHA512:
6
+ metadata.gz: 61bf5af1fbbdad2730f89481ea5837fe9a69d64599095cc8eee5c30c5ea938536f688ed51ac06ab4008e64e652258e295cf035ccfedf8820d3f6a198745a6cfe
7
+ data.tar.gz: 1e8c269354d01035cd944bafa3360345f3aea6b79f556edd0b4948d1297e813f281853f855574cbb82a0a6950b464228e8728d163f69f3c52e4fb0b745531ce0
@@ -0,0 +1,20 @@
1
+ Copyright 2016 Butch Marshall
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,34 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'MicroServiceServer'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
18
+
19
+ load 'rails/tasks/engine.rake'
20
+ load 'rails/tasks/statistics.rake'
21
+
22
+ Bundler::GemHelper.install_tasks
23
+
24
+
25
+ Dir[File.join(File.dirname(__FILE__), 'tasks/**/*.rake')].each {|f| load f }
26
+
27
+ require 'rspec/core'
28
+ require 'rspec/core/rake_task'
29
+
30
+ desc "Run all specs in spec directory (excluding plugin specs)"
31
+
32
+ RSpec::Core::RakeTask.new(:spec => 'app:db:test:prepare')
33
+
34
+ task :default => :spec
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any styles
10
+ * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
+ * file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -0,0 +1,4 @@
1
+ module MicroServiceServer
2
+ class ApplicationController < ActionController::Base
3
+ end
4
+ end
@@ -0,0 +1,15 @@
1
+ require_dependency "micro_service_server/application_controller"
2
+
3
+ module Concerns
4
+ module Controllers
5
+ module Clients
6
+ extend MicroServiceServer::Concerns::Controllers::Clients
7
+ end
8
+ end
9
+ end
10
+
11
+ module MicroServiceServer
12
+ class ClientsController < ApplicationController
13
+ include Concerns::Controllers::Clients
14
+ end
15
+ end
@@ -0,0 +1,4 @@
1
+ module MicroServiceServer
2
+ module ApplicationHelper
3
+ end
4
+ end
@@ -0,0 +1,21 @@
1
+ module MicroServiceServer
2
+ class MicroserviceClientInstallJob < ActiveJob::Base
3
+ queue_as :default
4
+
5
+ def perform(*args)
6
+ params = args.extract_options!
7
+
8
+ begin
9
+ MicroService::Client.new(params).save
10
+ # Failed to notify the microservice we successfully installed ourselves
11
+ rescue MicroService::Client::InstallError => $e
12
+ # Increment attempt number
13
+ params["attempt"] ||= 1
14
+ params["attempt"] = params["attempt"] + 1
15
+
16
+ # Try again in one minute
17
+ MicroserviceClientInstallJob.set(wait: 1.minute).perform_later(params) unless params["attempt"].to_i > 3
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>MicroServiceServer</title>
5
+ <%= stylesheet_link_tag "micro_service_server/application", media: "all" %>
6
+ <%= javascript_include_tag "micro_service_server/application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,6 @@
1
+ MicroServiceServer::Engine.routes.draw do
2
+ # Installs a client on this server
3
+ post 'install' => "clients#create", :as => :install_client
4
+ # Uninstalls a client from this server
5
+ post 'uninstall' => "clients#destroy", :as => :uninstall_client
6
+ end
@@ -0,0 +1,17 @@
1
+ class AddMicroServiceClient001Migration < ActiveRecord::Migration
2
+ def up
3
+ create_table :micro_service_clients do |t|
4
+ t.string :secret # Secret to be used
5
+ t.string :install_url # POST here when install successful
6
+ t.string :uninstall_url # POST here when uninstall successful
7
+ t.integer :attempt, default: 0
8
+ t.boolean :uninstalled, default: 0
9
+
10
+ t.timestamps null: false
11
+ end
12
+ end
13
+
14
+ def down
15
+ drop_table :micro_service_clients
16
+ end
17
+ end
@@ -0,0 +1,6 @@
1
+ require "micro_service/client"
2
+ require "micro_service_server/engine"
3
+ require "micro_service_server/concerns/controllers/clients"
4
+
5
+ module MicroServiceServer
6
+ end
@@ -0,0 +1,49 @@
1
+ module MicroServiceServer
2
+ module Concerns
3
+ module Controllers
4
+ module Clients
5
+ extend ActiveSupport::Concern
6
+
7
+ def create
8
+ MicroserviceClientInstallJob.perform_later(install_params)
9
+
10
+ render :nothing => true, :status => 204
11
+ end
12
+
13
+ def destroy
14
+ status = 403
15
+
16
+ @client = MicroService::Client.where(uninstall_params).first
17
+ if @client && @client.update_attributes(:uninstalled => true)
18
+ status = 204
19
+ end
20
+
21
+ render :nothing => true, :status => status
22
+ end
23
+
24
+ private
25
+ def json_params
26
+ ActionController::Parameters.new(JSON.parse(request.body.read))
27
+ end
28
+
29
+ def uninstall_params
30
+ data = json_params
31
+
32
+ data.permit(
33
+ :id,
34
+ :secret,
35
+ )
36
+ end
37
+
38
+ def install_params
39
+ data = json_params
40
+
41
+ data.permit(
42
+ :install_url,
43
+ :uninstall_url,
44
+ )
45
+ end
46
+ end
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,13 @@
1
+ module MicroServiceServer
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace MicroServiceServer
4
+
5
+ initializer :append_migrations do |app|
6
+ unless app.root.to_s.match(root.to_s)
7
+ config.paths["db/migrate"].expanded.each do |expanded_path|
8
+ app.config.paths["db/migrate"] << expanded_path
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,3 @@
1
+ module MicroServiceServer
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :micro_service_server do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,186 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: micro_service_server
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Butch Marshall
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-04-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 4.2.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 4.2.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: micro_service-client
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.0.1
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.0.1
41
+ - !ruby/object:Gem::Dependency
42
+ name: sqlite3
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-rails
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
+ - !ruby/object:Gem::Dependency
70
+ name: rspec-activejob
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: factory_girl_rails
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: capybara
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: database_cleaner
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: webmock
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ description: Mountable Rails engine that services microservice clients
140
+ email:
141
+ - butch.a.marshall@gmail.com
142
+ executables: []
143
+ extensions: []
144
+ extra_rdoc_files: []
145
+ files:
146
+ - MIT-LICENSE
147
+ - Rakefile
148
+ - app/assets/javascripts/micro_service_server/application.js
149
+ - app/assets/stylesheets/micro_service_server/application.css
150
+ - app/controllers/micro_service_server/application_controller.rb
151
+ - app/controllers/micro_service_server/clients_controller.rb
152
+ - app/helpers/micro_service_server/application_helper.rb
153
+ - app/jobs/micro_service_server/microservice_client_install_job.rb
154
+ - app/views/layouts/micro_service_server/application.html.erb
155
+ - config/routes.rb
156
+ - db/migrate/20160413035251_add_micro_service_client_0_0_1_migration.rb
157
+ - lib/micro_service_server.rb
158
+ - lib/micro_service_server/concerns/controllers/clients.rb
159
+ - lib/micro_service_server/engine.rb
160
+ - lib/micro_service_server/version.rb
161
+ - lib/tasks/micro_service_server_tasks.rake
162
+ homepage: https://github.com/butchmarshall/rails-micro_service_server
163
+ licenses:
164
+ - MIT
165
+ metadata: {}
166
+ post_install_message:
167
+ rdoc_options: []
168
+ require_paths:
169
+ - lib
170
+ required_ruby_version: !ruby/object:Gem::Requirement
171
+ requirements:
172
+ - - ">="
173
+ - !ruby/object:Gem::Version
174
+ version: '0'
175
+ required_rubygems_version: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - ">="
178
+ - !ruby/object:Gem::Version
179
+ version: '0'
180
+ requirements: []
181
+ rubyforge_project:
182
+ rubygems_version: 2.4.6
183
+ signing_key:
184
+ specification_version: 4
185
+ summary: Rails engine for serving microservices
186
+ test_files: []