bscf-core 0.2.0 → 0.2.2
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 +4 -4
- data/README.md +43 -0
- data/app/controllers/bscf/core/application_controller.rb +33 -0
- data/app/services/token_service.rb +14 -0
- data/lib/bscf/core/version.rb +1 -1
- metadata +3 -55
- data/spec/dummy/Rakefile +0 -6
- data/spec/dummy/app/assets/stylesheets/application.css +0 -15
- data/spec/dummy/app/controllers/application_controller.rb +0 -2
- data/spec/dummy/app/jobs/application_job.rb +0 -7
- data/spec/dummy/app/mailers/application_mailer.rb +0 -4
- data/spec/dummy/app/models/application_record.rb +0 -3
- data/spec/dummy/app/views/layouts/mailer.html.erb +0 -13
- data/spec/dummy/app/views/layouts/mailer.text.erb +0 -1
- data/spec/dummy/bin/dev +0 -2
- data/spec/dummy/bin/rails +0 -4
- data/spec/dummy/bin/rake +0 -4
- data/spec/dummy/bin/setup +0 -34
- data/spec/dummy/config/application.rb +0 -43
- data/spec/dummy/config/boot.rb +0 -5
- data/spec/dummy/config/cable.yml +0 -10
- data/spec/dummy/config/database.yml +0 -17
- data/spec/dummy/config/environment.rb +0 -5
- data/spec/dummy/config/environments/development.rb +0 -67
- data/spec/dummy/config/environments/production.rb +0 -86
- data/spec/dummy/config/environments/test.rb +0 -53
- data/spec/dummy/config/initializers/cors.rb +0 -16
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +0 -8
- data/spec/dummy/config/initializers/inflections.rb +0 -16
- data/spec/dummy/config/locales/en.yml +0 -31
- data/spec/dummy/config/puma.rb +0 -38
- data/spec/dummy/config/routes.rb +0 -3
- data/spec/dummy/config/storage.yml +0 -34
- data/spec/dummy/config.ru +0 -6
- data/spec/dummy/db/schema.rb +0 -246
- data/spec/dummy/log/development.log +0 -2077
- data/spec/dummy/log/test.log +0 -69259
- data/spec/dummy/tmp/local_secret.txt +0 -1
- data/spec/examples.txt +0 -167
- data/spec/models/bscf/core/address_spec.rb +0 -12
- data/spec/models/bscf/core/business_spec.rb +0 -64
- data/spec/models/bscf/core/category_spec.rb +0 -43
- data/spec/models/bscf/core/order_item_spec.rb +0 -26
- data/spec/models/bscf/core/order_spec.rb +0 -16
- data/spec/models/bscf/core/product_spec.rb +0 -47
- data/spec/models/bscf/core/quotation_item_spec.rb +0 -44
- data/spec/models/bscf/core/quotation_spec.rb +0 -41
- data/spec/models/bscf/core/request_for_quotation_spec.rb +0 -13
- data/spec/models/bscf/core/rfq_item_spec.rb +0 -14
- data/spec/models/bscf/core/role_spec.rb +0 -14
- data/spec/models/bscf/core/user_profile_spec.rb +0 -20
- data/spec/models/bscf/core/user_role_spec.rb +0 -13
- data/spec/models/bscf/core/user_spec.rb +0 -22
- data/spec/models/bscf/core/virtual_account_spec.rb +0 -111
- data/spec/models/bscf/core/virtual_account_transaction_spec.rb +0 -133
- data/spec/rails_helper.rb +0 -46
- data/spec/spec_helper.rb +0 -37
- data/spec/support/models/shared_examples.rb +0 -49
- data/spec/support/requests/shared_requests.rb +0 -126
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1210d0d4c690b34b822a20bd4e7a364e1731cb1df1e40b8352554805ee29e234
|
4
|
+
data.tar.gz: 86b2afc9d7fbfc5d2ebff1096269aebaa1f80c4b77b3e45615c70c4e2ee43ee4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e7eb9cb98cda9c7f392934338a2d5a20bbc139adf7e068323da70bc7aa3f39b11983e4d99d92db284cdfabc63f66989892a121ef28ffa52a8f73d5fb26d5ca2
|
7
|
+
data.tar.gz: 48294c77f982ea1c2e9691bff4d29010aabcba9f8bdd98a3a449d80505e9c3458df93074f587c2d9cd9d79595f56e3e45148b332cbcaac3829bbf0034913de33
|
data/README.md
CHANGED
@@ -1,10 +1,13 @@
|
|
1
1
|
# Bscf::Core
|
2
|
+
|
2
3
|
Short description and motivation.
|
3
4
|
|
4
5
|
## Usage
|
6
|
+
|
5
7
|
How to use my plugin.
|
6
8
|
|
7
9
|
## Installation
|
10
|
+
|
8
11
|
Add this line to your application's Gemfile:
|
9
12
|
|
10
13
|
```ruby
|
@@ -12,17 +15,57 @@ gem "bscf-core"
|
|
12
15
|
```
|
13
16
|
|
14
17
|
And then execute:
|
18
|
+
|
15
19
|
```bash
|
16
20
|
$ bundle
|
17
21
|
```
|
18
22
|
|
19
23
|
Or install it yourself as:
|
24
|
+
|
20
25
|
```bash
|
21
26
|
$ gem install bscf-core
|
22
27
|
```
|
23
28
|
|
29
|
+
#### Version Tasks
|
30
|
+
|
31
|
+
- **Bump Version**
|
32
|
+
|
33
|
+
rake version:bump[type]
|
34
|
+
|
35
|
+
- `patch`: Increases version by 0.0.1 (e.g., 1.0.0 -> 1.0.1)
|
36
|
+
|
37
|
+
```bash
|
38
|
+
rake version:bump[patch]
|
39
|
+
```
|
40
|
+
|
41
|
+
- `minor`: Increases version by 0.1.0 (e.g., 1.0.0 -> 1.1.0)
|
42
|
+
|
43
|
+
```bash
|
44
|
+
rake version:bump[minor]
|
45
|
+
```
|
46
|
+
|
47
|
+
- `major`: Increases version by 1.0.0 (e.g., 1.0.0 -> 2.0.0)
|
48
|
+
|
49
|
+
```bash
|
50
|
+
rake version:bump[major]
|
51
|
+
```
|
52
|
+
|
53
|
+
- `pre`: Adds or increments pre-release version (e.g., 1.0.0 -> 1.0.0-pre.1)
|
54
|
+
|
55
|
+
```bash
|
56
|
+
rake version:bump[pre]
|
57
|
+
```
|
58
|
+
|
59
|
+
- `release`: Removes pre-release version (e.g., 1.0.0-pre.1 -> 1.0.0)
|
60
|
+
|
61
|
+
```bash
|
62
|
+
rake version:bump[release]
|
63
|
+
```
|
64
|
+
|
24
65
|
## Contributing
|
66
|
+
|
25
67
|
Contribution directions go here.
|
26
68
|
|
27
69
|
## License
|
70
|
+
|
28
71
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
@@ -1,6 +1,39 @@
|
|
1
1
|
module Bscf
|
2
2
|
module Core
|
3
3
|
class ApplicationController < ActionController::API
|
4
|
+
private
|
5
|
+
|
6
|
+
def is_authenticated
|
7
|
+
render json: { error: "Not authenticated" }, status: :unauthorized unless current_user
|
8
|
+
end
|
9
|
+
|
10
|
+
def is_allowed
|
11
|
+
user_role = UserRole.find_by(user: current_user)
|
12
|
+
role = Role.find(user_role.role_id)
|
13
|
+
render json: { error: "Not authorized" }, status: :ok unless role.name == "User" || role.name == "Admin"
|
14
|
+
end
|
15
|
+
|
16
|
+
def current_user
|
17
|
+
return @current_user if defined?(@current_user)
|
18
|
+
|
19
|
+
return unless auth_token
|
20
|
+
|
21
|
+
begin
|
22
|
+
payload = TokenService.new.decode(auth_token)
|
23
|
+
@current_user = User.find_by(id: payload["user"]["id"])
|
24
|
+
rescue JWT::DecodeError => e
|
25
|
+
Rails.logger.warn "Token decode error: #{e.message}"
|
26
|
+
nil
|
27
|
+
rescue ActiveRecord::RecordNotFound => e
|
28
|
+
Rails.logger.warn "User not found: #{e.message}"
|
29
|
+
nil
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
def auth_token
|
34
|
+
auth_header = request.headers["Authorization"]
|
35
|
+
auth_header&.split(" ")&.last
|
36
|
+
end
|
4
37
|
end
|
5
38
|
end
|
6
39
|
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require "jwt"
|
2
|
+
|
3
|
+
class TokenService
|
4
|
+
def encode(payload)
|
5
|
+
JWT.encode(payload, ENV["SECRET_KEY_BASE"] || "secret_key_base")
|
6
|
+
end
|
7
|
+
|
8
|
+
def decode(token)
|
9
|
+
body = JWT.decode(token, ENV["SECRET_KEY_BASE"] || "secret_key_base")[0]
|
10
|
+
HashWithIndifferentAccess.new body
|
11
|
+
rescue JWT::DecodeError, JSON::ParserError => e
|
12
|
+
raise JWT::DecodeError.new("Invalid token")
|
13
|
+
end
|
14
|
+
end
|
data/lib/bscf/core/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bscf-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Asrat
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-29 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: active_model_serializers
|
@@ -303,6 +303,7 @@ files:
|
|
303
303
|
- app/models/bscf/core/user_role.rb
|
304
304
|
- app/models/bscf/core/virtual_account.rb
|
305
305
|
- app/models/bscf/core/virtual_account_transaction.rb
|
306
|
+
- app/services/token_service.rb
|
306
307
|
- config/database.yml
|
307
308
|
- config/routes.rb
|
308
309
|
- db/migrate/20250326065606_create_bscf_core_users.rb
|
@@ -326,39 +327,6 @@ files:
|
|
326
327
|
- lib/bscf/core/version.rb
|
327
328
|
- lib/tasks/bscf/core_tasks.rake
|
328
329
|
- lib/tasks/release.rake
|
329
|
-
- spec/dummy/Rakefile
|
330
|
-
- spec/dummy/app/assets/stylesheets/application.css
|
331
|
-
- spec/dummy/app/controllers/application_controller.rb
|
332
|
-
- spec/dummy/app/jobs/application_job.rb
|
333
|
-
- spec/dummy/app/mailers/application_mailer.rb
|
334
|
-
- spec/dummy/app/models/application_record.rb
|
335
|
-
- spec/dummy/app/views/layouts/mailer.html.erb
|
336
|
-
- spec/dummy/app/views/layouts/mailer.text.erb
|
337
|
-
- spec/dummy/bin/dev
|
338
|
-
- spec/dummy/bin/rails
|
339
|
-
- spec/dummy/bin/rake
|
340
|
-
- spec/dummy/bin/setup
|
341
|
-
- spec/dummy/config.ru
|
342
|
-
- spec/dummy/config/application.rb
|
343
|
-
- spec/dummy/config/boot.rb
|
344
|
-
- spec/dummy/config/cable.yml
|
345
|
-
- spec/dummy/config/database.yml
|
346
|
-
- spec/dummy/config/environment.rb
|
347
|
-
- spec/dummy/config/environments/development.rb
|
348
|
-
- spec/dummy/config/environments/production.rb
|
349
|
-
- spec/dummy/config/environments/test.rb
|
350
|
-
- spec/dummy/config/initializers/cors.rb
|
351
|
-
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
352
|
-
- spec/dummy/config/initializers/inflections.rb
|
353
|
-
- spec/dummy/config/locales/en.yml
|
354
|
-
- spec/dummy/config/puma.rb
|
355
|
-
- spec/dummy/config/routes.rb
|
356
|
-
- spec/dummy/config/storage.yml
|
357
|
-
- spec/dummy/db/schema.rb
|
358
|
-
- spec/dummy/log/development.log
|
359
|
-
- spec/dummy/log/test.log
|
360
|
-
- spec/dummy/tmp/local_secret.txt
|
361
|
-
- spec/examples.txt
|
362
330
|
- spec/factories/bscf/core/addresses.rb
|
363
331
|
- spec/factories/bscf/core/businesses.rb
|
364
332
|
- spec/factories/bscf/core/categories.rb
|
@@ -375,26 +343,6 @@ files:
|
|
375
343
|
- spec/factories/bscf/core/users.rb
|
376
344
|
- spec/factories/bscf/core/virtual_account_transactions.rb
|
377
345
|
- spec/factories/bscf/core/virtual_accounts.rb
|
378
|
-
- spec/models/bscf/core/address_spec.rb
|
379
|
-
- spec/models/bscf/core/business_spec.rb
|
380
|
-
- spec/models/bscf/core/category_spec.rb
|
381
|
-
- spec/models/bscf/core/order_item_spec.rb
|
382
|
-
- spec/models/bscf/core/order_spec.rb
|
383
|
-
- spec/models/bscf/core/product_spec.rb
|
384
|
-
- spec/models/bscf/core/quotation_item_spec.rb
|
385
|
-
- spec/models/bscf/core/quotation_spec.rb
|
386
|
-
- spec/models/bscf/core/request_for_quotation_spec.rb
|
387
|
-
- spec/models/bscf/core/rfq_item_spec.rb
|
388
|
-
- spec/models/bscf/core/role_spec.rb
|
389
|
-
- spec/models/bscf/core/user_profile_spec.rb
|
390
|
-
- spec/models/bscf/core/user_role_spec.rb
|
391
|
-
- spec/models/bscf/core/user_spec.rb
|
392
|
-
- spec/models/bscf/core/virtual_account_spec.rb
|
393
|
-
- spec/models/bscf/core/virtual_account_transaction_spec.rb
|
394
|
-
- spec/rails_helper.rb
|
395
|
-
- spec/spec_helper.rb
|
396
|
-
- spec/support/models/shared_examples.rb
|
397
|
-
- spec/support/requests/shared_requests.rb
|
398
346
|
homepage: https://mksaddis.com/
|
399
347
|
licenses:
|
400
348
|
- MIT
|
data/spec/dummy/Rakefile
DELETED
@@ -1,15 +0,0 @@
|
|
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 other CSS/SCSS
|
10
|
-
* files in this directory. Styles in this file should be added after the last require_* statement.
|
11
|
-
* It is generally better to create a new file per style scope.
|
12
|
-
*
|
13
|
-
*= require_tree .
|
14
|
-
*= require_self
|
15
|
-
*/
|
@@ -1,7 +0,0 @@
|
|
1
|
-
class ApplicationJob < ActiveJob::Base
|
2
|
-
# Automatically retry jobs that encountered a deadlock
|
3
|
-
# retry_on ActiveRecord::Deadlocked
|
4
|
-
|
5
|
-
# Most jobs are safe to ignore if the underlying records are no longer available
|
6
|
-
# discard_on ActiveJob::DeserializationError
|
7
|
-
end
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= yield %>
|
data/spec/dummy/bin/dev
DELETED
data/spec/dummy/bin/rails
DELETED
data/spec/dummy/bin/rake
DELETED
data/spec/dummy/bin/setup
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
require "fileutils"
|
3
|
-
|
4
|
-
APP_ROOT = File.expand_path("..", __dir__)
|
5
|
-
|
6
|
-
def system!(*args)
|
7
|
-
system(*args, exception: true)
|
8
|
-
end
|
9
|
-
|
10
|
-
FileUtils.chdir APP_ROOT do
|
11
|
-
# This script is a way to set up or update your development environment automatically.
|
12
|
-
# This script is idempotent, so that you can run it at any time and get an expectable outcome.
|
13
|
-
# Add necessary setup steps to this file.
|
14
|
-
|
15
|
-
puts "== Installing dependencies =="
|
16
|
-
system("bundle check") || system!("bundle install")
|
17
|
-
|
18
|
-
# puts "\n== Copying sample files =="
|
19
|
-
# unless File.exist?("config/database.yml")
|
20
|
-
# FileUtils.cp "config/database.yml.sample", "config/database.yml"
|
21
|
-
# end
|
22
|
-
|
23
|
-
puts "\n== Preparing database =="
|
24
|
-
system! "bin/rails db:prepare"
|
25
|
-
|
26
|
-
puts "\n== Removing old logs and tempfiles =="
|
27
|
-
system! "bin/rails log:clear tmp:clear"
|
28
|
-
|
29
|
-
unless ARGV.include?("--skip-server")
|
30
|
-
puts "\n== Starting development server =="
|
31
|
-
STDOUT.flush # flush the output before exec(2) so that it displays
|
32
|
-
exec "bin/dev"
|
33
|
-
end
|
34
|
-
end
|
@@ -1,43 +0,0 @@
|
|
1
|
-
require_relative "boot"
|
2
|
-
|
3
|
-
require "rails"
|
4
|
-
# Pick the frameworks you want:
|
5
|
-
require "active_model/railtie"
|
6
|
-
require "active_job/railtie"
|
7
|
-
require "active_record/railtie"
|
8
|
-
require "active_storage/engine"
|
9
|
-
require "action_controller/railtie"
|
10
|
-
require "action_mailer/railtie"
|
11
|
-
require "action_mailbox/engine"
|
12
|
-
require "action_text/engine"
|
13
|
-
require "action_view/railtie"
|
14
|
-
require "action_cable/engine"
|
15
|
-
# require "rails/test_unit/railtie"
|
16
|
-
|
17
|
-
# Require the gems listed in Gemfile, including any gems
|
18
|
-
# you've limited to :test, :development, or :production.
|
19
|
-
Bundler.require(*Rails.groups)
|
20
|
-
|
21
|
-
module Dummy
|
22
|
-
class Application < Rails::Application
|
23
|
-
config.load_defaults Rails::VERSION::STRING.to_f
|
24
|
-
|
25
|
-
# Please, add to the `ignore` list any other `lib` subdirectories that do
|
26
|
-
# not contain `.rb` files, or that should not be reloaded or eager loaded.
|
27
|
-
# Common ones are `templates`, `generators`, or `middleware`, for example.
|
28
|
-
config.autoload_lib(ignore: %w[assets tasks])
|
29
|
-
|
30
|
-
# Configuration for the application, engines, and railties goes here.
|
31
|
-
#
|
32
|
-
# These settings can be overridden in specific environments using the files
|
33
|
-
# in config/environments, which are processed later.
|
34
|
-
#
|
35
|
-
# config.time_zone = "Central Time (US & Canada)"
|
36
|
-
# config.eager_load_paths << Rails.root.join("extras")
|
37
|
-
|
38
|
-
# Only loads a smaller set of middleware suitable for API only apps.
|
39
|
-
# Middleware like session, flash, cookies can be added back manually.
|
40
|
-
# Skip views, helpers and assets when generating a new resource.
|
41
|
-
config.api_only = true
|
42
|
-
end
|
43
|
-
end
|
data/spec/dummy/config/boot.rb
DELETED
data/spec/dummy/config/cable.yml
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
default: &default
|
2
|
-
adapter: postgresql
|
3
|
-
encoding: unicode
|
4
|
-
host: localhost
|
5
|
-
port: 5432
|
6
|
-
username: postgres
|
7
|
-
password: password
|
8
|
-
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
|
9
|
-
timeout: 5000
|
10
|
-
|
11
|
-
development:
|
12
|
-
<<: *default
|
13
|
-
database: bscf_dev
|
14
|
-
|
15
|
-
test:
|
16
|
-
<<: *default
|
17
|
-
database: bscf_test
|
@@ -1,67 +0,0 @@
|
|
1
|
-
require "active_support/core_ext/integer/time"
|
2
|
-
|
3
|
-
Rails.application.configure do
|
4
|
-
# Settings specified here will take precedence over those in config/application.rb.
|
5
|
-
|
6
|
-
# Make code changes take effect immediately without server restart.
|
7
|
-
config.enable_reloading = true
|
8
|
-
|
9
|
-
# Do not eager load code on boot.
|
10
|
-
config.eager_load = false
|
11
|
-
|
12
|
-
# Show full error reports.
|
13
|
-
config.consider_all_requests_local = true
|
14
|
-
|
15
|
-
# Enable server timing.
|
16
|
-
config.server_timing = true
|
17
|
-
|
18
|
-
# Enable/disable Action Controller caching. By default Action Controller caching is disabled.
|
19
|
-
# Run rails dev:cache to toggle Action Controller caching.
|
20
|
-
if Rails.root.join("tmp/caching-dev.txt").exist?
|
21
|
-
config.public_file_server.headers = { "cache-control" => "public, max-age=#{2.days.to_i}" }
|
22
|
-
else
|
23
|
-
config.action_controller.perform_caching = false
|
24
|
-
end
|
25
|
-
|
26
|
-
# Change to :null_store to avoid any caching.
|
27
|
-
config.cache_store = :memory_store
|
28
|
-
|
29
|
-
# Store uploaded files on the local file system (see config/storage.yml for options).
|
30
|
-
config.active_storage.service = :local
|
31
|
-
|
32
|
-
# Don't care if the mailer can't send.
|
33
|
-
config.action_mailer.raise_delivery_errors = false
|
34
|
-
|
35
|
-
# Make template changes take effect immediately.
|
36
|
-
config.action_mailer.perform_caching = false
|
37
|
-
|
38
|
-
# Set localhost to be used by links generated in mailer templates.
|
39
|
-
config.action_mailer.default_url_options = { host: "localhost", port: 3000 }
|
40
|
-
|
41
|
-
# Print deprecation notices to the Rails logger.
|
42
|
-
config.active_support.deprecation = :log
|
43
|
-
|
44
|
-
# Raise an error on page load if there are pending migrations.
|
45
|
-
config.active_record.migration_error = :page_load
|
46
|
-
|
47
|
-
# Highlight code that triggered database queries in logs.
|
48
|
-
config.active_record.verbose_query_logs = true
|
49
|
-
|
50
|
-
# Append comments with runtime information tags to SQL queries in logs.
|
51
|
-
config.active_record.query_log_tags_enabled = true
|
52
|
-
|
53
|
-
# Highlight code that enqueued background job in logs.
|
54
|
-
config.active_job.verbose_enqueue_logs = true
|
55
|
-
|
56
|
-
# Raises error for missing translations.
|
57
|
-
# config.i18n.raise_on_missing_translations = true
|
58
|
-
|
59
|
-
# Annotate rendered view with file names.
|
60
|
-
config.action_view.annotate_rendered_view_with_filenames = true
|
61
|
-
|
62
|
-
# Uncomment if you wish to allow Action Cable access from any origin.
|
63
|
-
# config.action_cable.disable_request_forgery_protection = true
|
64
|
-
|
65
|
-
# Raise error when a before_action's only/except options reference missing actions.
|
66
|
-
config.action_controller.raise_on_missing_callback_actions = true
|
67
|
-
end
|
@@ -1,86 +0,0 @@
|
|
1
|
-
require "active_support/core_ext/integer/time"
|
2
|
-
|
3
|
-
Rails.application.configure do
|
4
|
-
# Settings specified here will take precedence over those in config/application.rb.
|
5
|
-
|
6
|
-
# Code is not reloaded between requests.
|
7
|
-
config.enable_reloading = false
|
8
|
-
|
9
|
-
# Eager load code on boot for better performance and memory savings (ignored by Rake tasks).
|
10
|
-
config.eager_load = true
|
11
|
-
|
12
|
-
# Full error reports are disabled.
|
13
|
-
config.consider_all_requests_local = false
|
14
|
-
|
15
|
-
# Cache assets for far-future expiry since they are all digest stamped.
|
16
|
-
config.public_file_server.headers = { "cache-control" => "public, max-age=#{1.year.to_i}" }
|
17
|
-
|
18
|
-
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
19
|
-
# config.asset_host = "http://assets.example.com"
|
20
|
-
|
21
|
-
# Store uploaded files on the local file system (see config/storage.yml for options).
|
22
|
-
config.active_storage.service = :local
|
23
|
-
|
24
|
-
# Assume all access to the app is happening through a SSL-terminating reverse proxy.
|
25
|
-
config.assume_ssl = true
|
26
|
-
|
27
|
-
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
28
|
-
config.force_ssl = true
|
29
|
-
|
30
|
-
# Skip http-to-https redirect for the default health check endpoint.
|
31
|
-
# config.ssl_options = { redirect: { exclude: ->(request) { request.path == "/up" } } }
|
32
|
-
|
33
|
-
# Log to STDOUT with the current request id as a default log tag.
|
34
|
-
config.log_tags = [ :request_id ]
|
35
|
-
config.logger = ActiveSupport::TaggedLogging.logger(STDOUT)
|
36
|
-
|
37
|
-
# Change to "debug" to log everything (including potentially personally-identifiable information!)
|
38
|
-
config.log_level = ENV.fetch("RAILS_LOG_LEVEL", "info")
|
39
|
-
|
40
|
-
# Prevent health checks from clogging up the logs.
|
41
|
-
config.silence_healthcheck_path = "/up"
|
42
|
-
|
43
|
-
# Don't log any deprecations.
|
44
|
-
config.active_support.report_deprecations = false
|
45
|
-
|
46
|
-
# Replace the default in-process memory cache store with a durable alternative.
|
47
|
-
# config.cache_store = :mem_cache_store
|
48
|
-
|
49
|
-
# Replace the default in-process and non-durable queuing backend for Active Job.
|
50
|
-
# config.active_job.queue_adapter = :resque
|
51
|
-
|
52
|
-
# Ignore bad email addresses and do not raise email delivery errors.
|
53
|
-
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
54
|
-
# config.action_mailer.raise_delivery_errors = false
|
55
|
-
|
56
|
-
# Set host to be used by links generated in mailer templates.
|
57
|
-
config.action_mailer.default_url_options = { host: "example.com" }
|
58
|
-
|
59
|
-
# Specify outgoing SMTP server. Remember to add smtp/* credentials via rails credentials:edit.
|
60
|
-
# config.action_mailer.smtp_settings = {
|
61
|
-
# user_name: Rails.application.credentials.dig(:smtp, :user_name),
|
62
|
-
# password: Rails.application.credentials.dig(:smtp, :password),
|
63
|
-
# address: "smtp.example.com",
|
64
|
-
# port: 587,
|
65
|
-
# authentication: :plain
|
66
|
-
# }
|
67
|
-
|
68
|
-
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
69
|
-
# the I18n.default_locale when a translation cannot be found).
|
70
|
-
config.i18n.fallbacks = true
|
71
|
-
|
72
|
-
# Do not dump schema after migrations.
|
73
|
-
config.active_record.dump_schema_after_migration = false
|
74
|
-
|
75
|
-
# Only use :id for inspections in production.
|
76
|
-
config.active_record.attributes_for_inspect = [ :id ]
|
77
|
-
|
78
|
-
# Enable DNS rebinding protection and other `Host` header attacks.
|
79
|
-
# config.hosts = [
|
80
|
-
# "example.com", # Allow requests from example.com
|
81
|
-
# /.*\.example\.com/ # Allow requests from subdomains like `www.example.com`
|
82
|
-
# ]
|
83
|
-
#
|
84
|
-
# Skip DNS rebinding protection for the default health check endpoint.
|
85
|
-
# config.host_authorization = { exclude: ->(request) { request.path == "/up" } }
|
86
|
-
end
|
@@ -1,53 +0,0 @@
|
|
1
|
-
# The test environment is used exclusively to run your application's
|
2
|
-
# test suite. You never need to work with it otherwise. Remember that
|
3
|
-
# your test database is "scratch space" for the test suite and is wiped
|
4
|
-
# and recreated between test runs. Don't rely on the data there!
|
5
|
-
|
6
|
-
Rails.application.configure do
|
7
|
-
# Settings specified here will take precedence over those in config/application.rb.
|
8
|
-
|
9
|
-
# While tests run files are not watched, reloading is not necessary.
|
10
|
-
config.enable_reloading = false
|
11
|
-
|
12
|
-
# Eager loading loads your entire application. When running a single test locally,
|
13
|
-
# this is usually not necessary, and can slow down your test suite. However, it's
|
14
|
-
# recommended that you enable it in continuous integration systems to ensure eager
|
15
|
-
# loading is working properly before deploying your code.
|
16
|
-
config.eager_load = ENV["CI"].present?
|
17
|
-
|
18
|
-
# Configure public file server for tests with cache-control for performance.
|
19
|
-
config.public_file_server.headers = { "cache-control" => "public, max-age=3600" }
|
20
|
-
|
21
|
-
# Show full error reports.
|
22
|
-
config.consider_all_requests_local = true
|
23
|
-
config.cache_store = :null_store
|
24
|
-
|
25
|
-
# Render exception templates for rescuable exceptions and raise for other exceptions.
|
26
|
-
config.action_dispatch.show_exceptions = :rescuable
|
27
|
-
|
28
|
-
# Disable request forgery protection in test environment.
|
29
|
-
config.action_controller.allow_forgery_protection = false
|
30
|
-
|
31
|
-
# Store uploaded files on the local file system in a temporary directory.
|
32
|
-
config.active_storage.service = :test
|
33
|
-
|
34
|
-
# Tell Action Mailer not to deliver emails to the real world.
|
35
|
-
# The :test delivery method accumulates sent emails in the
|
36
|
-
# ActionMailer::Base.deliveries array.
|
37
|
-
config.action_mailer.delivery_method = :test
|
38
|
-
|
39
|
-
# Set host to be used by links generated in mailer templates.
|
40
|
-
config.action_mailer.default_url_options = { host: "example.com" }
|
41
|
-
|
42
|
-
# Print deprecation notices to the stderr.
|
43
|
-
config.active_support.deprecation = :stderr
|
44
|
-
|
45
|
-
# Raises error for missing translations.
|
46
|
-
# config.i18n.raise_on_missing_translations = true
|
47
|
-
|
48
|
-
# Annotate rendered view with file names.
|
49
|
-
# config.action_view.annotate_rendered_view_with_filenames = true
|
50
|
-
|
51
|
-
# Raise error when a before_action's only/except options reference missing actions.
|
52
|
-
config.action_controller.raise_on_missing_callback_actions = true
|
53
|
-
end
|
@@ -1,16 +0,0 @@
|
|
1
|
-
# Be sure to restart your server when you modify this file.
|
2
|
-
|
3
|
-
# Avoid CORS issues when API is called from the frontend app.
|
4
|
-
# Handle Cross-Origin Resource Sharing (CORS) in order to accept cross-origin Ajax requests.
|
5
|
-
|
6
|
-
# Read more: https://github.com/cyu/rack-cors
|
7
|
-
|
8
|
-
# Rails.application.config.middleware.insert_before 0, Rack::Cors do
|
9
|
-
# allow do
|
10
|
-
# origins "example.com"
|
11
|
-
#
|
12
|
-
# resource "*",
|
13
|
-
# headers: :any,
|
14
|
-
# methods: [:get, :post, :put, :patch, :delete, :options, :head]
|
15
|
-
# end
|
16
|
-
# end
|