Class: Dev::Template::Docker::Php::Application
- Inherits:
-
ApplicationInterface
- Object
- BaseInterface
- ApplicationInterface
- Dev::Template::Docker::Php::Application
- Defined in:
- lib/firespring_dev_commands/templates/docker/php/application.rb
Overview
Class for default rake tasks associated with a php project
Instance Attribute Summary collapse
-
#php ⇒ Object
readonly
Returns the value of attribute php.
-
#start_container_dependencies_on_test ⇒ Object
readonly
Returns the value of attribute start_container_dependencies_on_test.
Attributes inherited from ApplicationInterface
Attributes inherited from BaseInterface
Instance Method Summary collapse
-
#create_audit_task! ⇒ Object
Create the rake tasks which runs the security audits for the application packages.
-
#create_eol_task! ⇒ Object
Create the rake task for the php eol method.
-
#create_install_task! ⇒ Object
Create the rake tasks which runs the install command for the application packages.
-
#create_lint_task! ⇒ Object
Create the rake task which runs linting for the application name rubocop:disable Metrics/MethodLength.
-
#create_test_task! ⇒ Object
Create the rake task which runs all tests for the application name.
-
#create_vendor_download_task! ⇒ Object
Create the rake task which downloads the vendor directory to your local system for the given application name.
-
#create_vendor_upload_task! ⇒ Object
Create the rake task which uploads the vendor directory from your local system for the given application name.
-
#initialize(application, container_path: nil, local_path: nil, start_container_dependencies_on_test: true, coverage: nil, exclude: []) ⇒ Application
constructor
Create the templated rake tasks for the php application.
Methods inherited from BaseInterface
Constructor Details
#initialize(application, container_path: nil, local_path: nil, start_container_dependencies_on_test: true, coverage: nil, exclude: []) ⇒ Application
Create the templated rake tasks for the php application
18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/firespring_dev_commands/templates/docker/php/application.rb', line 18 def initialize( application, container_path: nil, local_path: nil, start_container_dependencies_on_test: true, coverage: nil, exclude: [] ) @php = Dev::Php.new(container_path:, local_path:, coverage:) @start_container_dependencies_on_test = start_container_dependencies_on_test super(application, exclude:) end |
Instance Attribute Details
#php ⇒ Object (readonly)
Returns the value of attribute php.
10 11 12 |
# File 'lib/firespring_dev_commands/templates/docker/php/application.rb', line 10 def php @php end |
#start_container_dependencies_on_test ⇒ Object (readonly)
Returns the value of attribute start_container_dependencies_on_test.
10 11 12 |
# File 'lib/firespring_dev_commands/templates/docker/php/application.rb', line 10 def start_container_dependencies_on_test @start_container_dependencies_on_test end |
Instance Method Details
#create_audit_task! ⇒ Object
Create the rake tasks which runs the security audits for the application packages
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 |
# File 'lib/firespring_dev_commands/templates/docker/php/application.rb', line 175 def create_audit_task! # Have to set a local variable to be accessible inside of the instance_eval block application = @name php = @php exclude = @exclude return if exclude.include?(:audit) DEV_COMMANDS_TOP_LEVEL.instance_eval do namespace application do desc 'Run all security audits' task audit: %w(php:audit) do # This is just a placeholder to execute the dependencies end namespace :php do desc 'Run Composer Audit on the target application' \ "\n\tuse MIN_SEVERITY=(info low moderate high critical) to fetch only severity type selected and above (default=high)." \ "\n\tuse IGNORELIST=(comma delimited list of cwe numbers) removes the entry from the list." task audit: %w(init_docker up_no_deps) do opts = [] opts << '-T' if Dev::Common.new.running_codebuild? # Retrieve results of the scan. data = Dev::Docker::Compose.new(services: application, options: opts, capture: true).exec(*php.audit_command) Dev::Php::Audit.new(data).to_report.check end # namespace :audit do # desc 'Fix the composer vulnerabilities that were found' # task fix: %w(init_docker up_no_deps) do # raise 'not implemented' # # Dev::Docker::Compose.new(services: application).exec(*php.audit_fix_command) # end # end end end end end |
#create_eol_task! ⇒ Object
Create the rake task for the php eol method
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
# File 'lib/firespring_dev_commands/templates/docker/php/application.rb', line 215 def create_eol_task! # Have to set a local variable to be accessible inside of the instance_eval block exclude = @exclude php = @php DEV_COMMANDS_TOP_LEVEL.instance_eval do return if exclude.include?(:eol) task eol: [:'eol:php'] do # Thie is just a placeholder to execute the dependencies end namespace :eol do desc 'Compares the current date to the EOL date for supported packages in the php package file' task php: %w(init) do eol = Dev::EndOfLife::Php.new(php) php_products = eol.default_products puts puts "Php product versions (in #{eol.lockfile})".light_yellow Dev::EndOfLife.new(product_versions: php_products).status end end end end |
#create_install_task! ⇒ Object
Create the rake tasks which runs the install command for the application packages
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
# File 'lib/firespring_dev_commands/templates/docker/php/application.rb', line 155 def create_install_task! # Have to set a local variable to be accessible inside of the instance_eval block application = @name php = @php exclude = @exclude return if exclude.include?(:install) DEV_COMMANDS_TOP_LEVEL.instance_eval do namespace application do namespace :php do desc 'Install all composer packages' task install: %w(init_docker up_no_deps) do Dev::Docker::Compose.new(services: application).exec(*php.install_command) end end end end end |
#create_lint_task! ⇒ Object
Create the rake task which runs linting for the application name rubocop:disable Metrics/MethodLength
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
# File 'lib/firespring_dev_commands/templates/docker/php/application.rb', line 78 def create_lint_task! application = @name php = @php exclude = @exclude return if exclude.include?(:lint) DEV_COMMANDS_TOP_LEVEL.instance_eval do namespace application do desc 'Run all linting software' task lint: %w(php:lint) do # This is just a placeholder to execute the dependencies end namespace :lint do desc 'Run all linting software and apply all available fixes' task fix: %w(php:lint:fix) do # This is just a placeholder to execute the dependencies end end namespace :php do desc "Run the php linting software against the #{application}'s codebase" task lint: %w(init_docker up_no_deps) do LOG.debug("Check for php linting errors in the #{application} codebase") = [] << '-T' if Dev::Common.new.running_codebuild? Dev::Docker::Compose.new(services: application, options:).exec(*php.lint_command) end namespace :lint do desc "Run the php linting software against the #{application}'s codebase and apply all available fixes" task fix: %w(init_docker up_no_deps) do LOG.debug("Check and fix all php linting errors in the #{application} codebase") = [] << '-T' if Dev::Common.new.running_codebuild? Dev::Docker::Compose.new(services: application, options:).exec(*php.lint_fix_command) end end end end end end |
#create_test_task! ⇒ Object
Create the rake task which runs all tests for the application name
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
# File 'lib/firespring_dev_commands/templates/docker/php/application.rb', line 125 def create_test_task! application = @name php = @php exclude = @exclude up_cmd = @start_container_dependencies_on_test ? :up : :up_no_deps return if exclude.include?(:test) DEV_COMMANDS_TOP_LEVEL.instance_eval do namespace application do desc 'Run all tests' task test: %w(php:test) do # This is just a placeholder to execute the dependencies end namespace :php do desc "Run all php tests against the #{application}'s codebase" task test: %W(init_docker #{up_cmd}) do LOG.debug("Running all php tests in the #{application} codebase") = [] << '-T' if Dev::Common.new.running_codebuild? Dev::Docker::Compose.new(services: application, options:).exec(*php.test_command) php.check_test_coverage(application:) end end end end end |
#create_vendor_download_task! ⇒ Object
Create the rake task which downloads the vendor directory to your local system for the given application name
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/firespring_dev_commands/templates/docker/php/application.rb', line 33 def create_vendor_download_task! application = @name php = @php exclude = @exclude return if exclude.include?(:'vendor:download') DEV_COMMANDS_TOP_LEVEL.instance_eval do namespace application do namespace :php do namespace :vendor do desc "Copy #{application} vendor files from the container to your local system" task download: %w(init_docker up_no_deps) do container = Dev::Docker::Compose.new.container_by_name(application) Dev::Docker.new.copy_from_container(container, "#{php.container_path}/vendor/", "#{php.local_path}/vendor/", required: true) end end end end end end |
#create_vendor_upload_task! ⇒ Object
Create the rake task which uploads the vendor directory from your local system for the given application name
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
# File 'lib/firespring_dev_commands/templates/docker/php/application.rb', line 55 def create_vendor_upload_task! application = @name php = @php exclude = @exclude return if exclude.include?(:'vendor:upload') DEV_COMMANDS_TOP_LEVEL.instance_eval do namespace application do namespace :php do namespace :vendor do desc "Copy #{application} vendor files from your local system to the container" task upload: %w(init_docker up_no_deps) do container = Dev::Docker::Compose.new.container_by_name(application) Dev::Docker.new.copy_to_container(container, "#{php.local_path}/vendor/", "#{php.container_path}/vendor/") end end end end end end |