From 3bdcfdb50249a6a43fdd272f0c2ccce1b519d60e Mon Sep 17 00:00:00 2001 From: Kitsai Date: Tue, 11 Nov 2025 18:23:05 -0300 Subject: [PATCH 001/151] initial commit --- CAMAAR/.dockerignore | 51 ++ CAMAAR/.gitattributes | 9 + CAMAAR/.github/dependabot.yml | 12 + CAMAAR/.github/workflows/ci.yml | 124 +++++ CAMAAR/.gitignore | 35 ++ CAMAAR/.kamal/hooks/docker-setup.sample | 3 + CAMAAR/.kamal/hooks/post-app-boot.sample | 3 + CAMAAR/.kamal/hooks/post-deploy.sample | 14 + CAMAAR/.kamal/hooks/post-proxy-reboot.sample | 3 + CAMAAR/.kamal/hooks/pre-app-boot.sample | 3 + CAMAAR/.kamal/hooks/pre-build.sample | 51 ++ CAMAAR/.kamal/hooks/pre-connect.sample | 47 ++ CAMAAR/.kamal/hooks/pre-deploy.sample | 122 +++++ CAMAAR/.kamal/hooks/pre-proxy-reboot.sample | 3 + CAMAAR/.kamal/secrets | 20 + CAMAAR/.rubocop.yml | 8 + CAMAAR/.ruby-version | 1 + CAMAAR/Dockerfile | 76 +++ CAMAAR/Gemfile | 68 +++ CAMAAR/Gemfile.lock | 450 ++++++++++++++++++ CAMAAR/README.md | 24 + CAMAAR/Rakefile | 6 + CAMAAR/app/assets/images/.keep | 0 CAMAAR/app/assets/stylesheets/application.css | 10 + .../app/controllers/application_controller.rb | 7 + CAMAAR/app/controllers/concerns/.keep | 0 CAMAAR/app/helpers/application_helper.rb | 2 + CAMAAR/app/javascript/application.js | 3 + .../app/javascript/controllers/application.js | 9 + .../controllers/hello_controller.js | 7 + CAMAAR/app/javascript/controllers/index.js | 4 + CAMAAR/app/jobs/application_job.rb | 7 + CAMAAR/app/mailers/application_mailer.rb | 4 + CAMAAR/app/models/application_record.rb | 3 + CAMAAR/app/models/concerns/.keep | 0 CAMAAR/app/views/layouts/application.html.erb | 29 ++ CAMAAR/app/views/layouts/mailer.html.erb | 13 + CAMAAR/app/views/layouts/mailer.text.erb | 1 + CAMAAR/app/views/pwa/manifest.json.erb | 22 + CAMAAR/app/views/pwa/service-worker.js | 26 + CAMAAR/bin/brakeman | 7 + CAMAAR/bin/bundler-audit | 6 + CAMAAR/bin/ci | 6 + CAMAAR/bin/cucumber | 11 + CAMAAR/bin/dev | 2 + CAMAAR/bin/docker-entrypoint | 8 + CAMAAR/bin/importmap | 4 + CAMAAR/bin/jobs | 6 + CAMAAR/bin/kamal | 27 ++ CAMAAR/bin/rails | 4 + CAMAAR/bin/rake | 4 + CAMAAR/bin/rubocop | 8 + CAMAAR/bin/setup | 35 ++ CAMAAR/bin/thrust | 5 + CAMAAR/config.ru | 6 + CAMAAR/config/application.rb | 27 ++ CAMAAR/config/boot.rb | 4 + CAMAAR/config/bundler-audit.yml | 5 + CAMAAR/config/cable.yml | 17 + CAMAAR/config/cache.yml | 16 + CAMAAR/config/ci.rb | 23 + CAMAAR/config/credentials.yml.enc | 1 + CAMAAR/config/cucumber.yml | 8 + CAMAAR/config/database.yml | 41 ++ CAMAAR/config/deploy.yml | 120 +++++ CAMAAR/config/environment.rb | 5 + CAMAAR/config/environments/development.rb | 82 ++++ CAMAAR/config/environments/production.rb | 90 ++++ CAMAAR/config/environments/test.rb | 57 +++ CAMAAR/config/importmap.rb | 7 + CAMAAR/config/initializers/assets.rb | 7 + .../initializers/content_security_policy.rb | 29 ++ .../initializers/filter_parameter_logging.rb | 8 + CAMAAR/config/initializers/inflections.rb | 16 + CAMAAR/config/locales/en.yml | 31 ++ CAMAAR/config/puma.rb | 42 ++ CAMAAR/config/queue.yml | 18 + CAMAAR/config/recurring.yml | 15 + CAMAAR/config/routes.rb | 14 + CAMAAR/config/storage.yml | 27 ++ CAMAAR/db/cable_schema.rb | 11 + CAMAAR/db/cache_schema.rb | 12 + CAMAAR/db/queue_schema.rb | 129 +++++ CAMAAR/db/seeds.rb | 9 + CAMAAR/features/step_definitions/.keep | 0 CAMAAR/features/support/env.rb | 53 +++ CAMAAR/lib/tasks/.keep | 0 CAMAAR/lib/tasks/cucumber.rake | 69 +++ CAMAAR/log/.keep | 0 CAMAAR/public/400.html | 135 ++++++ CAMAAR/public/404.html | 135 ++++++ CAMAAR/public/406-unsupported-browser.html | 135 ++++++ CAMAAR/public/422.html | 135 ++++++ CAMAAR/public/500.html | 135 ++++++ CAMAAR/public/icon.png | Bin 0 -> 4166 bytes CAMAAR/public/icon.svg | 3 + CAMAAR/public/robots.txt | 1 + CAMAAR/script/.keep | 0 CAMAAR/storage/.keep | 0 CAMAAR/test/application_system_test_case.rb | 5 + CAMAAR/test/controllers/.keep | 0 CAMAAR/test/fixtures/files/.keep | 0 CAMAAR/test/helpers/.keep | 0 CAMAAR/test/integration/.keep | 0 CAMAAR/test/mailers/.keep | 0 CAMAAR/test/models/.keep | 0 CAMAAR/test/system/.keep | 0 CAMAAR/test/test_helper.rb | 15 + CAMAAR/tmp/.keep | 0 CAMAAR/tmp/pids/.keep | 0 CAMAAR/tmp/storage/.keep | 0 CAMAAR/vendor/.keep | 0 CAMAAR/vendor/javascript/.keep | 0 113 files changed, 3111 insertions(+) create mode 100644 CAMAAR/.dockerignore create mode 100644 CAMAAR/.gitattributes create mode 100644 CAMAAR/.github/dependabot.yml create mode 100644 CAMAAR/.github/workflows/ci.yml create mode 100644 CAMAAR/.gitignore create mode 100755 CAMAAR/.kamal/hooks/docker-setup.sample create mode 100755 CAMAAR/.kamal/hooks/post-app-boot.sample create mode 100755 CAMAAR/.kamal/hooks/post-deploy.sample create mode 100755 CAMAAR/.kamal/hooks/post-proxy-reboot.sample create mode 100755 CAMAAR/.kamal/hooks/pre-app-boot.sample create mode 100755 CAMAAR/.kamal/hooks/pre-build.sample create mode 100755 CAMAAR/.kamal/hooks/pre-connect.sample create mode 100755 CAMAAR/.kamal/hooks/pre-deploy.sample create mode 100755 CAMAAR/.kamal/hooks/pre-proxy-reboot.sample create mode 100644 CAMAAR/.kamal/secrets create mode 100644 CAMAAR/.rubocop.yml create mode 100644 CAMAAR/.ruby-version create mode 100644 CAMAAR/Dockerfile create mode 100644 CAMAAR/Gemfile create mode 100644 CAMAAR/Gemfile.lock create mode 100644 CAMAAR/README.md create mode 100644 CAMAAR/Rakefile create mode 100644 CAMAAR/app/assets/images/.keep create mode 100644 CAMAAR/app/assets/stylesheets/application.css create mode 100644 CAMAAR/app/controllers/application_controller.rb create mode 100644 CAMAAR/app/controllers/concerns/.keep create mode 100644 CAMAAR/app/helpers/application_helper.rb create mode 100644 CAMAAR/app/javascript/application.js create mode 100644 CAMAAR/app/javascript/controllers/application.js create mode 100644 CAMAAR/app/javascript/controllers/hello_controller.js create mode 100644 CAMAAR/app/javascript/controllers/index.js create mode 100644 CAMAAR/app/jobs/application_job.rb create mode 100644 CAMAAR/app/mailers/application_mailer.rb create mode 100644 CAMAAR/app/models/application_record.rb create mode 100644 CAMAAR/app/models/concerns/.keep create mode 100644 CAMAAR/app/views/layouts/application.html.erb create mode 100644 CAMAAR/app/views/layouts/mailer.html.erb create mode 100644 CAMAAR/app/views/layouts/mailer.text.erb create mode 100644 CAMAAR/app/views/pwa/manifest.json.erb create mode 100644 CAMAAR/app/views/pwa/service-worker.js create mode 100755 CAMAAR/bin/brakeman create mode 100755 CAMAAR/bin/bundler-audit create mode 100755 CAMAAR/bin/ci create mode 100755 CAMAAR/bin/cucumber create mode 100755 CAMAAR/bin/dev create mode 100755 CAMAAR/bin/docker-entrypoint create mode 100755 CAMAAR/bin/importmap create mode 100755 CAMAAR/bin/jobs create mode 100755 CAMAAR/bin/kamal create mode 100755 CAMAAR/bin/rails create mode 100755 CAMAAR/bin/rake create mode 100755 CAMAAR/bin/rubocop create mode 100755 CAMAAR/bin/setup create mode 100755 CAMAAR/bin/thrust create mode 100644 CAMAAR/config.ru create mode 100644 CAMAAR/config/application.rb create mode 100644 CAMAAR/config/boot.rb create mode 100644 CAMAAR/config/bundler-audit.yml create mode 100644 CAMAAR/config/cable.yml create mode 100644 CAMAAR/config/cache.yml create mode 100644 CAMAAR/config/ci.rb create mode 100644 CAMAAR/config/credentials.yml.enc create mode 100644 CAMAAR/config/cucumber.yml create mode 100644 CAMAAR/config/database.yml create mode 100644 CAMAAR/config/deploy.yml create mode 100644 CAMAAR/config/environment.rb create mode 100644 CAMAAR/config/environments/development.rb create mode 100644 CAMAAR/config/environments/production.rb create mode 100644 CAMAAR/config/environments/test.rb create mode 100644 CAMAAR/config/importmap.rb create mode 100644 CAMAAR/config/initializers/assets.rb create mode 100644 CAMAAR/config/initializers/content_security_policy.rb create mode 100644 CAMAAR/config/initializers/filter_parameter_logging.rb create mode 100644 CAMAAR/config/initializers/inflections.rb create mode 100644 CAMAAR/config/locales/en.yml create mode 100644 CAMAAR/config/puma.rb create mode 100644 CAMAAR/config/queue.yml create mode 100644 CAMAAR/config/recurring.yml create mode 100644 CAMAAR/config/routes.rb create mode 100644 CAMAAR/config/storage.yml create mode 100644 CAMAAR/db/cable_schema.rb create mode 100644 CAMAAR/db/cache_schema.rb create mode 100644 CAMAAR/db/queue_schema.rb create mode 100644 CAMAAR/db/seeds.rb create mode 100644 CAMAAR/features/step_definitions/.keep create mode 100644 CAMAAR/features/support/env.rb create mode 100644 CAMAAR/lib/tasks/.keep create mode 100644 CAMAAR/lib/tasks/cucumber.rake create mode 100644 CAMAAR/log/.keep create mode 100644 CAMAAR/public/400.html create mode 100644 CAMAAR/public/404.html create mode 100644 CAMAAR/public/406-unsupported-browser.html create mode 100644 CAMAAR/public/422.html create mode 100644 CAMAAR/public/500.html create mode 100644 CAMAAR/public/icon.png create mode 100644 CAMAAR/public/icon.svg create mode 100644 CAMAAR/public/robots.txt create mode 100644 CAMAAR/script/.keep create mode 100644 CAMAAR/storage/.keep create mode 100644 CAMAAR/test/application_system_test_case.rb create mode 100644 CAMAAR/test/controllers/.keep create mode 100644 CAMAAR/test/fixtures/files/.keep create mode 100644 CAMAAR/test/helpers/.keep create mode 100644 CAMAAR/test/integration/.keep create mode 100644 CAMAAR/test/mailers/.keep create mode 100644 CAMAAR/test/models/.keep create mode 100644 CAMAAR/test/system/.keep create mode 100644 CAMAAR/test/test_helper.rb create mode 100644 CAMAAR/tmp/.keep create mode 100644 CAMAAR/tmp/pids/.keep create mode 100644 CAMAAR/tmp/storage/.keep create mode 100644 CAMAAR/vendor/.keep create mode 100644 CAMAAR/vendor/javascript/.keep diff --git a/CAMAAR/.dockerignore b/CAMAAR/.dockerignore new file mode 100644 index 0000000000..325bfc036d --- /dev/null +++ b/CAMAAR/.dockerignore @@ -0,0 +1,51 @@ +# See https://docs.docker.com/engine/reference/builder/#dockerignore-file for more about ignoring files. + +# Ignore git directory. +/.git/ +/.gitignore + +# Ignore bundler config. +/.bundle + +# Ignore all environment files. +/.env* + +# Ignore all default key files. +/config/master.key +/config/credentials/*.key + +# Ignore all logfiles and tempfiles. +/log/* +/tmp/* +!/log/.keep +!/tmp/.keep + +# Ignore pidfiles, but keep the directory. +/tmp/pids/* +!/tmp/pids/.keep + +# Ignore storage (uploaded files in development and any SQLite databases). +/storage/* +!/storage/.keep +/tmp/storage/* +!/tmp/storage/.keep + +# Ignore assets. +/node_modules/ +/app/assets/builds/* +!/app/assets/builds/.keep +/public/assets + +# Ignore CI service files. +/.github + +# Ignore Kamal files. +/config/deploy*.yml +/.kamal + +# Ignore development files +/.devcontainer + +# Ignore Docker-related files +/.dockerignore +/Dockerfile* diff --git a/CAMAAR/.gitattributes b/CAMAAR/.gitattributes new file mode 100644 index 0000000000..8dc4323435 --- /dev/null +++ b/CAMAAR/.gitattributes @@ -0,0 +1,9 @@ +# See https://git-scm.com/docs/gitattributes for more about git attribute files. + +# Mark the database schema as having been generated. +db/schema.rb linguist-generated + +# Mark any vendored files as having been vendored. +vendor/* linguist-vendored +config/credentials/*.yml.enc diff=rails_credentials +config/credentials.yml.enc diff=rails_credentials diff --git a/CAMAAR/.github/dependabot.yml b/CAMAAR/.github/dependabot.yml new file mode 100644 index 0000000000..83610cfa4c --- /dev/null +++ b/CAMAAR/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: +- package-ecosystem: bundler + directory: "/" + schedule: + interval: weekly + open-pull-requests-limit: 10 +- package-ecosystem: github-actions + directory: "/" + schedule: + interval: weekly + open-pull-requests-limit: 10 diff --git a/CAMAAR/.github/workflows/ci.yml b/CAMAAR/.github/workflows/ci.yml new file mode 100644 index 0000000000..4adf8d4f8b --- /dev/null +++ b/CAMAAR/.github/workflows/ci.yml @@ -0,0 +1,124 @@ +name: CI + +on: + pull_request: + push: + branches: [ main ] + +jobs: + scan_ruby: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v5 + + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + bundler-cache: true + + - name: Scan for common Rails security vulnerabilities using static analysis + run: bin/brakeman --no-pager + + - name: Scan for known security vulnerabilities in gems used + run: bin/bundler-audit + + scan_js: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v5 + + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + bundler-cache: true + + - name: Scan for security vulnerabilities in JavaScript dependencies + run: bin/importmap audit + + lint: + runs-on: ubuntu-latest + env: + RUBOCOP_CACHE_ROOT: tmp/rubocop + steps: + - name: Checkout code + uses: actions/checkout@v5 + + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + bundler-cache: true + + - name: Prepare RuboCop cache + uses: actions/cache@v4 + env: + DEPENDENCIES_HASH: ${{ hashFiles('.ruby-version', '**/.rubocop.yml', '**/.rubocop_todo.yml', 'Gemfile.lock') }} + with: + path: ${{ env.RUBOCOP_CACHE_ROOT }} + key: rubocop-${{ runner.os }}-${{ env.DEPENDENCIES_HASH }}-${{ github.ref_name == github.event.repository.default_branch && github.run_id || 'default' }} + restore-keys: | + rubocop-${{ runner.os }}-${{ env.DEPENDENCIES_HASH }}- + + - name: Lint code for consistent style + run: bin/rubocop -f github + + test: + runs-on: ubuntu-latest + + # services: + # redis: + # image: valkey/valkey:8 + # ports: + # - 6379:6379 + # options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5 + steps: + - name: Checkout code + uses: actions/checkout@v5 + + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + bundler-cache: true + + - name: Run tests + env: + RAILS_ENV: test + # RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }} + # REDIS_URL: redis://localhost:6379/0 + run: bin/rails db:test:prepare test + + system-test: + runs-on: ubuntu-latest + + # services: + # redis: + # image: valkey/valkey:8 + # ports: + # - 6379:6379 + # options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5 + steps: + - name: Checkout code + uses: actions/checkout@v5 + + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + bundler-cache: true + + - name: Run System Tests + env: + RAILS_ENV: test + # RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }} + # REDIS_URL: redis://localhost:6379/0 + run: bin/rails db:test:prepare test:system + + - name: Keep screenshots from failed system tests + uses: actions/upload-artifact@v4 + if: failure() + with: + name: screenshots + path: ${{ github.workspace }}/tmp/screenshots + if-no-files-found: ignore diff --git a/CAMAAR/.gitignore b/CAMAAR/.gitignore new file mode 100644 index 0000000000..fbcab405eb --- /dev/null +++ b/CAMAAR/.gitignore @@ -0,0 +1,35 @@ +# See https://help.github.com/articles/ignoring-files for more about ignoring files. +# +# Temporary files generated by your text editor or operating system +# belong in git's global ignore instead: +# `$XDG_CONFIG_HOME/git/ignore` or `~/.config/git/ignore` + +# Ignore bundler config. +/.bundle + +# Ignore all environment files. +/.env* + +# Ignore all logfiles and tempfiles. +/log/* +/tmp/* +!/log/.keep +!/tmp/.keep + +# Ignore pidfiles, but keep the directory. +/tmp/pids/* +!/tmp/pids/ +!/tmp/pids/.keep + +# Ignore storage (uploaded files in development and any SQLite databases). +/storage/* +!/storage/.keep +/tmp/storage/* +!/tmp/storage/ +!/tmp/storage/.keep + +/public/assets + +# Ignore key files for decrypting credentials and more. +/config/*.key + diff --git a/CAMAAR/.kamal/hooks/docker-setup.sample b/CAMAAR/.kamal/hooks/docker-setup.sample new file mode 100755 index 0000000000..2fb07d7d7a --- /dev/null +++ b/CAMAAR/.kamal/hooks/docker-setup.sample @@ -0,0 +1,3 @@ +#!/bin/sh + +echo "Docker set up on $KAMAL_HOSTS..." diff --git a/CAMAAR/.kamal/hooks/post-app-boot.sample b/CAMAAR/.kamal/hooks/post-app-boot.sample new file mode 100755 index 0000000000..70f9c4bc95 --- /dev/null +++ b/CAMAAR/.kamal/hooks/post-app-boot.sample @@ -0,0 +1,3 @@ +#!/bin/sh + +echo "Booted app version $KAMAL_VERSION on $KAMAL_HOSTS..." diff --git a/CAMAAR/.kamal/hooks/post-deploy.sample b/CAMAAR/.kamal/hooks/post-deploy.sample new file mode 100755 index 0000000000..fd364c2a77 --- /dev/null +++ b/CAMAAR/.kamal/hooks/post-deploy.sample @@ -0,0 +1,14 @@ +#!/bin/sh + +# A sample post-deploy hook +# +# These environment variables are available: +# KAMAL_RECORDED_AT +# KAMAL_PERFORMER +# KAMAL_VERSION +# KAMAL_HOSTS +# KAMAL_ROLES (if set) +# KAMAL_DESTINATION (if set) +# KAMAL_RUNTIME + +echo "$KAMAL_PERFORMER deployed $KAMAL_VERSION to $KAMAL_DESTINATION in $KAMAL_RUNTIME seconds" diff --git a/CAMAAR/.kamal/hooks/post-proxy-reboot.sample b/CAMAAR/.kamal/hooks/post-proxy-reboot.sample new file mode 100755 index 0000000000..1435a677f2 --- /dev/null +++ b/CAMAAR/.kamal/hooks/post-proxy-reboot.sample @@ -0,0 +1,3 @@ +#!/bin/sh + +echo "Rebooted kamal-proxy on $KAMAL_HOSTS" diff --git a/CAMAAR/.kamal/hooks/pre-app-boot.sample b/CAMAAR/.kamal/hooks/pre-app-boot.sample new file mode 100755 index 0000000000..45f7355045 --- /dev/null +++ b/CAMAAR/.kamal/hooks/pre-app-boot.sample @@ -0,0 +1,3 @@ +#!/bin/sh + +echo "Booting app version $KAMAL_VERSION on $KAMAL_HOSTS..." diff --git a/CAMAAR/.kamal/hooks/pre-build.sample b/CAMAAR/.kamal/hooks/pre-build.sample new file mode 100755 index 0000000000..c5a55678b2 --- /dev/null +++ b/CAMAAR/.kamal/hooks/pre-build.sample @@ -0,0 +1,51 @@ +#!/bin/sh + +# A sample pre-build hook +# +# Checks: +# 1. We have a clean checkout +# 2. A remote is configured +# 3. The branch has been pushed to the remote +# 4. The version we are deploying matches the remote +# +# These environment variables are available: +# KAMAL_RECORDED_AT +# KAMAL_PERFORMER +# KAMAL_VERSION +# KAMAL_HOSTS +# KAMAL_ROLES (if set) +# KAMAL_DESTINATION (if set) + +if [ -n "$(git status --porcelain)" ]; then + echo "Git checkout is not clean, aborting..." >&2 + git status --porcelain >&2 + exit 1 +fi + +first_remote=$(git remote) + +if [ -z "$first_remote" ]; then + echo "No git remote set, aborting..." >&2 + exit 1 +fi + +current_branch=$(git branch --show-current) + +if [ -z "$current_branch" ]; then + echo "Not on a git branch, aborting..." >&2 + exit 1 +fi + +remote_head=$(git ls-remote $first_remote --tags $current_branch | cut -f1) + +if [ -z "$remote_head" ]; then + echo "Branch not pushed to remote, aborting..." >&2 + exit 1 +fi + +if [ "$KAMAL_VERSION" != "$remote_head" ]; then + echo "Version ($KAMAL_VERSION) does not match remote HEAD ($remote_head), aborting..." >&2 + exit 1 +fi + +exit 0 diff --git a/CAMAAR/.kamal/hooks/pre-connect.sample b/CAMAAR/.kamal/hooks/pre-connect.sample new file mode 100755 index 0000000000..77744bdca8 --- /dev/null +++ b/CAMAAR/.kamal/hooks/pre-connect.sample @@ -0,0 +1,47 @@ +#!/usr/bin/env ruby + +# A sample pre-connect check +# +# Warms DNS before connecting to hosts in parallel +# +# These environment variables are available: +# KAMAL_RECORDED_AT +# KAMAL_PERFORMER +# KAMAL_VERSION +# KAMAL_HOSTS +# KAMAL_ROLES (if set) +# KAMAL_DESTINATION (if set) +# KAMAL_RUNTIME + +hosts = ENV["KAMAL_HOSTS"].split(",") +results = nil +max = 3 + +elapsed = Benchmark.realtime do + results = hosts.map do |host| + Thread.new do + tries = 1 + + begin + Socket.getaddrinfo(host, 0, Socket::AF_UNSPEC, Socket::SOCK_STREAM, nil, Socket::AI_CANONNAME) + rescue SocketError + if tries < max + puts "Retrying DNS warmup: #{host}" + tries += 1 + sleep rand + retry + else + puts "DNS warmup failed: #{host}" + host + end + end + + tries + end + end.map(&:value) +end + +retries = results.sum - hosts.size +nopes = results.count { |r| r == max } + +puts "Prewarmed %d DNS lookups in %.2f sec: %d retries, %d failures" % [ hosts.size, elapsed, retries, nopes ] diff --git a/CAMAAR/.kamal/hooks/pre-deploy.sample b/CAMAAR/.kamal/hooks/pre-deploy.sample new file mode 100755 index 0000000000..05b3055b72 --- /dev/null +++ b/CAMAAR/.kamal/hooks/pre-deploy.sample @@ -0,0 +1,122 @@ +#!/usr/bin/env ruby + +# A sample pre-deploy hook +# +# Checks the Github status of the build, waiting for a pending build to complete for up to 720 seconds. +# +# Fails unless the combined status is "success" +# +# These environment variables are available: +# KAMAL_RECORDED_AT +# KAMAL_PERFORMER +# KAMAL_VERSION +# KAMAL_HOSTS +# KAMAL_COMMAND +# KAMAL_SUBCOMMAND +# KAMAL_ROLES (if set) +# KAMAL_DESTINATION (if set) + +# Only check the build status for production deployments +if ENV["KAMAL_COMMAND"] == "rollback" || ENV["KAMAL_DESTINATION"] != "production" + exit 0 +end + +require "bundler/inline" + +# true = install gems so this is fast on repeat invocations +gemfile(true, quiet: true) do + source "https://rubygems.org" + + gem "octokit" + gem "faraday-retry" +end + +MAX_ATTEMPTS = 72 +ATTEMPTS_GAP = 10 + +def exit_with_error(message) + $stderr.puts message + exit 1 +end + +class GithubStatusChecks + attr_reader :remote_url, :git_sha, :github_client, :combined_status + + def initialize + @remote_url = github_repo_from_remote_url + @git_sha = `git rev-parse HEAD`.strip + @github_client = Octokit::Client.new(access_token: ENV["GITHUB_TOKEN"]) + refresh! + end + + def refresh! + @combined_status = github_client.combined_status(remote_url, git_sha) + end + + def state + combined_status[:state] + end + + def first_status_url + first_status = combined_status[:statuses].find { |status| status[:state] == state } + first_status && first_status[:target_url] + end + + def complete_count + combined_status[:statuses].count { |status| status[:state] != "pending"} + end + + def total_count + combined_status[:statuses].count + end + + def current_status + if total_count > 0 + "Completed #{complete_count}/#{total_count} checks, see #{first_status_url} ..." + else + "Build not started..." + end + end + + private + def github_repo_from_remote_url + url = `git config --get remote.origin.url`.strip.delete_suffix(".git") + if url.start_with?("https://github.com/") + url.delete_prefix("https://github.com/") + elsif url.start_with?("git@github.com:") + url.delete_prefix("git@github.com:") + else + url + end + end +end + + +$stdout.sync = true + +begin + puts "Checking build status..." + + attempts = 0 + checks = GithubStatusChecks.new + + loop do + case checks.state + when "success" + puts "Checks passed, see #{checks.first_status_url}" + exit 0 + when "failure" + exit_with_error "Checks failed, see #{checks.first_status_url}" + when "pending" + attempts += 1 + end + + exit_with_error "Checks are still pending, gave up after #{MAX_ATTEMPTS * ATTEMPTS_GAP} seconds" if attempts == MAX_ATTEMPTS + + puts checks.current_status + sleep(ATTEMPTS_GAP) + checks.refresh! + end +rescue Octokit::NotFound + exit_with_error "Build status could not be found" +end diff --git a/CAMAAR/.kamal/hooks/pre-proxy-reboot.sample b/CAMAAR/.kamal/hooks/pre-proxy-reboot.sample new file mode 100755 index 0000000000..061f8059e6 --- /dev/null +++ b/CAMAAR/.kamal/hooks/pre-proxy-reboot.sample @@ -0,0 +1,3 @@ +#!/bin/sh + +echo "Rebooting kamal-proxy on $KAMAL_HOSTS..." diff --git a/CAMAAR/.kamal/secrets b/CAMAAR/.kamal/secrets new file mode 100644 index 0000000000..b3089d6f5a --- /dev/null +++ b/CAMAAR/.kamal/secrets @@ -0,0 +1,20 @@ +# Secrets defined here are available for reference under registry/password, env/secret, builder/secrets, +# and accessories/*/env/secret in config/deploy.yml. All secrets should be pulled from either +# password manager, ENV, or a file. DO NOT ENTER RAW CREDENTIALS HERE! This file needs to be safe for git. + +# Example of extracting secrets from 1password (or another compatible pw manager) +# SECRETS=$(kamal secrets fetch --adapter 1password --account your-account --from Vault/Item KAMAL_REGISTRY_PASSWORD RAILS_MASTER_KEY) +# KAMAL_REGISTRY_PASSWORD=$(kamal secrets extract KAMAL_REGISTRY_PASSWORD ${SECRETS}) +# RAILS_MASTER_KEY=$(kamal secrets extract RAILS_MASTER_KEY ${SECRETS}) + +# Example of extracting secrets from Rails credentials +# KAMAL_REGISTRY_PASSWORD=$(rails credentials:fetch kamal.registry_password) + +# Use a GITHUB_TOKEN if private repositories are needed for the image +# GITHUB_TOKEN=$(gh config get -h github.com oauth_token) + +# Grab the registry password from ENV +# KAMAL_REGISTRY_PASSWORD=$KAMAL_REGISTRY_PASSWORD + +# Improve security by using a password manager. Never check config/master.key into git! +RAILS_MASTER_KEY=$(cat config/master.key) diff --git a/CAMAAR/.rubocop.yml b/CAMAAR/.rubocop.yml new file mode 100644 index 0000000000..f9d86d4a54 --- /dev/null +++ b/CAMAAR/.rubocop.yml @@ -0,0 +1,8 @@ +# Omakase Ruby styling for Rails +inherit_gem: { rubocop-rails-omakase: rubocop.yml } + +# Overwrite or add rules to create your own house style +# +# # Use `[a, [b, c]]` not `[ a, [ b, c ] ]` +# Layout/SpaceInsideArrayLiteralBrackets: +# Enabled: false diff --git a/CAMAAR/.ruby-version b/CAMAAR/.ruby-version new file mode 100644 index 0000000000..2aa5131992 --- /dev/null +++ b/CAMAAR/.ruby-version @@ -0,0 +1 @@ +3.4.7 diff --git a/CAMAAR/Dockerfile b/CAMAAR/Dockerfile new file mode 100644 index 0000000000..d5e995356b --- /dev/null +++ b/CAMAAR/Dockerfile @@ -0,0 +1,76 @@ +# syntax=docker/dockerfile:1 +# check=error=true + +# This Dockerfile is designed for production, not development. Use with Kamal or build'n'run by hand: +# docker build -t camaar . +# docker run -d -p 80:80 -e RAILS_MASTER_KEY= --name camaar camaar + +# For a containerized dev environment, see Dev Containers: https://guides.rubyonrails.org/getting_started_with_devcontainer.html + +# Make sure RUBY_VERSION matches the Ruby version in .ruby-version +ARG RUBY_VERSION=3.4.7 +FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base + +# Rails app lives here +WORKDIR /rails + +# Install base packages +RUN apt-get update -qq && \ + apt-get install --no-install-recommends -y curl libjemalloc2 libvips sqlite3 && \ + ln -s /usr/lib/$(uname -m)-linux-gnu/libjemalloc.so.2 /usr/local/lib/libjemalloc.so && \ + rm -rf /var/lib/apt/lists /var/cache/apt/archives + +# Set production environment variables and enable jemalloc for reduced memory usage and latency. +ENV RAILS_ENV="production" \ + BUNDLE_DEPLOYMENT="1" \ + BUNDLE_PATH="/usr/local/bundle" \ + BUNDLE_WITHOUT="development" \ + LD_PRELOAD="/usr/local/lib/libjemalloc.so" + +# Throw-away build stage to reduce size of final image +FROM base AS build + +# Install packages needed to build gems +RUN apt-get update -qq && \ + apt-get install --no-install-recommends -y build-essential git libyaml-dev pkg-config && \ + rm -rf /var/lib/apt/lists /var/cache/apt/archives + +# Install application gems +COPY Gemfile Gemfile.lock vendor ./ + +RUN bundle install && \ + rm -rf ~/.bundle/ "${BUNDLE_PATH}"/ruby/*/cache "${BUNDLE_PATH}"/ruby/*/bundler/gems/*/.git && \ + # -j 1 disable parallel compilation to avoid a QEMU bug: https://github.com/rails/bootsnap/issues/495 + bundle exec bootsnap precompile -j 1 --gemfile + +# Copy application code +COPY . . + +# Precompile bootsnap code for faster boot times. +# -j 1 disable parallel compilation to avoid a QEMU bug: https://github.com/rails/bootsnap/issues/495 +RUN bundle exec bootsnap precompile -j 1 app/ lib/ + +# Precompiling assets for production without requiring secret RAILS_MASTER_KEY +RUN SECRET_KEY_BASE_DUMMY=1 ./bin/rails assets:precompile + + + + +# Final stage for app image +FROM base + +# Run and own only the runtime files as a non-root user for security +RUN groupadd --system --gid 1000 rails && \ + useradd rails --uid 1000 --gid 1000 --create-home --shell /bin/bash +USER 1000:1000 + +# Copy built artifacts: gems, application +COPY --chown=rails:rails --from=build "${BUNDLE_PATH}" "${BUNDLE_PATH}" +COPY --chown=rails:rails --from=build /rails /rails + +# Entrypoint prepares the database. +ENTRYPOINT ["/rails/bin/docker-entrypoint"] + +# Start server via Thruster by default, this can be overwritten at runtime +EXPOSE 80 +CMD ["./bin/thrust", "./bin/rails", "server"] diff --git a/CAMAAR/Gemfile b/CAMAAR/Gemfile new file mode 100644 index 0000000000..159f0fc6b1 --- /dev/null +++ b/CAMAAR/Gemfile @@ -0,0 +1,68 @@ +source "https://rubygems.org" + +# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main" +gem "rails", "~> 8.1.1" +# The modern asset pipeline for Rails [https://github.com/rails/propshaft] +gem "propshaft" +# Use sqlite3 as the database for Active Record +gem "sqlite3", ">= 2.1" +# Use the Puma web server [https://github.com/puma/puma] +gem "puma", ">= 5.0" +# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails] +gem "importmap-rails" +# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev] +gem "turbo-rails" +# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev] +gem "stimulus-rails" +# Build JSON APIs with ease [https://github.com/rails/jbuilder] +gem "jbuilder" + +# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword] +# gem "bcrypt", "~> 3.1.7" + +# Windows does not include zoneinfo files, so bundle the tzinfo-data gem +gem "tzinfo-data", platforms: %i[ windows jruby ] + +# Use the database-backed adapters for Rails.cache, Active Job, and Action Cable +gem "solid_cache" +gem "solid_queue" +gem "solid_cable" + +# Reduces boot times through caching; required in config/boot.rb +gem "bootsnap", require: false + +# Deploy this application anywhere as a Docker container [https://kamal-deploy.org] +gem "kamal", require: false + +# Add HTTP asset caching/compression and X-Sendfile acceleration to Puma [https://github.com/basecamp/thruster/] +gem "thruster", require: false + +# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images] +gem "image_processing", "~> 1.2" + +group :development, :test do + # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem + gem "debug", platforms: %i[ mri windows ], require: "debug/prelude" + + # Audits gems for known security defects (use config/bundler-audit.yml to ignore issues) + gem "bundler-audit", require: false + + # Static analysis for security vulnerabilities [https://brakemanscanner.org/] + gem "brakeman", require: false + + # Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/] + gem "rubocop-rails-omakase", require: false +end + +group :development do + # Use console on exceptions pages [https://github.com/rails/web-console] + gem "web-console" +end + +group :test do + # Use system testing [https://guides.rubyonrails.org/testing.html#system-testing] + gem "capybara" + gem "selenium-webdriver" + gem "cucumber-rails", require: false + gem "database_cleaner-active_record" +end diff --git a/CAMAAR/Gemfile.lock b/CAMAAR/Gemfile.lock new file mode 100644 index 0000000000..a8f5701751 --- /dev/null +++ b/CAMAAR/Gemfile.lock @@ -0,0 +1,450 @@ +GEM + remote: https://rubygems.org/ + specs: + action_text-trix (2.1.15) + railties + actioncable (8.1.1) + actionpack (= 8.1.1) + activesupport (= 8.1.1) + nio4r (~> 2.0) + websocket-driver (>= 0.6.1) + zeitwerk (~> 2.6) + actionmailbox (8.1.1) + actionpack (= 8.1.1) + activejob (= 8.1.1) + activerecord (= 8.1.1) + activestorage (= 8.1.1) + activesupport (= 8.1.1) + mail (>= 2.8.0) + actionmailer (8.1.1) + actionpack (= 8.1.1) + actionview (= 8.1.1) + activejob (= 8.1.1) + activesupport (= 8.1.1) + mail (>= 2.8.0) + rails-dom-testing (~> 2.2) + actionpack (8.1.1) + actionview (= 8.1.1) + activesupport (= 8.1.1) + nokogiri (>= 1.8.5) + rack (>= 2.2.4) + rack-session (>= 1.0.1) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.2) + rails-html-sanitizer (~> 1.6) + useragent (~> 0.16) + actiontext (8.1.1) + action_text-trix (~> 2.1.15) + actionpack (= 8.1.1) + activerecord (= 8.1.1) + activestorage (= 8.1.1) + activesupport (= 8.1.1) + globalid (>= 0.6.0) + nokogiri (>= 1.8.5) + actionview (8.1.1) + activesupport (= 8.1.1) + builder (~> 3.1) + erubi (~> 1.11) + rails-dom-testing (~> 2.2) + rails-html-sanitizer (~> 1.6) + activejob (8.1.1) + activesupport (= 8.1.1) + globalid (>= 0.3.6) + activemodel (8.1.1) + activesupport (= 8.1.1) + activerecord (8.1.1) + activemodel (= 8.1.1) + activesupport (= 8.1.1) + timeout (>= 0.4.0) + activestorage (8.1.1) + actionpack (= 8.1.1) + activejob (= 8.1.1) + activerecord (= 8.1.1) + activesupport (= 8.1.1) + marcel (~> 1.0) + activesupport (8.1.1) + base64 + bigdecimal + concurrent-ruby (~> 1.0, >= 1.3.1) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + json + logger (>= 1.4.2) + minitest (>= 5.1) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) + uri (>= 0.13.1) + addressable (2.8.7) + public_suffix (>= 2.0.2, < 7.0) + ast (2.4.3) + base64 (0.3.0) + bcrypt_pbkdf (1.1.1) + bigdecimal (3.3.1) + bindex (0.8.1) + bootsnap (1.18.6) + msgpack (~> 1.2) + brakeman (7.1.1) + racc + builder (3.3.0) + bundler-audit (0.9.2) + bundler (>= 1.2.0, < 3) + thor (~> 1.0) + capybara (3.40.0) + addressable + matrix + mini_mime (>= 0.1.3) + nokogiri (~> 1.11) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (>= 1.5, < 3.0) + xpath (~> 3.2) + concurrent-ruby (1.3.5) + connection_pool (2.5.4) + crass (1.0.6) + cucumber (10.1.1) + base64 (~> 0.2) + builder (~> 3.2) + cucumber-ci-environment (> 9, < 11) + cucumber-core (> 15, < 17) + cucumber-cucumber-expressions (> 17, < 19) + cucumber-html-formatter (> 20.3, < 22) + diff-lcs (~> 1.5) + logger (~> 1.6) + mini_mime (~> 1.1) + multi_test (~> 1.1) + sys-uname (~> 1.3) + cucumber-ci-environment (10.0.1) + cucumber-core (15.3.0) + cucumber-gherkin (> 27, < 35) + cucumber-messages (> 26, < 30) + cucumber-tag-expressions (> 5, < 9) + cucumber-cucumber-expressions (18.0.1) + bigdecimal + cucumber-gherkin (34.0.0) + cucumber-messages (> 25, < 29) + cucumber-html-formatter (21.15.1) + cucumber-messages (> 19, < 28) + cucumber-messages (27.2.0) + cucumber-rails (4.0.0) + capybara (>= 3.25, < 4) + cucumber (>= 7, < 11) + railties (>= 6.1, < 9) + cucumber-tag-expressions (8.0.0) + database_cleaner-active_record (2.2.2) + activerecord (>= 5.a) + database_cleaner-core (~> 2.0) + database_cleaner-core (2.0.1) + date (3.5.0) + debug (1.11.0) + irb (~> 1.10) + reline (>= 0.3.8) + diff-lcs (1.6.2) + dotenv (3.1.8) + drb (2.2.3) + ed25519 (1.4.0) + erb (5.1.3) + erubi (1.13.1) + et-orbi (1.4.0) + tzinfo + ffi (1.17.2-aarch64-linux-gnu) + ffi (1.17.2-aarch64-linux-musl) + ffi (1.17.2-arm-linux-gnu) + ffi (1.17.2-arm-linux-musl) + ffi (1.17.2-x86_64-linux-gnu) + ffi (1.17.2-x86_64-linux-musl) + fugit (1.12.1) + et-orbi (~> 1.4) + raabro (~> 1.4) + globalid (1.3.0) + activesupport (>= 6.1) + i18n (1.14.7) + concurrent-ruby (~> 1.0) + image_processing (1.14.0) + mini_magick (>= 4.9.5, < 6) + ruby-vips (>= 2.0.17, < 3) + importmap-rails (2.2.2) + actionpack (>= 6.0.0) + activesupport (>= 6.0.0) + railties (>= 6.0.0) + io-console (0.8.1) + irb (1.15.3) + pp (>= 0.6.0) + rdoc (>= 4.0.0) + reline (>= 0.4.2) + jbuilder (2.14.1) + actionview (>= 7.0.0) + activesupport (>= 7.0.0) + json (2.16.0) + kamal (2.8.2) + activesupport (>= 7.0) + base64 (~> 0.2) + bcrypt_pbkdf (~> 1.0) + concurrent-ruby (~> 1.2) + dotenv (~> 3.1) + ed25519 (~> 1.4) + net-ssh (~> 7.3) + sshkit (>= 1.23.0, < 2.0) + thor (~> 1.3) + zeitwerk (>= 2.6.18, < 3.0) + language_server-protocol (3.17.0.5) + lint_roller (1.1.0) + logger (1.7.0) + loofah (2.24.1) + crass (~> 1.0.2) + nokogiri (>= 1.12.0) + mail (2.9.0) + logger + mini_mime (>= 0.1.1) + net-imap + net-pop + net-smtp + marcel (1.1.0) + matrix (0.4.3) + memoist3 (1.0.0) + mini_magick (5.3.1) + logger + mini_mime (1.1.5) + minitest (5.26.1) + msgpack (1.8.0) + multi_test (1.1.0) + net-imap (0.5.12) + date + net-protocol + net-pop (0.1.2) + net-protocol + net-protocol (0.2.2) + timeout + net-scp (4.1.0) + net-ssh (>= 2.6.5, < 8.0.0) + net-sftp (4.0.0) + net-ssh (>= 5.0.0, < 8.0.0) + net-smtp (0.5.1) + net-protocol + net-ssh (7.3.0) + nio4r (2.7.5) + nokogiri (1.18.10-aarch64-linux-gnu) + racc (~> 1.4) + nokogiri (1.18.10-aarch64-linux-musl) + racc (~> 1.4) + nokogiri (1.18.10-arm-linux-gnu) + racc (~> 1.4) + nokogiri (1.18.10-arm-linux-musl) + racc (~> 1.4) + nokogiri (1.18.10-x86_64-linux-gnu) + racc (~> 1.4) + nokogiri (1.18.10-x86_64-linux-musl) + racc (~> 1.4) + ostruct (0.6.3) + parallel (1.27.0) + parser (3.3.10.0) + ast (~> 2.4.1) + racc + pp (0.6.3) + prettyprint + prettyprint (0.2.0) + prism (1.6.0) + propshaft (1.3.1) + actionpack (>= 7.0.0) + activesupport (>= 7.0.0) + rack + psych (5.2.6) + date + stringio + public_suffix (6.0.2) + puma (7.1.0) + nio4r (~> 2.0) + raabro (1.4.0) + racc (1.8.1) + rack (3.2.4) + rack-session (2.1.1) + base64 (>= 0.1.0) + rack (>= 3.0.0) + rack-test (2.2.0) + rack (>= 1.3) + rackup (2.2.1) + rack (>= 3) + rails (8.1.1) + actioncable (= 8.1.1) + actionmailbox (= 8.1.1) + actionmailer (= 8.1.1) + actionpack (= 8.1.1) + actiontext (= 8.1.1) + actionview (= 8.1.1) + activejob (= 8.1.1) + activemodel (= 8.1.1) + activerecord (= 8.1.1) + activestorage (= 8.1.1) + activesupport (= 8.1.1) + bundler (>= 1.15.0) + railties (= 8.1.1) + rails-dom-testing (2.3.0) + activesupport (>= 5.0.0) + minitest + nokogiri (>= 1.6) + rails-html-sanitizer (1.6.2) + loofah (~> 2.21) + nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0) + railties (8.1.1) + actionpack (= 8.1.1) + activesupport (= 8.1.1) + irb (~> 1.13) + rackup (>= 1.0.0) + rake (>= 12.2) + thor (~> 1.0, >= 1.2.2) + tsort (>= 0.2) + zeitwerk (~> 2.6) + rainbow (3.1.1) + rake (13.3.1) + rdoc (6.15.1) + erb + psych (>= 4.0.0) + tsort + regexp_parser (2.11.3) + reline (0.6.3) + io-console (~> 0.5) + rexml (3.4.4) + rubocop (1.81.7) + json (~> 2.3) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.1.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 2.9.3, < 3.0) + rubocop-ast (>= 1.47.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 4.0) + rubocop-ast (1.48.0) + parser (>= 3.3.7.2) + prism (~> 1.4) + rubocop-performance (1.26.1) + lint_roller (~> 1.1) + rubocop (>= 1.75.0, < 2.0) + rubocop-ast (>= 1.47.1, < 2.0) + rubocop-rails (2.33.4) + activesupport (>= 4.2.0) + lint_roller (~> 1.1) + rack (>= 1.1) + rubocop (>= 1.75.0, < 2.0) + rubocop-ast (>= 1.44.0, < 2.0) + rubocop-rails-omakase (1.1.0) + rubocop (>= 1.72) + rubocop-performance (>= 1.24) + rubocop-rails (>= 2.30) + ruby-progressbar (1.13.0) + ruby-vips (2.2.5) + ffi (~> 1.12) + logger + rubyzip (3.2.2) + securerandom (0.4.1) + selenium-webdriver (4.38.0) + base64 (~> 0.2) + logger (~> 1.4) + rexml (~> 3.2, >= 3.2.5) + rubyzip (>= 1.2.2, < 4.0) + websocket (~> 1.0) + solid_cable (3.0.12) + actioncable (>= 7.2) + activejob (>= 7.2) + activerecord (>= 7.2) + railties (>= 7.2) + solid_cache (1.0.10) + activejob (>= 7.2) + activerecord (>= 7.2) + railties (>= 7.2) + solid_queue (1.2.4) + activejob (>= 7.1) + activerecord (>= 7.1) + concurrent-ruby (>= 1.3.1) + fugit (~> 1.11) + railties (>= 7.1) + thor (>= 1.3.1) + sqlite3 (2.8.0-aarch64-linux-gnu) + sqlite3 (2.8.0-aarch64-linux-musl) + sqlite3 (2.8.0-arm-linux-gnu) + sqlite3 (2.8.0-arm-linux-musl) + sqlite3 (2.8.0-x86_64-linux-gnu) + sqlite3 (2.8.0-x86_64-linux-musl) + sshkit (1.24.0) + base64 + logger + net-scp (>= 1.1.2) + net-sftp (>= 2.1.2) + net-ssh (>= 2.8.0) + ostruct + stimulus-rails (1.3.4) + railties (>= 6.0.0) + stringio (3.1.7) + sys-uname (1.4.1) + ffi (~> 1.1) + memoist3 (~> 1.0.0) + thor (1.4.0) + thruster (0.1.16) + thruster (0.1.16-aarch64-linux) + thruster (0.1.16-x86_64-linux) + timeout (0.4.4) + tsort (0.2.0) + turbo-rails (2.0.20) + actionpack (>= 7.1.0) + railties (>= 7.1.0) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (3.2.0) + unicode-emoji (~> 4.1) + unicode-emoji (4.1.0) + uri (1.1.1) + useragent (0.16.11) + web-console (4.2.1) + actionview (>= 6.0.0) + activemodel (>= 6.0.0) + bindex (>= 0.4.0) + railties (>= 6.0.0) + websocket (1.2.11) + websocket-driver (0.8.0) + base64 + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.5) + xpath (3.2.0) + nokogiri (~> 1.8) + zeitwerk (2.7.3) + +PLATFORMS + aarch64-linux + aarch64-linux-gnu + aarch64-linux-musl + arm-linux-gnu + arm-linux-musl + x86_64-linux + x86_64-linux-gnu + x86_64-linux-musl + +DEPENDENCIES + bootsnap + brakeman + bundler-audit + capybara + cucumber-rails + database_cleaner-active_record + debug + image_processing (~> 1.2) + importmap-rails + jbuilder + kamal + propshaft + puma (>= 5.0) + rails (~> 8.1.1) + rubocop-rails-omakase + selenium-webdriver + solid_cable + solid_cache + solid_queue + sqlite3 (>= 2.1) + stimulus-rails + thruster + turbo-rails + tzinfo-data + web-console + +BUNDLED WITH + 2.6.9 diff --git a/CAMAAR/README.md b/CAMAAR/README.md new file mode 100644 index 0000000000..7db80e4ca1 --- /dev/null +++ b/CAMAAR/README.md @@ -0,0 +1,24 @@ +# README + +This README would normally document whatever steps are necessary to get the +application up and running. + +Things you may want to cover: + +* Ruby version + +* System dependencies + +* Configuration + +* Database creation + +* Database initialization + +* How to run the test suite + +* Services (job queues, cache servers, search engines, etc.) + +* Deployment instructions + +* ... diff --git a/CAMAAR/Rakefile b/CAMAAR/Rakefile new file mode 100644 index 0000000000..9a5ea7383a --- /dev/null +++ b/CAMAAR/Rakefile @@ -0,0 +1,6 @@ +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require_relative "config/application" + +Rails.application.load_tasks diff --git a/CAMAAR/app/assets/images/.keep b/CAMAAR/app/assets/images/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/app/assets/stylesheets/application.css b/CAMAAR/app/assets/stylesheets/application.css new file mode 100644 index 0000000000..fe93333c0f --- /dev/null +++ b/CAMAAR/app/assets/stylesheets/application.css @@ -0,0 +1,10 @@ +/* + * This is a manifest file that'll be compiled into application.css. + * + * With Propshaft, assets are served efficiently without preprocessing steps. You can still include + * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard + * cascading order, meaning styles declared later in the document or manifest will override earlier ones, + * depending on specificity. + * + * Consider organizing styles into separate files for maintainability. + */ diff --git a/CAMAAR/app/controllers/application_controller.rb b/CAMAAR/app/controllers/application_controller.rb new file mode 100644 index 0000000000..c3537563da --- /dev/null +++ b/CAMAAR/app/controllers/application_controller.rb @@ -0,0 +1,7 @@ +class ApplicationController < ActionController::Base + # Only allow modern browsers supporting webp images, web push, badges, import maps, CSS nesting, and CSS :has. + allow_browser versions: :modern + + # Changes to the importmap will invalidate the etag for HTML responses + stale_when_importmap_changes +end diff --git a/CAMAAR/app/controllers/concerns/.keep b/CAMAAR/app/controllers/concerns/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/app/helpers/application_helper.rb b/CAMAAR/app/helpers/application_helper.rb new file mode 100644 index 0000000000..de6be7945c --- /dev/null +++ b/CAMAAR/app/helpers/application_helper.rb @@ -0,0 +1,2 @@ +module ApplicationHelper +end diff --git a/CAMAAR/app/javascript/application.js b/CAMAAR/app/javascript/application.js new file mode 100644 index 0000000000..0d7b49404c --- /dev/null +++ b/CAMAAR/app/javascript/application.js @@ -0,0 +1,3 @@ +// Configure your import map in config/importmap.rb. Read more: https://github.com/rails/importmap-rails +import "@hotwired/turbo-rails" +import "controllers" diff --git a/CAMAAR/app/javascript/controllers/application.js b/CAMAAR/app/javascript/controllers/application.js new file mode 100644 index 0000000000..1213e85c7a --- /dev/null +++ b/CAMAAR/app/javascript/controllers/application.js @@ -0,0 +1,9 @@ +import { Application } from "@hotwired/stimulus" + +const application = Application.start() + +// Configure Stimulus development experience +application.debug = false +window.Stimulus = application + +export { application } diff --git a/CAMAAR/app/javascript/controllers/hello_controller.js b/CAMAAR/app/javascript/controllers/hello_controller.js new file mode 100644 index 0000000000..5975c0789d --- /dev/null +++ b/CAMAAR/app/javascript/controllers/hello_controller.js @@ -0,0 +1,7 @@ +import { Controller } from "@hotwired/stimulus" + +export default class extends Controller { + connect() { + this.element.textContent = "Hello World!" + } +} diff --git a/CAMAAR/app/javascript/controllers/index.js b/CAMAAR/app/javascript/controllers/index.js new file mode 100644 index 0000000000..1156bf8362 --- /dev/null +++ b/CAMAAR/app/javascript/controllers/index.js @@ -0,0 +1,4 @@ +// Import and register all your controllers from the importmap via controllers/**/*_controller +import { application } from "controllers/application" +import { eagerLoadControllersFrom } from "@hotwired/stimulus-loading" +eagerLoadControllersFrom("controllers", application) diff --git a/CAMAAR/app/jobs/application_job.rb b/CAMAAR/app/jobs/application_job.rb new file mode 100644 index 0000000000..d394c3d106 --- /dev/null +++ b/CAMAAR/app/jobs/application_job.rb @@ -0,0 +1,7 @@ +class ApplicationJob < ActiveJob::Base + # Automatically retry jobs that encountered a deadlock + # retry_on ActiveRecord::Deadlocked + + # Most jobs are safe to ignore if the underlying records are no longer available + # discard_on ActiveJob::DeserializationError +end diff --git a/CAMAAR/app/mailers/application_mailer.rb b/CAMAAR/app/mailers/application_mailer.rb new file mode 100644 index 0000000000..3c34c8148f --- /dev/null +++ b/CAMAAR/app/mailers/application_mailer.rb @@ -0,0 +1,4 @@ +class ApplicationMailer < ActionMailer::Base + default from: "from@example.com" + layout "mailer" +end diff --git a/CAMAAR/app/models/application_record.rb b/CAMAAR/app/models/application_record.rb new file mode 100644 index 0000000000..b63caeb8a5 --- /dev/null +++ b/CAMAAR/app/models/application_record.rb @@ -0,0 +1,3 @@ +class ApplicationRecord < ActiveRecord::Base + primary_abstract_class +end diff --git a/CAMAAR/app/models/concerns/.keep b/CAMAAR/app/models/concerns/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/app/views/layouts/application.html.erb b/CAMAAR/app/views/layouts/application.html.erb new file mode 100644 index 0000000000..9e51e3817f --- /dev/null +++ b/CAMAAR/app/views/layouts/application.html.erb @@ -0,0 +1,29 @@ + + + + <%= content_for(:title) || "Camaar" %> + + + + + <%= csrf_meta_tags %> + <%= csp_meta_tag %> + + <%= yield :head %> + + <%# Enable PWA manifest for installable apps (make sure to enable in config/routes.rb too!) %> + <%#= tag.link rel: "manifest", href: pwa_manifest_path(format: :json) %> + + + + + + <%# Includes all stylesheet files in app/assets/stylesheets %> + <%= stylesheet_link_tag :app, "data-turbo-track": "reload" %> + <%= javascript_importmap_tags %> + + + + <%= yield %> + + diff --git a/CAMAAR/app/views/layouts/mailer.html.erb b/CAMAAR/app/views/layouts/mailer.html.erb new file mode 100644 index 0000000000..3aac9002ed --- /dev/null +++ b/CAMAAR/app/views/layouts/mailer.html.erb @@ -0,0 +1,13 @@ + + + + + + + + + <%= yield %> + + diff --git a/CAMAAR/app/views/layouts/mailer.text.erb b/CAMAAR/app/views/layouts/mailer.text.erb new file mode 100644 index 0000000000..37f0bddbd7 --- /dev/null +++ b/CAMAAR/app/views/layouts/mailer.text.erb @@ -0,0 +1 @@ +<%= yield %> diff --git a/CAMAAR/app/views/pwa/manifest.json.erb b/CAMAAR/app/views/pwa/manifest.json.erb new file mode 100644 index 0000000000..fca522bbe4 --- /dev/null +++ b/CAMAAR/app/views/pwa/manifest.json.erb @@ -0,0 +1,22 @@ +{ + "name": "Camaar", + "icons": [ + { + "src": "/icon.png", + "type": "image/png", + "sizes": "512x512" + }, + { + "src": "/icon.png", + "type": "image/png", + "sizes": "512x512", + "purpose": "maskable" + } + ], + "start_url": "/", + "display": "standalone", + "scope": "/", + "description": "Camaar.", + "theme_color": "red", + "background_color": "red" +} diff --git a/CAMAAR/app/views/pwa/service-worker.js b/CAMAAR/app/views/pwa/service-worker.js new file mode 100644 index 0000000000..b3a13fb7bb --- /dev/null +++ b/CAMAAR/app/views/pwa/service-worker.js @@ -0,0 +1,26 @@ +// Add a service worker for processing Web Push notifications: +// +// self.addEventListener("push", async (event) => { +// const { title, options } = await event.data.json() +// event.waitUntil(self.registration.showNotification(title, options)) +// }) +// +// self.addEventListener("notificationclick", function(event) { +// event.notification.close() +// event.waitUntil( +// clients.matchAll({ type: "window" }).then((clientList) => { +// for (let i = 0; i < clientList.length; i++) { +// let client = clientList[i] +// let clientPath = (new URL(client.url)).pathname +// +// if (clientPath == event.notification.data.path && "focus" in client) { +// return client.focus() +// } +// } +// +// if (clients.openWindow) { +// return clients.openWindow(event.notification.data.path) +// } +// }) +// ) +// }) diff --git a/CAMAAR/bin/brakeman b/CAMAAR/bin/brakeman new file mode 100755 index 0000000000..ace1c9ba08 --- /dev/null +++ b/CAMAAR/bin/brakeman @@ -0,0 +1,7 @@ +#!/usr/bin/env ruby +require "rubygems" +require "bundler/setup" + +ARGV.unshift("--ensure-latest") + +load Gem.bin_path("brakeman", "brakeman") diff --git a/CAMAAR/bin/bundler-audit b/CAMAAR/bin/bundler-audit new file mode 100755 index 0000000000..e2ef22690c --- /dev/null +++ b/CAMAAR/bin/bundler-audit @@ -0,0 +1,6 @@ +#!/usr/bin/env ruby +require_relative "../config/boot" +require "bundler/audit/cli" + +ARGV.concat %w[ --config config/bundler-audit.yml ] if ARGV.empty? || ARGV.include?("check") +Bundler::Audit::CLI.start diff --git a/CAMAAR/bin/ci b/CAMAAR/bin/ci new file mode 100755 index 0000000000..4137ad5bb0 --- /dev/null +++ b/CAMAAR/bin/ci @@ -0,0 +1,6 @@ +#!/usr/bin/env ruby +require_relative "../config/boot" +require "active_support/continuous_integration" + +CI = ActiveSupport::ContinuousIntegration +require_relative "../config/ci.rb" diff --git a/CAMAAR/bin/cucumber b/CAMAAR/bin/cucumber new file mode 100755 index 0000000000..eb5e962e86 --- /dev/null +++ b/CAMAAR/bin/cucumber @@ -0,0 +1,11 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +vendored_cucumber_bin = Dir["#{File.dirname(__FILE__)}/../vendor/{gems,plugins}/cucumber*/bin/cucumber"].first +if vendored_cucumber_bin + load File.expand_path(vendored_cucumber_bin) +else + require 'rubygems' unless ENV['NO_RUBYGEMS'] + require 'cucumber' + load Cucumber::BINARY +end diff --git a/CAMAAR/bin/dev b/CAMAAR/bin/dev new file mode 100755 index 0000000000..5f91c20545 --- /dev/null +++ b/CAMAAR/bin/dev @@ -0,0 +1,2 @@ +#!/usr/bin/env ruby +exec "./bin/rails", "server", *ARGV diff --git a/CAMAAR/bin/docker-entrypoint b/CAMAAR/bin/docker-entrypoint new file mode 100755 index 0000000000..ed31659f40 --- /dev/null +++ b/CAMAAR/bin/docker-entrypoint @@ -0,0 +1,8 @@ +#!/bin/bash -e + +# If running the rails server then create or migrate existing database +if [ "${@: -2:1}" == "./bin/rails" ] && [ "${@: -1:1}" == "server" ]; then + ./bin/rails db:prepare +fi + +exec "${@}" diff --git a/CAMAAR/bin/importmap b/CAMAAR/bin/importmap new file mode 100755 index 0000000000..36502ab16c --- /dev/null +++ b/CAMAAR/bin/importmap @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby + +require_relative "../config/application" +require "importmap/commands" diff --git a/CAMAAR/bin/jobs b/CAMAAR/bin/jobs new file mode 100755 index 0000000000..dcf59f309a --- /dev/null +++ b/CAMAAR/bin/jobs @@ -0,0 +1,6 @@ +#!/usr/bin/env ruby + +require_relative "../config/environment" +require "solid_queue/cli" + +SolidQueue::Cli.start(ARGV) diff --git a/CAMAAR/bin/kamal b/CAMAAR/bin/kamal new file mode 100755 index 0000000000..cbe59b95ed --- /dev/null +++ b/CAMAAR/bin/kamal @@ -0,0 +1,27 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +# +# This file was generated by Bundler. +# +# The application 'kamal' is installed as part of a gem, and +# this file is here to facilitate running it. +# + +ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__) + +bundle_binstub = File.expand_path("bundle", __dir__) + +if File.file?(bundle_binstub) + if File.read(bundle_binstub, 300).include?("This file was generated by Bundler") + load(bundle_binstub) + else + abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run. +Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.") + end +end + +require "rubygems" +require "bundler/setup" + +load Gem.bin_path("kamal", "kamal") diff --git a/CAMAAR/bin/rails b/CAMAAR/bin/rails new file mode 100755 index 0000000000..efc0377492 --- /dev/null +++ b/CAMAAR/bin/rails @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby +APP_PATH = File.expand_path("../config/application", __dir__) +require_relative "../config/boot" +require "rails/commands" diff --git a/CAMAAR/bin/rake b/CAMAAR/bin/rake new file mode 100755 index 0000000000..4fbf10b960 --- /dev/null +++ b/CAMAAR/bin/rake @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby +require_relative "../config/boot" +require "rake" +Rake.application.run diff --git a/CAMAAR/bin/rubocop b/CAMAAR/bin/rubocop new file mode 100755 index 0000000000..5a20504716 --- /dev/null +++ b/CAMAAR/bin/rubocop @@ -0,0 +1,8 @@ +#!/usr/bin/env ruby +require "rubygems" +require "bundler/setup" + +# Explicit RuboCop config increases performance slightly while avoiding config confusion. +ARGV.unshift("--config", File.expand_path("../.rubocop.yml", __dir__)) + +load Gem.bin_path("rubocop", "rubocop") diff --git a/CAMAAR/bin/setup b/CAMAAR/bin/setup new file mode 100755 index 0000000000..81be011e87 --- /dev/null +++ b/CAMAAR/bin/setup @@ -0,0 +1,35 @@ +#!/usr/bin/env ruby +require "fileutils" + +APP_ROOT = File.expand_path("..", __dir__) + +def system!(*args) + system(*args, exception: true) +end + +FileUtils.chdir APP_ROOT do + # This script is a way to set up or update your development environment automatically. + # This script is idempotent, so that you can run it at any time and get an expectable outcome. + # Add necessary setup steps to this file. + + puts "== Installing dependencies ==" + system("bundle check") || system!("bundle install") + + # puts "\n== Copying sample files ==" + # unless File.exist?("config/database.yml") + # FileUtils.cp "config/database.yml.sample", "config/database.yml" + # end + + puts "\n== Preparing database ==" + system! "bin/rails db:prepare" + system! "bin/rails db:reset" if ARGV.include?("--reset") + + puts "\n== Removing old logs and tempfiles ==" + system! "bin/rails log:clear tmp:clear" + + unless ARGV.include?("--skip-server") + puts "\n== Starting development server ==" + STDOUT.flush # flush the output before exec(2) so that it displays + exec "bin/dev" + end +end diff --git a/CAMAAR/bin/thrust b/CAMAAR/bin/thrust new file mode 100755 index 0000000000..36bde2d832 --- /dev/null +++ b/CAMAAR/bin/thrust @@ -0,0 +1,5 @@ +#!/usr/bin/env ruby +require "rubygems" +require "bundler/setup" + +load Gem.bin_path("thruster", "thrust") diff --git a/CAMAAR/config.ru b/CAMAAR/config.ru new file mode 100644 index 0000000000..4a3c09a688 --- /dev/null +++ b/CAMAAR/config.ru @@ -0,0 +1,6 @@ +# This file is used by Rack-based servers to start the application. + +require_relative "config/environment" + +run Rails.application +Rails.application.load_server diff --git a/CAMAAR/config/application.rb b/CAMAAR/config/application.rb new file mode 100644 index 0000000000..b4848d838b --- /dev/null +++ b/CAMAAR/config/application.rb @@ -0,0 +1,27 @@ +require_relative "boot" + +require "rails/all" + +# Require the gems listed in Gemfile, including any gems +# you've limited to :test, :development, or :production. +Bundler.require(*Rails.groups) + +module Camaar + class Application < Rails::Application + # Initialize configuration defaults for originally generated Rails version. + config.load_defaults 8.1 + + # Please, add to the `ignore` list any other `lib` subdirectories that do + # not contain `.rb` files, or that should not be reloaded or eager loaded. + # Common ones are `templates`, `generators`, or `middleware`, for example. + config.autoload_lib(ignore: %w[assets tasks]) + + # Configuration for the application, engines, and railties goes here. + # + # These settings can be overridden in specific environments using the files + # in config/environments, which are processed later. + # + # config.time_zone = "Central Time (US & Canada)" + # config.eager_load_paths << Rails.root.join("extras") + end +end diff --git a/CAMAAR/config/boot.rb b/CAMAAR/config/boot.rb new file mode 100644 index 0000000000..988a5ddc46 --- /dev/null +++ b/CAMAAR/config/boot.rb @@ -0,0 +1,4 @@ +ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__) + +require "bundler/setup" # Set up gems listed in the Gemfile. +require "bootsnap/setup" # Speed up boot time by caching expensive operations. diff --git a/CAMAAR/config/bundler-audit.yml b/CAMAAR/config/bundler-audit.yml new file mode 100644 index 0000000000..e74b3af949 --- /dev/null +++ b/CAMAAR/config/bundler-audit.yml @@ -0,0 +1,5 @@ +# Audit all gems listed in the Gemfile for known security problems by running bin/bundler-audit. +# CVEs that are not relevant to the application can be enumerated on the ignore list below. + +ignore: + - CVE-THAT-DOES-NOT-APPLY diff --git a/CAMAAR/config/cable.yml b/CAMAAR/config/cable.yml new file mode 100644 index 0000000000..b9adc5aa3a --- /dev/null +++ b/CAMAAR/config/cable.yml @@ -0,0 +1,17 @@ +# Async adapter only works within the same process, so for manually triggering cable updates from a console, +# and seeing results in the browser, you must do so from the web console (running inside the dev process), +# not a terminal started via bin/rails console! Add "console" to any action or any ERB template view +# to make the web console appear. +development: + adapter: async + +test: + adapter: test + +production: + adapter: solid_cable + connects_to: + database: + writing: cable + polling_interval: 0.1.seconds + message_retention: 1.day diff --git a/CAMAAR/config/cache.yml b/CAMAAR/config/cache.yml new file mode 100644 index 0000000000..19d490843b --- /dev/null +++ b/CAMAAR/config/cache.yml @@ -0,0 +1,16 @@ +default: &default + store_options: + # Cap age of oldest cache entry to fulfill retention policies + # max_age: <%= 60.days.to_i %> + max_size: <%= 256.megabytes %> + namespace: <%= Rails.env %> + +development: + <<: *default + +test: + <<: *default + +production: + database: cache + <<: *default diff --git a/CAMAAR/config/ci.rb b/CAMAAR/config/ci.rb new file mode 100644 index 0000000000..e56a92e418 --- /dev/null +++ b/CAMAAR/config/ci.rb @@ -0,0 +1,23 @@ +# Run using bin/ci + +CI.run do + step "Setup", "bin/setup --skip-server" + + step "Style: Ruby", "bin/rubocop" + + step "Security: Gem audit", "bin/bundler-audit" + step "Security: Importmap vulnerability audit", "bin/importmap audit" + step "Security: Brakeman code analysis", "bin/brakeman --quiet --no-pager --exit-on-warn --exit-on-error" + + step "Tests: Rails", "bin/rails test" + step "Tests: System", "bin/rails test:system" + step "Tests: Seeds", "env RAILS_ENV=test bin/rails db:seed:replant" + + # Optional: set a green GitHub commit status to unblock PR merge. + # Requires the `gh` CLI and `gh extension install basecamp/gh-signoff`. + # if success? + # step "Signoff: All systems go. Ready for merge and deploy.", "gh signoff" + # else + # failure "Signoff: CI failed. Do not merge or deploy.", "Fix the issues and try again." + # end +end diff --git a/CAMAAR/config/credentials.yml.enc b/CAMAAR/config/credentials.yml.enc new file mode 100644 index 0000000000..5fb612c734 --- /dev/null +++ b/CAMAAR/config/credentials.yml.enc @@ -0,0 +1 @@ +PNJt6pyNeP/t8oDhHPCHhHuM3xDOUIVUswZFFnqmo1xpcTOPgbfE1iutUaFjc4E5RKiSBz+ZKUe9jubqBoeETc2Ag8RvvHYmNYXEWF2EbIyRkD9sHLOmbChx074X3Wd3FSnM8Ls3QRzenL6d4WbvAiWjxT6TJN6ytuQ55+1pNbFPszwjCgVvzh6FXllynd+hbCrFSZiUdFuozF0fPRvXn3Z4g7beOedBZFnNbBnU50DamD+gnLm2dZTcIbZKPDWS2JL/MXYVa/b9cDFyeLhwsHnovHEzEWYOvzZhVL3zk1oHXuX3NF/5f5Xbw4iRieuaQ+W3TFb9P8D9vHvcNjqg1XZTDyrhSEUAS2E5Rc/UlG6YJcoJ01AUjFMj3quyij24XpSa6tdMv4EeehlBieAYVL1HDBwOtF7OEtBZMd4qsKcUxqjVO4MRWunzg6K1WLQp353KvD+i3zGjRWZK18x7DYvSUHQdxiaNKKU7pd07nE8k78tsgwYER7Vx--cM+d0fcAGE54qzDZ--XMwxrPt5Ns/tyVPm29+J7g== \ No newline at end of file diff --git a/CAMAAR/config/cucumber.yml b/CAMAAR/config/cucumber.yml new file mode 100644 index 0000000000..47a4663ae2 --- /dev/null +++ b/CAMAAR/config/cucumber.yml @@ -0,0 +1,8 @@ +<% +rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : "" +rerun = rerun.strip.gsub /\s/, ' ' +rerun_opts = rerun.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}" +std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} --strict --tags 'not @wip'" +%> +default: <%= std_opts %> features +rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags 'not @wip' diff --git a/CAMAAR/config/database.yml b/CAMAAR/config/database.yml new file mode 100644 index 0000000000..693252b7c3 --- /dev/null +++ b/CAMAAR/config/database.yml @@ -0,0 +1,41 @@ +# SQLite. Versions 3.8.0 and up are supported. +# gem install sqlite3 +# +# Ensure the SQLite 3 gem is defined in your Gemfile +# gem "sqlite3" +# +default: &default + adapter: sqlite3 + max_connections: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> + timeout: 5000 + +development: + <<: *default + database: storage/development.sqlite3 + +# Warning: The database defined as "test" will be erased and +# re-generated from your development database when you run "rake". +# Do not set this db to the same as development or production. +test: + <<: *default + database: storage/test.sqlite3 + + +# Store production database in the storage/ directory, which by default +# is mounted as a persistent Docker volume in config/deploy.yml. +production: + primary: + <<: *default + database: storage/production.sqlite3 + cache: + <<: *default + database: storage/production_cache.sqlite3 + migrations_paths: db/cache_migrate + queue: + <<: *default + database: storage/production_queue.sqlite3 + migrations_paths: db/queue_migrate + cable: + <<: *default + database: storage/production_cable.sqlite3 + migrations_paths: db/cable_migrate diff --git a/CAMAAR/config/deploy.yml b/CAMAAR/config/deploy.yml new file mode 100644 index 0000000000..cac1cc144c --- /dev/null +++ b/CAMAAR/config/deploy.yml @@ -0,0 +1,120 @@ +# Name of your application. Used to uniquely configure containers. +service: camaar + +# Name of the container image (use your-user/app-name on external registries). +image: camaar + +# Deploy to these servers. +servers: + web: + - 192.168.0.1 + # job: + # hosts: + # - 192.168.0.1 + # cmd: bin/jobs + +# Enable SSL auto certification via Let's Encrypt and allow for multiple apps on a single web server. +# If used with Cloudflare, set encryption mode in SSL/TLS setting to "Full" to enable CF-to-app encryption. +# +# Using an SSL proxy like this requires turning on config.assume_ssl and config.force_ssl in production.rb! +# +# Don't use this when deploying to multiple web servers (then you have to terminate SSL at your load balancer). +# +# proxy: +# ssl: true +# host: app.example.com + +# Where you keep your container images. +registry: + # Alternatives: hub.docker.com / registry.digitalocean.com / ghcr.io / ... + server: localhost:5555 + + # Needed for authenticated registries. + # username: your-user + + # Always use an access token rather than real password when possible. + # password: + # - KAMAL_REGISTRY_PASSWORD + +# Inject ENV variables into containers (secrets come from .kamal/secrets). +env: + secret: + - RAILS_MASTER_KEY + clear: + # Run the Solid Queue Supervisor inside the web server's Puma process to do jobs. + # When you start using multiple servers, you should split out job processing to a dedicated machine. + SOLID_QUEUE_IN_PUMA: true + + # Set number of processes dedicated to Solid Queue (default: 1) + # JOB_CONCURRENCY: 3 + + # Set number of cores available to the application on each server (default: 1). + # WEB_CONCURRENCY: 2 + + # Match this to any external database server to configure Active Record correctly + # Use camaar-db for a db accessory server on same machine via local kamal docker network. + # DB_HOST: 192.168.0.2 + + # Log everything from Rails + # RAILS_LOG_LEVEL: debug + +# Aliases are triggered with "bin/kamal ". You can overwrite arguments on invocation: +# "bin/kamal logs -r job" will tail logs from the first server in the job section. +aliases: + console: app exec --interactive --reuse "bin/rails console" + shell: app exec --interactive --reuse "bash" + logs: app logs -f + dbc: app exec --interactive --reuse "bin/rails dbconsole --include-password" + +# Use a persistent storage volume for sqlite database files and local Active Storage files. +# Recommended to change this to a mounted volume path that is backed up off server. +volumes: + - "camaar_storage:/rails/storage" + +# Bridge fingerprinted assets, like JS and CSS, between versions to avoid +# hitting 404 on in-flight requests. Combines all files from new and old +# version inside the asset_path. +asset_path: /rails/public/assets + + +# Configure the image builder. +builder: + arch: amd64 + + # # Build image via remote server (useful for faster amd64 builds on arm64 computers) + # remote: ssh://docker@docker-builder-server + # + # # Pass arguments and secrets to the Docker build process + # args: + # RUBY_VERSION: 3.4.7 + # secrets: + # - GITHUB_TOKEN + # - RAILS_MASTER_KEY + +# Use a different ssh user than root +# ssh: +# user: app + +# Use accessory services (secrets come from .kamal/secrets). +# accessories: +# db: +# image: mysql:8.0 +# host: 192.168.0.2 +# # Change to 3306 to expose port to the world instead of just local network. +# port: "127.0.0.1:3306:3306" +# env: +# clear: +# MYSQL_ROOT_HOST: '%' +# secret: +# - MYSQL_ROOT_PASSWORD +# files: +# - config/mysql/production.cnf:/etc/mysql/my.cnf +# - db/production.sql:/docker-entrypoint-initdb.d/setup.sql +# directories: +# - data:/var/lib/mysql +# redis: +# image: valkey/valkey:8 +# host: 192.168.0.2 +# port: 6379 +# directories: +# - data:/data diff --git a/CAMAAR/config/environment.rb b/CAMAAR/config/environment.rb new file mode 100644 index 0000000000..cac5315775 --- /dev/null +++ b/CAMAAR/config/environment.rb @@ -0,0 +1,5 @@ +# Load the Rails application. +require_relative "application" + +# Initialize the Rails application. +Rails.application.initialize! diff --git a/CAMAAR/config/environments/development.rb b/CAMAAR/config/environments/development.rb new file mode 100644 index 0000000000..7d1b179ef2 --- /dev/null +++ b/CAMAAR/config/environments/development.rb @@ -0,0 +1,82 @@ +require "active_support/core_ext/integer/time" + +Rails.application.configure do + # Configure 'rails notes' to inspect Cucumber files + config.annotations.register_directories('features') + config.annotations.register_extensions('feature') { |tag| /#\s*(#{tag}):?\s*(.*)$/ } + + # Settings specified here will take precedence over those in config/application.rb. + + # Make code changes take effect immediately without server restart. + config.enable_reloading = true + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports. + config.consider_all_requests_local = true + + # Enable server timing. + config.server_timing = true + + # Enable/disable Action Controller caching. By default Action Controller caching is disabled. + # Run rails dev:cache to toggle Action Controller caching. + if Rails.root.join("tmp/caching-dev.txt").exist? + config.action_controller.perform_caching = true + config.action_controller.enable_fragment_cache_logging = true + config.public_file_server.headers = { "cache-control" => "public, max-age=#{2.days.to_i}" } + else + config.action_controller.perform_caching = false + end + + # Change to :null_store to avoid any caching. + config.cache_store = :memory_store + + # Store uploaded files on the local file system (see config/storage.yml for options). + config.active_storage.service = :local + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + # Make template changes take effect immediately. + config.action_mailer.perform_caching = false + + # Set localhost to be used by links generated in mailer templates. + config.action_mailer.default_url_options = { host: "localhost", port: 3000 } + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise an error on page load if there are pending migrations. + config.active_record.migration_error = :page_load + + # Highlight code that triggered database queries in logs. + config.active_record.verbose_query_logs = true + + # Append comments with runtime information tags to SQL queries in logs. + config.active_record.query_log_tags_enabled = true + + # Highlight code that enqueued background job in logs. + config.active_job.verbose_enqueue_logs = true + + # Highlight code that triggered redirect in logs. + config.action_dispatch.verbose_redirect_logs = true + + # Suppress logger output for asset requests. + config.assets.quiet = true + + # Raises error for missing translations. + # config.i18n.raise_on_missing_translations = true + + # Annotate rendered view with file names. + config.action_view.annotate_rendered_view_with_filenames = true + + # Uncomment if you wish to allow Action Cable access from any origin. + # config.action_cable.disable_request_forgery_protection = true + + # Raise error when a before_action's only/except options reference missing actions. + config.action_controller.raise_on_missing_callback_actions = true + + # Apply autocorrection by RuboCop to files generated by `bin/rails generate`. + # config.generators.apply_rubocop_autocorrect_after_generate! +end diff --git a/CAMAAR/config/environments/production.rb b/CAMAAR/config/environments/production.rb new file mode 100644 index 0000000000..f5763e04e5 --- /dev/null +++ b/CAMAAR/config/environments/production.rb @@ -0,0 +1,90 @@ +require "active_support/core_ext/integer/time" + +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # Code is not reloaded between requests. + config.enable_reloading = false + + # Eager load code on boot for better performance and memory savings (ignored by Rake tasks). + config.eager_load = true + + # Full error reports are disabled. + config.consider_all_requests_local = false + + # Turn on fragment caching in view templates. + config.action_controller.perform_caching = true + + # Cache assets for far-future expiry since they are all digest stamped. + config.public_file_server.headers = { "cache-control" => "public, max-age=#{1.year.to_i}" } + + # Enable serving of images, stylesheets, and JavaScripts from an asset server. + # config.asset_host = "http://assets.example.com" + + # Store uploaded files on the local file system (see config/storage.yml for options). + config.active_storage.service = :local + + # Assume all access to the app is happening through a SSL-terminating reverse proxy. + # config.assume_ssl = true + + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. + # config.force_ssl = true + + # Skip http-to-https redirect for the default health check endpoint. + # config.ssl_options = { redirect: { exclude: ->(request) { request.path == "/up" } } } + + # Log to STDOUT with the current request id as a default log tag. + config.log_tags = [ :request_id ] + config.logger = ActiveSupport::TaggedLogging.logger(STDOUT) + + # Change to "debug" to log everything (including potentially personally-identifiable information!). + config.log_level = ENV.fetch("RAILS_LOG_LEVEL", "info") + + # Prevent health checks from clogging up the logs. + config.silence_healthcheck_path = "/up" + + # Don't log any deprecations. + config.active_support.report_deprecations = false + + # Replace the default in-process memory cache store with a durable alternative. + config.cache_store = :solid_cache_store + + # Replace the default in-process and non-durable queuing backend for Active Job. + config.active_job.queue_adapter = :solid_queue + config.solid_queue.connects_to = { database: { writing: :queue } } + + # Ignore bad email addresses and do not raise email delivery errors. + # Set this to true and configure the email server for immediate delivery to raise delivery errors. + # config.action_mailer.raise_delivery_errors = false + + # Set host to be used by links generated in mailer templates. + config.action_mailer.default_url_options = { host: "example.com" } + + # Specify outgoing SMTP server. Remember to add smtp/* credentials via bin/rails credentials:edit. + # config.action_mailer.smtp_settings = { + # user_name: Rails.application.credentials.dig(:smtp, :user_name), + # password: Rails.application.credentials.dig(:smtp, :password), + # address: "smtp.example.com", + # port: 587, + # authentication: :plain + # } + + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to + # the I18n.default_locale when a translation cannot be found). + config.i18n.fallbacks = true + + # Do not dump schema after migrations. + config.active_record.dump_schema_after_migration = false + + # Only use :id for inspections in production. + config.active_record.attributes_for_inspect = [ :id ] + + # Enable DNS rebinding protection and other `Host` header attacks. + # config.hosts = [ + # "example.com", # Allow requests from example.com + # /.*\.example\.com/ # Allow requests from subdomains like `www.example.com` + # ] + # + # Skip DNS rebinding protection for the default health check endpoint. + # config.host_authorization = { exclude: ->(request) { request.path == "/up" } } +end diff --git a/CAMAAR/config/environments/test.rb b/CAMAAR/config/environments/test.rb new file mode 100644 index 0000000000..e6b5c1b020 --- /dev/null +++ b/CAMAAR/config/environments/test.rb @@ -0,0 +1,57 @@ +# The test environment is used exclusively to run your application's +# test suite. You never need to work with it otherwise. Remember that +# your test database is "scratch space" for the test suite and is wiped +# and recreated between test runs. Don't rely on the data there! + +Rails.application.configure do + # Configure 'rails notes' to inspect Cucumber files + config.annotations.register_directories('features') + config.annotations.register_extensions('feature') { |tag| /#\s*(#{tag}):?\s*(.*)$/ } + + # Settings specified here will take precedence over those in config/application.rb. + + # While tests run files are not watched, reloading is not necessary. + config.enable_reloading = false + + # Eager loading loads your entire application. When running a single test locally, + # this is usually not necessary, and can slow down your test suite. However, it's + # recommended that you enable it in continuous integration systems to ensure eager + # loading is working properly before deploying your code. + config.eager_load = ENV["CI"].present? + + # Configure public file server for tests with cache-control for performance. + config.public_file_server.headers = { "cache-control" => "public, max-age=3600" } + + # Show full error reports. + config.consider_all_requests_local = true + config.cache_store = :null_store + + # Render exception templates for rescuable exceptions and raise for other exceptions. + config.action_dispatch.show_exceptions = :rescuable + + # Disable request forgery protection in test environment. + config.action_controller.allow_forgery_protection = false + + # Store uploaded files on the local file system in a temporary directory. + config.active_storage.service = :test + + # Tell Action Mailer not to deliver emails to the real world. + # The :test delivery method accumulates sent emails in the + # ActionMailer::Base.deliveries array. + config.action_mailer.delivery_method = :test + + # Set host to be used by links generated in mailer templates. + config.action_mailer.default_url_options = { host: "example.com" } + + # Print deprecation notices to the stderr. + config.active_support.deprecation = :stderr + + # Raises error for missing translations. + # config.i18n.raise_on_missing_translations = true + + # Annotate rendered view with file names. + # config.action_view.annotate_rendered_view_with_filenames = true + + # Raise error when a before_action's only/except options reference missing actions. + config.action_controller.raise_on_missing_callback_actions = true +end diff --git a/CAMAAR/config/importmap.rb b/CAMAAR/config/importmap.rb new file mode 100644 index 0000000000..909dfc542d --- /dev/null +++ b/CAMAAR/config/importmap.rb @@ -0,0 +1,7 @@ +# Pin npm packages by running ./bin/importmap + +pin "application" +pin "@hotwired/turbo-rails", to: "turbo.min.js" +pin "@hotwired/stimulus", to: "stimulus.min.js" +pin "@hotwired/stimulus-loading", to: "stimulus-loading.js" +pin_all_from "app/javascript/controllers", under: "controllers" diff --git a/CAMAAR/config/initializers/assets.rb b/CAMAAR/config/initializers/assets.rb new file mode 100644 index 0000000000..487324424f --- /dev/null +++ b/CAMAAR/config/initializers/assets.rb @@ -0,0 +1,7 @@ +# Be sure to restart your server when you modify this file. + +# Version of your assets, change this if you want to expire all your assets. +Rails.application.config.assets.version = "1.0" + +# Add additional assets to the asset load path. +# Rails.application.config.assets.paths << Emoji.images_path diff --git a/CAMAAR/config/initializers/content_security_policy.rb b/CAMAAR/config/initializers/content_security_policy.rb new file mode 100644 index 0000000000..d51d713979 --- /dev/null +++ b/CAMAAR/config/initializers/content_security_policy.rb @@ -0,0 +1,29 @@ +# Be sure to restart your server when you modify this file. + +# Define an application-wide content security policy. +# See the Securing Rails Applications Guide for more information: +# https://guides.rubyonrails.org/security.html#content-security-policy-header + +# Rails.application.configure do +# config.content_security_policy do |policy| +# policy.default_src :self, :https +# policy.font_src :self, :https, :data +# policy.img_src :self, :https, :data +# policy.object_src :none +# policy.script_src :self, :https +# policy.style_src :self, :https +# # Specify URI for violation reports +# # policy.report_uri "/csp-violation-report-endpoint" +# end +# +# # Generate session nonces for permitted importmap, inline scripts, and inline styles. +# config.content_security_policy_nonce_generator = ->(request) { request.session.id.to_s } +# config.content_security_policy_nonce_directives = %w(script-src style-src) +# +# # Automatically add `nonce` to `javascript_tag`, `javascript_include_tag`, and `stylesheet_link_tag` +# # if the corresponding directives are specified in `content_security_policy_nonce_directives`. +# # config.content_security_policy_nonce_auto = true +# +# # Report violations without enforcing the policy. +# # config.content_security_policy_report_only = true +# end diff --git a/CAMAAR/config/initializers/filter_parameter_logging.rb b/CAMAAR/config/initializers/filter_parameter_logging.rb new file mode 100644 index 0000000000..c0b717f7ec --- /dev/null +++ b/CAMAAR/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,8 @@ +# Be sure to restart your server when you modify this file. + +# Configure parameters to be partially matched (e.g. passw matches password) and filtered from the log file. +# Use this to limit dissemination of sensitive information. +# See the ActiveSupport::ParameterFilter documentation for supported notations and behaviors. +Rails.application.config.filter_parameters += [ + :passw, :email, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn, :cvv, :cvc +] diff --git a/CAMAAR/config/initializers/inflections.rb b/CAMAAR/config/initializers/inflections.rb new file mode 100644 index 0000000000..3860f659ea --- /dev/null +++ b/CAMAAR/config/initializers/inflections.rb @@ -0,0 +1,16 @@ +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. All of these examples are active by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.plural /^(ox)$/i, "\\1en" +# inflect.singular /^(ox)en/i, "\\1" +# inflect.irregular "person", "people" +# inflect.uncountable %w( fish sheep ) +# end + +# These inflection rules are supported but not enabled by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.acronym "RESTful" +# end diff --git a/CAMAAR/config/locales/en.yml b/CAMAAR/config/locales/en.yml new file mode 100644 index 0000000000..6c349ae5e3 --- /dev/null +++ b/CAMAAR/config/locales/en.yml @@ -0,0 +1,31 @@ +# Files in the config/locales directory are used for internationalization and +# are automatically loaded by Rails. If you want to use locales other than +# English, add the necessary files in this directory. +# +# To use the locales, use `I18n.t`: +# +# I18n.t "hello" +# +# In views, this is aliased to just `t`: +# +# <%= t("hello") %> +# +# To use a different locale, set it with `I18n.locale`: +# +# I18n.locale = :es +# +# This would use the information in config/locales/es.yml. +# +# To learn more about the API, please read the Rails Internationalization guide +# at https://guides.rubyonrails.org/i18n.html. +# +# Be aware that YAML interprets the following case-insensitive strings as +# booleans: `true`, `false`, `on`, `off`, `yes`, `no`. Therefore, these strings +# must be quoted to be interpreted as strings. For example: +# +# en: +# "yes": yup +# enabled: "ON" + +en: + hello: "Hello world" diff --git a/CAMAAR/config/puma.rb b/CAMAAR/config/puma.rb new file mode 100644 index 0000000000..38c4b86596 --- /dev/null +++ b/CAMAAR/config/puma.rb @@ -0,0 +1,42 @@ +# This configuration file will be evaluated by Puma. The top-level methods that +# are invoked here are part of Puma's configuration DSL. For more information +# about methods provided by the DSL, see https://puma.io/puma/Puma/DSL.html. +# +# Puma starts a configurable number of processes (workers) and each process +# serves each request in a thread from an internal thread pool. +# +# You can control the number of workers using ENV["WEB_CONCURRENCY"]. You +# should only set this value when you want to run 2 or more workers. The +# default is already 1. You can set it to `auto` to automatically start a worker +# for each available processor. +# +# The ideal number of threads per worker depends both on how much time the +# application spends waiting for IO operations and on how much you wish to +# prioritize throughput over latency. +# +# As a rule of thumb, increasing the number of threads will increase how much +# traffic a given process can handle (throughput), but due to CRuby's +# Global VM Lock (GVL) it has diminishing returns and will degrade the +# response time (latency) of the application. +# +# The default is set to 3 threads as it's deemed a decent compromise between +# throughput and latency for the average Rails application. +# +# Any libraries that use a connection pool or another resource pool should +# be configured to provide at least as many connections as the number of +# threads. This includes Active Record's `pool` parameter in `database.yml`. +threads_count = ENV.fetch("RAILS_MAX_THREADS", 3) +threads threads_count, threads_count + +# Specifies the `port` that Puma will listen on to receive requests; default is 3000. +port ENV.fetch("PORT", 3000) + +# Allow puma to be restarted by `bin/rails restart` command. +plugin :tmp_restart + +# Run the Solid Queue supervisor inside of Puma for single-server deployments. +plugin :solid_queue if ENV["SOLID_QUEUE_IN_PUMA"] + +# Specify the PID file. Defaults to tmp/pids/server.pid in development. +# In other environments, only set the PID file if requested. +pidfile ENV["PIDFILE"] if ENV["PIDFILE"] diff --git a/CAMAAR/config/queue.yml b/CAMAAR/config/queue.yml new file mode 100644 index 0000000000..9eace59c41 --- /dev/null +++ b/CAMAAR/config/queue.yml @@ -0,0 +1,18 @@ +default: &default + dispatchers: + - polling_interval: 1 + batch_size: 500 + workers: + - queues: "*" + threads: 3 + processes: <%= ENV.fetch("JOB_CONCURRENCY", 1) %> + polling_interval: 0.1 + +development: + <<: *default + +test: + <<: *default + +production: + <<: *default diff --git a/CAMAAR/config/recurring.yml b/CAMAAR/config/recurring.yml new file mode 100644 index 0000000000..b4207f9b07 --- /dev/null +++ b/CAMAAR/config/recurring.yml @@ -0,0 +1,15 @@ +# examples: +# periodic_cleanup: +# class: CleanSoftDeletedRecordsJob +# queue: background +# args: [ 1000, { batch_size: 500 } ] +# schedule: every hour +# periodic_cleanup_with_command: +# command: "SoftDeletedRecord.due.delete_all" +# priority: 2 +# schedule: at 5am every day + +production: + clear_solid_queue_finished_jobs: + command: "SolidQueue::Job.clear_finished_in_batches(sleep_between_batches: 0.3)" + schedule: every hour at minute 12 diff --git a/CAMAAR/config/routes.rb b/CAMAAR/config/routes.rb new file mode 100644 index 0000000000..48254e88ed --- /dev/null +++ b/CAMAAR/config/routes.rb @@ -0,0 +1,14 @@ +Rails.application.routes.draw do + # Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html + + # Reveal health status on /up that returns 200 if the app boots with no exceptions, otherwise 500. + # Can be used by load balancers and uptime monitors to verify that the app is live. + get "up" => "rails/health#show", as: :rails_health_check + + # Render dynamic PWA files from app/views/pwa/* (remember to link manifest in application.html.erb) + # get "manifest" => "rails/pwa#manifest", as: :pwa_manifest + # get "service-worker" => "rails/pwa#service_worker", as: :pwa_service_worker + + # Defines the root path route ("/") + # root "posts#index" +end diff --git a/CAMAAR/config/storage.yml b/CAMAAR/config/storage.yml new file mode 100644 index 0000000000..927dc537c8 --- /dev/null +++ b/CAMAAR/config/storage.yml @@ -0,0 +1,27 @@ +test: + service: Disk + root: <%= Rails.root.join("tmp/storage") %> + +local: + service: Disk + root: <%= Rails.root.join("storage") %> + +# Use bin/rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key) +# amazon: +# service: S3 +# access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %> +# secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %> +# region: us-east-1 +# bucket: your_own_bucket-<%= Rails.env %> + +# Remember not to checkin your GCS keyfile to a repository +# google: +# service: GCS +# project: your_project +# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %> +# bucket: your_own_bucket-<%= Rails.env %> + +# mirror: +# service: Mirror +# primary: local +# mirrors: [ amazon, google, microsoft ] diff --git a/CAMAAR/db/cable_schema.rb b/CAMAAR/db/cable_schema.rb new file mode 100644 index 0000000000..23666604a5 --- /dev/null +++ b/CAMAAR/db/cable_schema.rb @@ -0,0 +1,11 @@ +ActiveRecord::Schema[7.1].define(version: 1) do + create_table "solid_cable_messages", force: :cascade do |t| + t.binary "channel", limit: 1024, null: false + t.binary "payload", limit: 536870912, null: false + t.datetime "created_at", null: false + t.integer "channel_hash", limit: 8, null: false + t.index ["channel"], name: "index_solid_cable_messages_on_channel" + t.index ["channel_hash"], name: "index_solid_cable_messages_on_channel_hash" + t.index ["created_at"], name: "index_solid_cable_messages_on_created_at" + end +end diff --git a/CAMAAR/db/cache_schema.rb b/CAMAAR/db/cache_schema.rb new file mode 100644 index 0000000000..81a410d188 --- /dev/null +++ b/CAMAAR/db/cache_schema.rb @@ -0,0 +1,12 @@ +ActiveRecord::Schema[7.2].define(version: 1) do + create_table "solid_cache_entries", force: :cascade do |t| + t.binary "key", limit: 1024, null: false + t.binary "value", limit: 536870912, null: false + t.datetime "created_at", null: false + t.integer "key_hash", limit: 8, null: false + t.integer "byte_size", limit: 4, null: false + t.index ["byte_size"], name: "index_solid_cache_entries_on_byte_size" + t.index ["key_hash", "byte_size"], name: "index_solid_cache_entries_on_key_hash_and_byte_size" + t.index ["key_hash"], name: "index_solid_cache_entries_on_key_hash", unique: true + end +end diff --git a/CAMAAR/db/queue_schema.rb b/CAMAAR/db/queue_schema.rb new file mode 100644 index 0000000000..85194b6a88 --- /dev/null +++ b/CAMAAR/db/queue_schema.rb @@ -0,0 +1,129 @@ +ActiveRecord::Schema[7.1].define(version: 1) do + create_table "solid_queue_blocked_executions", force: :cascade do |t| + t.bigint "job_id", null: false + t.string "queue_name", null: false + t.integer "priority", default: 0, null: false + t.string "concurrency_key", null: false + t.datetime "expires_at", null: false + t.datetime "created_at", null: false + t.index [ "concurrency_key", "priority", "job_id" ], name: "index_solid_queue_blocked_executions_for_release" + t.index [ "expires_at", "concurrency_key" ], name: "index_solid_queue_blocked_executions_for_maintenance" + t.index [ "job_id" ], name: "index_solid_queue_blocked_executions_on_job_id", unique: true + end + + create_table "solid_queue_claimed_executions", force: :cascade do |t| + t.bigint "job_id", null: false + t.bigint "process_id" + t.datetime "created_at", null: false + t.index [ "job_id" ], name: "index_solid_queue_claimed_executions_on_job_id", unique: true + t.index [ "process_id", "job_id" ], name: "index_solid_queue_claimed_executions_on_process_id_and_job_id" + end + + create_table "solid_queue_failed_executions", force: :cascade do |t| + t.bigint "job_id", null: false + t.text "error" + t.datetime "created_at", null: false + t.index [ "job_id" ], name: "index_solid_queue_failed_executions_on_job_id", unique: true + end + + create_table "solid_queue_jobs", force: :cascade do |t| + t.string "queue_name", null: false + t.string "class_name", null: false + t.text "arguments" + t.integer "priority", default: 0, null: false + t.string "active_job_id" + t.datetime "scheduled_at" + t.datetime "finished_at" + t.string "concurrency_key" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index [ "active_job_id" ], name: "index_solid_queue_jobs_on_active_job_id" + t.index [ "class_name" ], name: "index_solid_queue_jobs_on_class_name" + t.index [ "finished_at" ], name: "index_solid_queue_jobs_on_finished_at" + t.index [ "queue_name", "finished_at" ], name: "index_solid_queue_jobs_for_filtering" + t.index [ "scheduled_at", "finished_at" ], name: "index_solid_queue_jobs_for_alerting" + end + + create_table "solid_queue_pauses", force: :cascade do |t| + t.string "queue_name", null: false + t.datetime "created_at", null: false + t.index [ "queue_name" ], name: "index_solid_queue_pauses_on_queue_name", unique: true + end + + create_table "solid_queue_processes", force: :cascade do |t| + t.string "kind", null: false + t.datetime "last_heartbeat_at", null: false + t.bigint "supervisor_id" + t.integer "pid", null: false + t.string "hostname" + t.text "metadata" + t.datetime "created_at", null: false + t.string "name", null: false + t.index [ "last_heartbeat_at" ], name: "index_solid_queue_processes_on_last_heartbeat_at" + t.index [ "name", "supervisor_id" ], name: "index_solid_queue_processes_on_name_and_supervisor_id", unique: true + t.index [ "supervisor_id" ], name: "index_solid_queue_processes_on_supervisor_id" + end + + create_table "solid_queue_ready_executions", force: :cascade do |t| + t.bigint "job_id", null: false + t.string "queue_name", null: false + t.integer "priority", default: 0, null: false + t.datetime "created_at", null: false + t.index [ "job_id" ], name: "index_solid_queue_ready_executions_on_job_id", unique: true + t.index [ "priority", "job_id" ], name: "index_solid_queue_poll_all" + t.index [ "queue_name", "priority", "job_id" ], name: "index_solid_queue_poll_by_queue" + end + + create_table "solid_queue_recurring_executions", force: :cascade do |t| + t.bigint "job_id", null: false + t.string "task_key", null: false + t.datetime "run_at", null: false + t.datetime "created_at", null: false + t.index [ "job_id" ], name: "index_solid_queue_recurring_executions_on_job_id", unique: true + t.index [ "task_key", "run_at" ], name: "index_solid_queue_recurring_executions_on_task_key_and_run_at", unique: true + end + + create_table "solid_queue_recurring_tasks", force: :cascade do |t| + t.string "key", null: false + t.string "schedule", null: false + t.string "command", limit: 2048 + t.string "class_name" + t.text "arguments" + t.string "queue_name" + t.integer "priority", default: 0 + t.boolean "static", default: true, null: false + t.text "description" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index [ "key" ], name: "index_solid_queue_recurring_tasks_on_key", unique: true + t.index [ "static" ], name: "index_solid_queue_recurring_tasks_on_static" + end + + create_table "solid_queue_scheduled_executions", force: :cascade do |t| + t.bigint "job_id", null: false + t.string "queue_name", null: false + t.integer "priority", default: 0, null: false + t.datetime "scheduled_at", null: false + t.datetime "created_at", null: false + t.index [ "job_id" ], name: "index_solid_queue_scheduled_executions_on_job_id", unique: true + t.index [ "scheduled_at", "priority", "job_id" ], name: "index_solid_queue_dispatch_all" + end + + create_table "solid_queue_semaphores", force: :cascade do |t| + t.string "key", null: false + t.integer "value", default: 1, null: false + t.datetime "expires_at", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index [ "expires_at" ], name: "index_solid_queue_semaphores_on_expires_at" + t.index [ "key", "value" ], name: "index_solid_queue_semaphores_on_key_and_value" + t.index [ "key" ], name: "index_solid_queue_semaphores_on_key", unique: true + end + + add_foreign_key "solid_queue_blocked_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade + add_foreign_key "solid_queue_claimed_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade + add_foreign_key "solid_queue_failed_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade + add_foreign_key "solid_queue_ready_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade + add_foreign_key "solid_queue_recurring_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade + add_foreign_key "solid_queue_scheduled_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade +end diff --git a/CAMAAR/db/seeds.rb b/CAMAAR/db/seeds.rb new file mode 100644 index 0000000000..4fbd6ed970 --- /dev/null +++ b/CAMAAR/db/seeds.rb @@ -0,0 +1,9 @@ +# This file should ensure the existence of records required to run the application in every environment (production, +# development, test). The code here should be idempotent so that it can be executed at any point in every environment. +# The data can then be loaded with the bin/rails db:seed command (or created alongside the database with db:setup). +# +# Example: +# +# ["Action", "Comedy", "Drama", "Horror"].each do |genre_name| +# MovieGenre.find_or_create_by!(name: genre_name) +# end diff --git a/CAMAAR/features/step_definitions/.keep b/CAMAAR/features/step_definitions/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/features/support/env.rb b/CAMAAR/features/support/env.rb new file mode 100644 index 0000000000..3b97d14087 --- /dev/null +++ b/CAMAAR/features/support/env.rb @@ -0,0 +1,53 @@ +# IMPORTANT: This file is generated by cucumber-rails - edit at your own peril. +# It is recommended to regenerate this file in the future when you upgrade to a +# newer version of cucumber-rails. Consider adding your own code to a new file +# instead of editing this one. Cucumber will automatically load all features/**/*.rb +# files. + + +require 'cucumber/rails' + +# By default, any exception happening in your Rails application will bubble up +# to Cucumber so that your scenario will fail. This is a different from how +# your application behaves in the production environment, where an error page will +# be rendered instead. +# +# Sometimes we want to override this default behaviour and allow Rails to rescue +# exceptions and display an error page (just like when the app is running in production). +# Typical scenarios where you want to do this is when you test your error pages. +# There are two ways to allow Rails to rescue exceptions: +# +# 1) Tag your scenario (or feature) with @allow-rescue +# +# 2) Set the value below to true. Beware that doing this globally is not +# recommended as it will mask a lot of errors for you! +# +ActionController::Base.allow_rescue = false + +# Remove/comment out the lines below if your app doesn't have a database. +# For some databases (like MongoDB and CouchDB) you may need to use :truncation instead. +begin + DatabaseCleaner.strategy = :transaction +rescue NameError + raise "You need to add database_cleaner to your Gemfile (in the :test group) if you wish to use it." +end + +# You may also want to configure DatabaseCleaner to use different strategies for certain features and scenarios. +# See the DatabaseCleaner documentation for details. Example: +# +# Before('@no-txn,@selenium,@culerity,@celerity,@javascript') do +# # { except: [:widgets] } may not do what you expect here +# # as Cucumber::Rails::Database.javascript_strategy overrides +# # this setting. +# DatabaseCleaner.strategy = :truncation +# end +# +# Before('not @no-txn', 'not @selenium', 'not @culerity', 'not @celerity', 'not @javascript') do +# DatabaseCleaner.strategy = :transaction +# end +# + +# Possible values are :truncation and :transaction +# The :transaction strategy is faster, but might give you threading problems. +# See https://github.com/cucumber/cucumber-rails/blob/master/features/choose_javascript_database_strategy.feature +Cucumber::Rails::Database.javascript_strategy = :truncation diff --git a/CAMAAR/lib/tasks/.keep b/CAMAAR/lib/tasks/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/lib/tasks/cucumber.rake b/CAMAAR/lib/tasks/cucumber.rake new file mode 100644 index 0000000000..0caa4d2553 --- /dev/null +++ b/CAMAAR/lib/tasks/cucumber.rake @@ -0,0 +1,69 @@ +# IMPORTANT: This file is generated by cucumber-rails - edit at your own peril. +# It is recommended to regenerate this file in the future when you upgrade to a +# newer version of cucumber-rails. Consider adding your own code to a new file +# instead of editing this one. Cucumber will automatically load all features/**/*.rb +# files. + + +unless ARGV.any? {|a| a =~ /^gems/} # Don't load anything when running the gems:* tasks + +vendored_cucumber_bin = Dir["#{Rails.root}/vendor/{gems,plugins}/cucumber*/bin/cucumber"].first +$LOAD_PATH.unshift(File.dirname(vendored_cucumber_bin) + '/../lib') unless vendored_cucumber_bin.nil? + +begin + require 'cucumber/rake/task' + + namespace :cucumber do + Cucumber::Rake::Task.new({ok: 'test:prepare'}, 'Run features that should pass') do |t| + t.binary = vendored_cucumber_bin # If nil, the gem's binary is used. + t.fork = true # You may get faster startup if you set this to false + t.profile = 'default' + end + + Cucumber::Rake::Task.new({wip: 'test:prepare'}, 'Run features that are being worked on') do |t| + t.binary = vendored_cucumber_bin + t.fork = true # You may get faster startup if you set this to false + t.profile = 'wip' + end + + Cucumber::Rake::Task.new({rerun: 'test:prepare'}, 'Record failing features and run only them if any exist') do |t| + t.binary = vendored_cucumber_bin + t.fork = true # You may get faster startup if you set this to false + t.profile = 'rerun' + end + + desc 'Run all features' + task all: [:ok, :wip] + + task :statsetup do + require 'rails/code_statistics' + ::STATS_DIRECTORIES << %w(Cucumber\ features features) if File.exist?('features') + ::CodeStatistics::TEST_TYPES << "Cucumber features" if File.exist?('features') + end + + end + + desc 'Alias for cucumber:ok' + task cucumber: 'cucumber:ok' + + task default: :cucumber + + task features: :cucumber do + STDERR.puts "*** The 'features' task is deprecated. See rake -T cucumber ***" + end + + # In case we don't have the generic Rails test:prepare hook, append a no-op task that we can depend upon. + task 'test:prepare' do + end + + task stats: 'cucumber:statsetup' + + +rescue LoadError + desc 'cucumber rake task not available (cucumber not installed)' + task :cucumber do + abort 'Cucumber rake task is not available. Be sure to install cucumber as a gem or plugin' + end +end + +end diff --git a/CAMAAR/log/.keep b/CAMAAR/log/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/public/400.html b/CAMAAR/public/400.html new file mode 100644 index 0000000000..640de03397 --- /dev/null +++ b/CAMAAR/public/400.html @@ -0,0 +1,135 @@ + + + + + + + The server cannot process the request due to a client error (400 Bad Request) + + + + + + + + + + + + + +
+
+ +
+
+

The server cannot process the request due to a client error. Please check the request and try again. If you're the application owner check the logs for more information.

+
+
+ + + + diff --git a/CAMAAR/public/404.html b/CAMAAR/public/404.html new file mode 100644 index 0000000000..d7f0f14222 --- /dev/null +++ b/CAMAAR/public/404.html @@ -0,0 +1,135 @@ + + + + + + + The page you were looking for doesn't exist (404 Not found) + + + + + + + + + + + + + +
+
+ +
+
+

The page you were looking for doesn't exist. You may have mistyped the address or the page may have moved. If you're the application owner check the logs for more information.

+
+
+ + + + diff --git a/CAMAAR/public/406-unsupported-browser.html b/CAMAAR/public/406-unsupported-browser.html new file mode 100644 index 0000000000..43d2811e8c --- /dev/null +++ b/CAMAAR/public/406-unsupported-browser.html @@ -0,0 +1,135 @@ + + + + + + + Your browser is not supported (406 Not Acceptable) + + + + + + + + + + + + + +
+
+ +
+
+

Your browser is not supported.
Please upgrade your browser to continue.

+
+
+ + + + diff --git a/CAMAAR/public/422.html b/CAMAAR/public/422.html new file mode 100644 index 0000000000..f12fb4aa17 --- /dev/null +++ b/CAMAAR/public/422.html @@ -0,0 +1,135 @@ + + + + + + + The change you wanted was rejected (422 Unprocessable Entity) + + + + + + + + + + + + + +
+
+ +
+
+

The change you wanted was rejected. Maybe you tried to change something you didn't have access to. If you're the application owner check the logs for more information.

+
+
+ + + + diff --git a/CAMAAR/public/500.html b/CAMAAR/public/500.html new file mode 100644 index 0000000000..e4eb18a759 --- /dev/null +++ b/CAMAAR/public/500.html @@ -0,0 +1,135 @@ + + + + + + + We're sorry, but something went wrong (500 Internal Server Error) + + + + + + + + + + + + + +
+
+ +
+
+

We're sorry, but something went wrong.
If you're the application owner check the logs for more information.

+
+
+ + + + diff --git a/CAMAAR/public/icon.png b/CAMAAR/public/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c4c9dbfbbd2f7c1421ffd5727188146213abbcef GIT binary patch literal 4166 zcmd6qU;WFw?|v@m)Sk^&NvB8tcujdV-r1b=i(NJxn&7{KTb zX$3(M+3TP2o^#KAo{#tIjl&t~(8D-k004kqPglzn0HFG(Q~(I*AKsD#M*g7!XK0T7 zN6P7j>HcT8rZgKl$v!xr806dyN19Bd4C0x_R*I-a?#zsTvb_89cyhuC&T**i|Rc zq5b8M;+{8KvoJ~uj9`u~d_f6`V&3+&ZX9x5pc8s)d175;@pjm(?dapmBcm0&vl9+W zx1ZD2o^nuyUHWj|^A8r>lUorO`wFF;>9XL-Jy!P}UXC{(z!FO%SH~8k`#|9;Q|eue zqWL0^Bp(fg_+Pkm!fDKRSY;+^@BF?AJE zCUWpXPst~hi_~u)SzYBDZroR+Z4xeHIlm_3Yc_9nZ(o_gg!jDgVa=E}Y8uDgem9`b zf=mfJ_@(BXSkW53B)F2s!&?_R4ptb1fYXlF++@vPhd=marQgEGRZS@B4g1Mu?euknL= z67P~tZ?*>-Hmi7GwlisNHHJDku-dSm7g@!=a}9cSL6Pa^w^2?&?$Oi8ibrr>w)xqx zOH_EMU@m05)9kuNR>>4@H%|){U$^yvVQ(YgOlh;5oU_-vivG-p4=LrN-k7D?*?u1u zsWly%tfAzKd6Fb=`eU2un_uaTXmcT#tlOL+aRS=kZZf}A7qT8lvcTx~7j` z*b>=z)mwg7%B2_!D0!1IZ?Nq{^Y$uI4Qx*6T!E2Col&2{k?ImCO=dD~A&9f9diXy^$x{6CwkBimn|1E09 zAMSezYtiL?O6hS37KpvDM?22&d{l)7h-!F)C-d3j8Z`c@($?mfd{R82)H>Qe`h{~G z!I}(2j(|49{LR?w4Jspl_i!(4T{31|dqCOpI52r5NhxYV+cDAu(xp*4iqZ2e-$YP= zoFOPmm|u*7C?S{Fp43y+V;>~@FFR76bCl@pTtyB93vNWy5yf;HKr8^0d7&GVIslYm zo3Tgt@M!`8B6IW&lK{Xk>%zp41G%`(DR&^u z5^pwD4>E6-w<8Kl2DzJ%a@~QDE$(e87lNhy?-Qgep!$b?5f7+&EM7$e>|WrX+=zCb z=!f5P>MxFyy;mIRxjc(H*}mceXw5a*IpC0PEYJ8Y3{JdoIW)@t97{wcUB@u+$FCCO z;s2Qe(d~oJC^`m$7DE-dsha`glrtu&v&93IZadvl_yjp!c89>zo;Krk+d&DEG4?x$ zufC1n+c1XD7dolX1q|7}uelR$`pT0Z)1jun<39$Sn2V5g&|(j~Z!wOddfYiZo7)A< z!dK`aBHOOk+-E_xbWCA3VR-+o$i5eO9`rMI#p_0xQ}rjEpGW;U!&&PKnivOcG(|m9 z!C8?WC6nCXw25WVa*eew)zQ=h45k8jSIPbq&?VE{oG%?4>9rwEeB4&qe#?-y_es4c|7ufw%+H5EY#oCgv!Lzv291#-oNlX~X+Jl5(riC~r z=0M|wMOP)Tt8@hNg&%V@Z9@J|Q#K*hE>sr6@oguas9&6^-=~$*2Gs%h#GF@h)i=Im z^iKk~ipWJg1VrvKS;_2lgs3n1zvNvxb27nGM=NXE!D4C!U`f*K2B@^^&ij9y}DTLB*FI zEnBL6y{jc?JqXWbkIZd7I16hA>(f9T!iwbIxJj~bKPfrO;>%*5nk&Lf?G@c2wvGrY&41$W{7HM9+b@&XY@>NZM5s|EK_Dp zQX60CBuantx>|d#DsaZ*8MW(we|#KTYZ=vNa#d*DJQe6hr~J6{_rI#?wi@s|&O}FR zG$kfPxheXh1?IZ{bDT-CWB4FTvO-k5scW^mi8?iY5Q`f8JcnnCxiy@m@D-%lO;y0pTLhh6i6l@x52j=#^$5_U^os}OFg zzdHbo(QI`%9#o*r8GCW~T3UdV`szO#~)^&X_(VW>o~umY9-ns9-V4lf~j z`QBD~pJ4a#b`*6bJ^3RS5y?RAgF7K5$ll97Y8#WZduZ`j?IEY~H(s^doZg>7-tk*t z4_QE1%%bb^p~4F5SB$t2i1>DBG1cIo;2(xTaj*Y~hlM{tSDHojL-QPg%Mo%6^7FrpB*{ z4G0@T{-77Por4DCMF zB_5Y~Phv%EQ64W8^GS6h?x6xh;w2{z3$rhC;m+;uD&pR74j+i22P5DS-tE8ABvH(U~indEbBUTAAAXfHZg5QpB@TgV9eI<)JrAkOI z8!TSOgfAJiWAXeM&vR4Glh;VxH}WG&V$bVb`a`g}GSpwggti*&)taV1@Ak|{WrV|5 zmNYx)Ans=S{c52qv@+jmGQ&vd6>6yX6IKq9O$3r&0xUTdZ!m1!irzn`SY+F23Rl6# zFRxws&gV-kM1NX(3(gnKpGi0Q)Dxi~#?nyzOR9!en;Ij>YJZVFAL*=R%7y%Mz9hU% zs>+ZB?qRmZ)nISx7wxY)y#cd$iaC~{k0avD>BjyF1q^mNQ1QcwsxiTySe<6C&cC6P zE`vwO9^k-d`9hZ!+r@Jnr+MF*2;2l8WjZ}DrwDUHzSF{WoG zucbSWguA!3KgB3MU%HH`R;XqVv0CcaGq?+;v_A5A2kpmk5V%qZE3yzQ7R5XWhq=eR zyUezH=@V)y>L9T-M-?tW(PQYTRBKZSVb_!$^H-Pn%ea;!vS_?M<~Tm>_rWIW43sPW z=!lY&fWc1g7+r?R)0p8(%zp&vl+FK4HRkns%BW+Up&wK8!lQ2~bja|9bD12WrKn#M zK)Yl9*8$SI7MAwSK$%)dMd>o+1UD<2&aQMhyjS5R{-vV+M;Q4bzl~Z~=4HFj_#2V9 zB)Gfzx3ncy@uzx?yzi}6>d%-?WE}h7v*w)Jr_gBl!2P&F3DX>j_1#--yjpL%<;JMR z*b70Gr)MMIBWDo~#<5F^Q0$VKI;SBIRneuR7)yVsN~A9I@gZTXe)E?iVII+X5h0~H zx^c(fP&4>!*q>fb6dAOC?MI>Cz3kld#J*;uik+Ps49cwm1B4 zZc1|ZxYyTv;{Z!?qS=D)sgRKx^1AYf%;y_V&VgZglfU>d+Ufk5&LV$sKv}Hoj+s; xK3FZRYdhbXT_@RW*ff3@`D1#ps#~H)p+y&j#(J|vk^lW{fF9OJt5(B-_&*Xgn9~3N literal 0 HcmV?d00001 diff --git a/CAMAAR/public/icon.svg b/CAMAAR/public/icon.svg new file mode 100644 index 0000000000..04b34bf83f --- /dev/null +++ b/CAMAAR/public/icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/CAMAAR/public/robots.txt b/CAMAAR/public/robots.txt new file mode 100644 index 0000000000..c19f78ab68 --- /dev/null +++ b/CAMAAR/public/robots.txt @@ -0,0 +1 @@ +# See https://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file diff --git a/CAMAAR/script/.keep b/CAMAAR/script/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/storage/.keep b/CAMAAR/storage/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/test/application_system_test_case.rb b/CAMAAR/test/application_system_test_case.rb new file mode 100644 index 0000000000..cee29fd214 --- /dev/null +++ b/CAMAAR/test/application_system_test_case.rb @@ -0,0 +1,5 @@ +require "test_helper" + +class ApplicationSystemTestCase < ActionDispatch::SystemTestCase + driven_by :selenium, using: :headless_chrome, screen_size: [ 1400, 1400 ] +end diff --git a/CAMAAR/test/controllers/.keep b/CAMAAR/test/controllers/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/test/fixtures/files/.keep b/CAMAAR/test/fixtures/files/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/test/helpers/.keep b/CAMAAR/test/helpers/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/test/integration/.keep b/CAMAAR/test/integration/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/test/mailers/.keep b/CAMAAR/test/mailers/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/test/models/.keep b/CAMAAR/test/models/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/test/system/.keep b/CAMAAR/test/system/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/test/test_helper.rb b/CAMAAR/test/test_helper.rb new file mode 100644 index 0000000000..0c22470ec1 --- /dev/null +++ b/CAMAAR/test/test_helper.rb @@ -0,0 +1,15 @@ +ENV["RAILS_ENV"] ||= "test" +require_relative "../config/environment" +require "rails/test_help" + +module ActiveSupport + class TestCase + # Run tests in parallel with specified workers + parallelize(workers: :number_of_processors) + + # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. + fixtures :all + + # Add more helper methods to be used by all tests here... + end +end diff --git a/CAMAAR/tmp/.keep b/CAMAAR/tmp/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/tmp/pids/.keep b/CAMAAR/tmp/pids/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/tmp/storage/.keep b/CAMAAR/tmp/storage/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/vendor/.keep b/CAMAAR/vendor/.keep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/CAMAAR/vendor/javascript/.keep b/CAMAAR/vendor/javascript/.keep new file mode 100644 index 0000000000..e69de29bb2 From f27a8ffa1e1d874227475abe3b880f175a2a95f0 Mon Sep 17 00:00:00 2001 From: Kitsai Date: Tue, 11 Nov 2025 19:54:24 -0300 Subject: [PATCH 002/151] user login feature First bdd feature for examplification --- CAMAAR/features/user_login.feature | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 CAMAAR/features/user_login.feature diff --git a/CAMAAR/features/user_login.feature b/CAMAAR/features/user_login.feature new file mode 100644 index 0000000000..70a128dd34 --- /dev/null +++ b/CAMAAR/features/user_login.feature @@ -0,0 +1,11 @@ +Feature: User Login + + Scenario: User logs in successfully + Given I am on login page + When I enter valid credentials + Then I should see the homepage + + Scenario: User logs in unsuccessfully + Given I am on login page + When I enter invalid credentials + Then I should see an error message From 424514c1d034377edfda928f44b728b5b88c3091 Mon Sep 17 00:00:00 2001 From: Kitsai Date: Thu, 13 Nov 2025 16:27:11 -0300 Subject: [PATCH 003/151] create template bdd --- CAMAAR/features/create_template.feature | 23 +++++++++++++++++++++++ CAMAAR/features/user_login.feature | 20 ++++++++++++++++---- 2 files changed, 39 insertions(+), 4 deletions(-) create mode 100644 CAMAAR/features/create_template.feature diff --git a/CAMAAR/features/create_template.feature b/CAMAAR/features/create_template.feature new file mode 100644 index 0000000000..798351e52d --- /dev/null +++ b/CAMAAR/features/create_template.feature @@ -0,0 +1,23 @@ +Feature: Create Form Template + + Scenario: Template created successfully with valid data + Given I am an admin + And I am on the gerenciamento - templates page + When I click the add button + And I enter a valid name + And I add at least one question + Then the new template should appear in the template list + + Scenario: Tried to create a template with no questions + Given I am an admin + And I am on the gerenciamento - templates page + When I click the add button + And I do not add questions + Then I should receive an error that I should add questions + + Scenario: Tried to create a template with no name + Given I am an admin + And I am on the gerenciamento - templates page + When I click the add button + And I enter a invalid name + Then I should receive an error that I should add a name diff --git a/CAMAAR/features/user_login.feature b/CAMAAR/features/user_login.feature index 70a128dd34..31ec1b2825 100644 --- a/CAMAAR/features/user_login.feature +++ b/CAMAAR/features/user_login.feature @@ -2,10 +2,22 @@ Feature: User Login Scenario: User logs in successfully Given I am on login page - When I enter valid credentials + When I enter a valid email + And I enter the correct password Then I should see the homepage - Scenario: User logs in unsuccessfully + Scenario: User with email does not exist Given I am on login page - When I enter invalid credentials - Then I should see an error message + When I enter a email that does not exist on database + Then I should see an error message that user does not exist + + Scenario: User password is wrong + Given I am on login page + When I enter a valid email + And I enter the wrong password + Then I should see an error message that the password is wrong + + Scenario: User logged in is admin + Given I am an admin user + When I log in successfully + Then I should see the gerenciamento tab on the side menu From 530bdb08587df1de497113c3544e3be835087dc6 Mon Sep 17 00:00:00 2001 From: Kitsai Date: Thu, 13 Nov 2025 16:36:08 -0300 Subject: [PATCH 004/151] user password registration --- CAMAAR/features/user_password_setup.feature | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 CAMAAR/features/user_password_setup.feature diff --git a/CAMAAR/features/user_password_setup.feature b/CAMAAR/features/user_password_setup.feature new file mode 100644 index 0000000000..0169219ed5 --- /dev/null +++ b/CAMAAR/features/user_password_setup.feature @@ -0,0 +1,16 @@ +Feature: User Password Setup + + Scenario: User sets password successfully + Given I received a registration email + When I click on the registration link + And I enter a valid password + And I confirm the password correctly + Then I should see a success message + And I should be able to log in with my credentials + + Scenario: Passwords do not match + Given I received a registration email + When I click on the registration link + And I enter a valid password + And I enter a different password in the confirmation field + Then I should see an error message that passwords do not match From 8a0ea782f9ebb0f7a18cc42bb5cbff153da5f708 Mon Sep 17 00:00:00 2001 From: Kitsai Date: Thu, 13 Nov 2025 16:39:08 -0300 Subject: [PATCH 005/151] user password regstration do not register again --- CAMAAR/features/user_password_setup.feature | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CAMAAR/features/user_password_setup.feature b/CAMAAR/features/user_password_setup.feature index 0169219ed5..86a35c05da 100644 --- a/CAMAAR/features/user_password_setup.feature +++ b/CAMAAR/features/user_password_setup.feature @@ -14,3 +14,8 @@ Feature: User Password Setup And I enter a valid password And I enter a different password in the confirmation field Then I should see an error message that passwords do not match + + Scenario: Password already created + Given I already have a password + When I click on the registration link + Then I should see an error message that password already registered From 3946750c5934059726c3e3fac1fc9fdb2180736f Mon Sep 17 00:00:00 2001 From: Kitsai Date: Thu, 13 Nov 2025 16:45:29 -0300 Subject: [PATCH 006/151] create form bdd --- CAMAAR/features/create_form.feature | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 CAMAAR/features/create_form.feature diff --git a/CAMAAR/features/create_form.feature b/CAMAAR/features/create_form.feature new file mode 100644 index 0000000000..52dc33fc9d --- /dev/null +++ b/CAMAAR/features/create_form.feature @@ -0,0 +1,27 @@ +Feature: Create Form + + Scenario: Form created successfully + Given I am an admin + And I am on the gerenciamento page + When I click the send form button + And I select a template + And I select at least one class + Then I should see a success message + And the new form should be assigned to the selected classes + And the new form should be available on the gerenciamento - results page + + Scenario: Tried to create form without selecting template + Given I am an admin + And I am on the gerenciamento page + When I click the send form button + And I do not select a template + And I select at least one class + Then I should see an error message that I need to select a template + + Scenario: Tried to create form without selecting classes + Given I am an admin + And I am on the gerenciamento page + When I click the send form button + And I select a template + And I do not select any class + Then I should see an error message that I need to select at least one class From e9b736948ee97e92434a3bc9a80566fd39f6f59f Mon Sep 17 00:00:00 2001 From: gabie762 Date: Sun, 16 Nov 2025 00:59:57 -0300 Subject: [PATCH 007/151] =?UTF-8?q?Cria=C3=A7=C3=A3o=20de=20BDD=20de=20vis?= =?UTF-8?q?ualiza=C3=A7=C3=A3o=20de=20forms=20para=20dmin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CAMAAR/features/visualize_forms.feature | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 CAMAAR/features/visualize_forms.feature diff --git a/CAMAAR/features/visualize_forms.feature b/CAMAAR/features/visualize_forms.feature new file mode 100644 index 0000000000..10280c588d --- /dev/null +++ b/CAMAAR/features/visualize_forms.feature @@ -0,0 +1,15 @@ +Feature: View Forms Admin + + Scenario: View created forms sucessfully + Given I am an admin + And I am in "gerenciamento" page + When I click in "Resultados" button + Then I should be redirected to "gerenciamento/resultados" + And I should view the page with created Forms + + Scenario: Tried to view forms without created forms + Given I am an admin + And I am in "gerenciamento" page + And there are not created forms + When I click on "Resultados" button + Then the button should be deactivated From 32dc34b01d9357828220eac8c0e361ab31c42b85 Mon Sep 17 00:00:00 2001 From: gabie762 Date: Sun, 16 Nov 2025 01:00:01 -0300 Subject: [PATCH 008/151] Update visualize_forms.feature --- CAMAAR/features/visualize_forms.feature | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CAMAAR/features/visualize_forms.feature b/CAMAAR/features/visualize_forms.feature index 10280c588d..a1e00df16a 100644 --- a/CAMAAR/features/visualize_forms.feature +++ b/CAMAAR/features/visualize_forms.feature @@ -12,4 +12,4 @@ Feature: View Forms Admin And I am in "gerenciamento" page And there are not created forms When I click on "Resultados" button - Then the button should be deactivated + Then the button should not be clickable From cd74d05bb1485551ba57c7190bde720b52b23bdf Mon Sep 17 00:00:00 2001 From: gabie762 Date: Sun, 16 Nov 2025 01:23:54 -0300 Subject: [PATCH 009/151] =?UTF-8?q?Adiciona=20BDD=20de=20visualiza=C3=A7?= =?UTF-8?q?=C3=A3o=20de=20templates=20para=20admin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CAMAAR/features/visualize_templates.feature | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 CAMAAR/features/visualize_templates.feature diff --git a/CAMAAR/features/visualize_templates.feature b/CAMAAR/features/visualize_templates.feature new file mode 100644 index 0000000000..582bed7fba --- /dev/null +++ b/CAMAAR/features/visualize_templates.feature @@ -0,0 +1,16 @@ +Feature: Visualize Templates + + Scenario: Visualize Templates successfully + Given I am an admin + And I am on the "gerenciamento" page + When I click on "Editar templates" button + And there are created templates + Then I should be redirected to "gerenciamento/templates" + And I should see the templates list + + Scenario: Visualize Templates unsuccessfully + Given I am an admin + And I am on the "gerenciamento" page + When I click on "Editar templates" button + And there are no created templates + Then the "Editar templates" button should be disabled From 198778b1ffc7fd03c2605d8398e134caf797cf86 Mon Sep 17 00:00:00 2001 From: gabie762 Date: Sun, 16 Nov 2025 01:24:23 -0300 Subject: [PATCH 010/151] =?UTF-8?q?Adiciona=20BDD=20de=20edi=C3=A7=C3=A3o?= =?UTF-8?q?=20e=20deletar=20templates=20para=20admin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CAMAAR/features/edit_delete_templates.feature | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 CAMAAR/features/edit_delete_templates.feature diff --git a/CAMAAR/features/edit_delete_templates.feature b/CAMAAR/features/edit_delete_templates.feature new file mode 100644 index 0000000000..3bc26c41b8 --- /dev/null +++ b/CAMAAR/features/edit_delete_templates.feature @@ -0,0 +1,33 @@ +Feature: Edit Templates successfully + + Scenario: Edit Templates successfully + Given I am an admin + And I am on the "gerenciamento/templates" page + When I click on "Editar templates" button + And there are created templates + Then the edit modal should be displayed + And I should be able to edit the Templates + + Scenario: Edit Templates unsuccessfully + Given I am an admin + And I am on the "gerenciamento/templates" page + When I click on "Editar templates" button + And there are no created templates + Then the "Editar templates" button should be disabled + And I should not be able to be able to edit the Templates + + Scenario: Delete Templates successfully + Given I am an admin + And I am on the "gerenciamento/templates" page + When I click on "Deletar templates" button + And there are created templates + Then the template should be deleted + And I should see the atualized templates list + + Scenario: Delete Templates unsuccessfully + Given I am an admin + And I am on the "gerenciamento/templates" page + When I click on "Deletar templates" button + And there are no created templates + Then the "Editar templates" button should be disabled + And I should not be able to be able to delete the Templates From f73c61990c93954a8fc8feea1c6be8d738832f67 Mon Sep 17 00:00:00 2001 From: gabie762 Date: Sun, 16 Nov 2025 01:56:53 -0300 Subject: [PATCH 011/151] =?UTF-8?q?Adiciona=20BDD=20de=20requisito=20b?= =?UTF-8?q?=C3=B4nus:=20cria=C3=A7=C3=A3o=20de=20formul=C3=A1rio=20para=20?= =?UTF-8?q?docentes=20ou=20dicentes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../features/students_teachers_forms.feature | 80 +++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 CAMAAR/features/students_teachers_forms.feature diff --git a/CAMAAR/features/students_teachers_forms.feature b/CAMAAR/features/students_teachers_forms.feature new file mode 100644 index 0000000000..50730484ff --- /dev/null +++ b/CAMAAR/features/students_teachers_forms.feature @@ -0,0 +1,80 @@ +Feature: Create Forms for Students or Teachers + + Scenario: Successfully create form for teachers + Given I am an admin + And I am on the gerenciamento page + And there are available templates + And there are classes with teachers + When I click the send form button + And I select a template + And I select "docentes" as the target group + And I select at least one class + Then I should see a success message + And the new form should be assigned to teachers of the selected classes + And the form should be available for teachers to fill out + And the new form should be available on the gerenciamento - resultados page + + Scenario: Successfully create form for students + Given I am an admin + And I am on the gerenciamento page + And there are available templates + And there are classes with students + When I click the send form button + And I select a template + And I select "dicentes" as the target group + And I select at least one class + Then I should see a success message + And the new form should be assigned to students of the selected classes + And the form should be available for students to fill out + And the new form should be available on the gerenciamento - results page + + Scenario: Tried to create form without selecting target group + Given I am an admin + And I am on the gerenciamento page + When I click the send form button + And I select a template + And I select at least one class + And I do not select a target group + Then I should see an error message that I need to select either docentes or dicentes + + Scenario: Tried to create form for teachers without selecting template + Given I am an admin + And I am on the gerenciamento page + When I click the send form button + And I select "docentes" as the target group + And I select at least one class + And I do not select a template + Then I should see an error message that I need to select a template + + Scenario: Tried to create form for students without selecting classes + Given I am an admin + And I am on the gerenciamento page + When I click the send form button + And I select a template + And I select "dicentes" as the target group + And I do not select any class + Then I should see an error message that I need to select at least one class + + Scenario: Create form for teachers when no teachers exist in selected class + Given I am an admin + And I am on the gerenciamento page + And there are available templates + And there is a class with no teachers + When I click the send form button + And I select a template + And I select "docentes" as the target group + And I select the class with no teachers + Then I should see a warning message that the selected class has no teachers + And the form should not be created + + Scenario: Create form for students when no students exist in selected class + Given I am an admin + And I am on the gerenciamento page + And there are available templates + And there is a class with no students + When I click the send form button + And I select a template + And I select "dicentes" as the target group + And I select the class with no students + Then I should see a warning message that the selected class has no students + And the form should not be created From 601590ac9e7e79b8a3795daded4d7a9ef736d7f0 Mon Sep 17 00:00:00 2001 From: Marcolino5 <102527399+Marcolino5@users.noreply.github.com> Date: Sun, 16 Nov 2025 12:54:35 -0300 Subject: [PATCH 012/151] create generate report feature bdd --- CAMAAR/features/generate_report.feature | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 CAMAAR/features/generate_report.feature diff --git a/CAMAAR/features/generate_report.feature b/CAMAAR/features/generate_report.feature new file mode 100644 index 0000000000..f360638a83 --- /dev/null +++ b/CAMAAR/features/generate_report.feature @@ -0,0 +1,8 @@ +Feature: Generate Report as Admin + + Scenario: Admin downloads response reports + Given I am admin + And I am on "gerenciamento/resultados" page + And there are created forms + When I click on a form + Then a CSV file containing the form responses should be downloaded \ No newline at end of file From 5b56d4eb84479cd99712ed50c3689a9e61795c97 Mon Sep 17 00:00:00 2001 From: Marcolino5 <102527399+Marcolino5@users.noreply.github.com> Date: Sun, 16 Nov 2025 13:31:13 -0300 Subject: [PATCH 013/151] create import data feature bdd --- CAMAAR/features/import_data.feature | 32 +++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 CAMAAR/features/import_data.feature diff --git a/CAMAAR/features/import_data.feature b/CAMAAR/features/import_data.feature new file mode 100644 index 0000000000..0619e4aeea --- /dev/null +++ b/CAMAAR/features/import_data.feature @@ -0,0 +1,32 @@ +Feature: Import Data from SIGAA as Admin + + Scenario: Admin imports data + Given I am admin + And I am on "gerenciamento" page + And there is importable data + When I click on "Importar dados" button + Then the importable data should be imported + + Scenario: Admin tries to import data when none is available + Given I am admin + And I am on "gerenciamento" page + And there is no importable data + When I click on "Importar dados" button + Then I should see a message indicating that no data is available to import + And no data should be imported + + Scenario: Import fails due to invalid data format + Given I am admin + And I am on the "gerenciamento" page + And there is importable data with an invalid format + When I click on the "Importar dados" button + Then I should see an error message indicating the data format is invalid + And the import should be aborted + + Scenario: Import partially succeeds but some data is invalid + Given I am admin + And I am on the "gerenciamento" page + And there is importable data with some invalid data + When I click on the "Importar dados" button + Then the valid data should be imported + And I should see a warning indicating that some data could not be imported \ No newline at end of file From 12260ca32237875fffb261b07e7f338f38e5480f Mon Sep 17 00:00:00 2001 From: Marcolino5 <102527399+Marcolino5@users.noreply.github.com> Date: Sun, 16 Nov 2025 13:46:36 -0300 Subject: [PATCH 014/151] added sad paths to generate report --- CAMAAR/features/generate_report.feature | 27 ++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/CAMAAR/features/generate_report.feature b/CAMAAR/features/generate_report.feature index f360638a83..7c50d9d12f 100644 --- a/CAMAAR/features/generate_report.feature +++ b/CAMAAR/features/generate_report.feature @@ -5,4 +5,29 @@ Feature: Generate Report as Admin And I am on "gerenciamento/resultados" page And there are created forms When I click on a form - Then a CSV file containing the form responses should be downloaded \ No newline at end of file + Then a CSV file containing the form responses should be downloaded + + Scenario: Admin tries to generate a report when no forms exist + Given I am admin + When I am on the "gerenciamento/resultados" page + And there are no created forms + Then I should see a message indicating that no forms are available + And no CSV file should be downloaded + + Scenario: Report generation fails due to an internal error + Given I am admin + And I am on the "gerenciamento/resultados" page + And there are created forms + When I click on a form + And an internal error occurs during report generation + Then I should see an error message indicating that the report could not be generated + And no CSV file should be downloaded + + Scenario: Admin clicks on a form that becomes unavailable + Given I am admin + And I am on the "gerenciamento/resultados" page + And there are created forms + When I click on a form + And the form is no longer available + Then I should see a message indicating that the form cannot be accessed + And no CSV file should be downloaded \ No newline at end of file From 965935652ee70d30d4c01100967380d1dbf1e4a3 Mon Sep 17 00:00:00 2001 From: Marcolino5 <102527399+Marcolino5@users.noreply.github.com> Date: Sun, 16 Nov 2025 14:01:29 -0300 Subject: [PATCH 015/151] create register user feature bdd --- CAMAAR/features/register_user.feature | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 CAMAAR/features/register_user.feature diff --git a/CAMAAR/features/register_user.feature b/CAMAAR/features/register_user.feature new file mode 100644 index 0000000000..8eee09d162 --- /dev/null +++ b/CAMAAR/features/register_user.feature @@ -0,0 +1,27 @@ +Feature: Register User as Admin + + Scenario: Registration email is sent by importing new user data + Given I am admin + And I am on the "gerenciamento" page + And there is an importable user + And I have clicked on the "Importar dados" button + When the data is imported + Then a registration email should be sent to the user's email + + Scenario: Email is not sent when user data import fails + Given I am admin + And I am on the "gerenciamento" page + And there is an importable user + And I have clicked on the "Importar dados" button + When the data import fails + Then no registration email should be sent + And I should see an error message indicating the import failed + + Scenario: Email is not sent when imported user has an invalid email + Given I am admin + And I am on the "gerenciamento" page + And there is an importable user with an invalid email address + And I have clicked on the "Importar dados" button + When the data is imported + Then no registration email should be sent + And I should see an error message indicating the email is invalid \ No newline at end of file From 0847b541f961e183f4d84363eb3cf5ae6d55cfaa Mon Sep 17 00:00:00 2001 From: Marcolino5 <102527399+Marcolino5@users.noreply.github.com> Date: Sun, 16 Nov 2025 14:48:39 -0300 Subject: [PATCH 016/151] create answer/submit form feature bdd --- CAMAAR/features/submit_form.feature | 35 +++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 CAMAAR/features/submit_form.feature diff --git a/CAMAAR/features/submit_form.feature b/CAMAAR/features/submit_form.feature new file mode 100644 index 0000000000..fe2ea4c78d --- /dev/null +++ b/CAMAAR/features/submit_form.feature @@ -0,0 +1,35 @@ +Feature: Submit Form as User + + Scenario: User submits form successfully + Given I am on the "Avaliações" page + And there are available forms + When I click on an available form + Then I should be redirected to the selected form page + + When I answer all questions in the form + And I click on the send button + Then the form should be submitted successfully + And I should be redirected back to the "Avaliações" page + And the submitted form should no longer be available + + Scenario: No forms are available for the user + Given I am on the "Avaliações" page + And there are no available forms + Then I should see a message indicating that no forms are available + And no form items should be displayed + + Scenario: User submits the form without answering all questions + Given I am viewing an available form + And I have not answered all mandatory questions + When I click on the send button + Then the form should not be submitted + And I should see a validation error message + And I should remain on the form page + + Scenario: User tries to submit a form that is no longer available + Given I am viewing an available form + And the form has become unavailable + When I click on the send button + Then I should see a message that the form is no longer available + And I should be redirected to the "Avaliações" page + And the form should not be submitted \ No newline at end of file From 70e1c73754f58ee26c673cedb98c890b3be29faa Mon Sep 17 00:00:00 2001 From: Vanterson Date: Sun, 16 Nov 2025 19:52:25 -0300 Subject: [PATCH 017/151] =?UTF-8?q?Cria=20BDD=20para=20historias=20de=20us?= =?UTF-8?q?u=C3=A1rios?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...nage_classes_for_admin_departament.feature | 21 +++++++++++++++++ .../features/reset_password_via_email.feature | 23 +++++++++++++++++++ .../update_database_from_sigaa.feature | 18 +++++++++++++++ .../view_unanswered_forms_teacher.feature | 18 +++++++++++++++ 4 files changed, 80 insertions(+) create mode 100644 CAMAAR/features/manage_classes_for_admin_departament.feature create mode 100644 CAMAAR/features/reset_password_via_email.feature create mode 100644 CAMAAR/features/update_database_from_sigaa.feature create mode 100644 CAMAAR/features/view_unanswered_forms_teacher.feature diff --git a/CAMAAR/features/manage_classes_for_admin_departament.feature b/CAMAAR/features/manage_classes_for_admin_departament.feature new file mode 100644 index 0000000000..9eeeda0a31 --- /dev/null +++ b/CAMAAR/features/manage_classes_for_admin_departament.feature @@ -0,0 +1,21 @@ +Feature: Manage classes for admin's department + + Scenario: Admin views and inspects classes from own department + Given I am admin + And I am on "gerenciamento/minhas-turmas" page + And there are classes for my department: "CIC0097 - BANCOS DE DADOS" and "CIC0202 - PROGRAMAÇÃO CONCORRENTE" + When I view the classes list + Then I should see "CIC0097 - BANCOS DE DADOS" + And I should see "CIC0202 - PROGRAMAÇÃO CONCORRENTE" + When I open the class "CIC0097 - BANCOS DE DADOS" + Then I should see a performance summary for "CIC0097" for the current semester + And I can export a CSV of the class performance + + Scenario: Admin attempts direct URL access to a class they do not own + Given I am admin + And I am on "gerenciamento/minhas-turmas" page + And there are classes for my department: "CIC0097 - BANCOS DE DADOS" and "CIC0202 - PROGRAMAÇÃO CONCORRENTE" + When I navigate directly to "/gerenciamento/minhas-turmas/CIC0105" + Then I should see an access denied message + And I should not see "CIC0105 - ENGENHARIA DE SOFTWARE" + And no CSV file should be downloadable \ No newline at end of file diff --git a/CAMAAR/features/reset_password_via_email.feature b/CAMAAR/features/reset_password_via_email.feature new file mode 100644 index 0000000000..58fa78eb2d --- /dev/null +++ b/CAMAAR/features/reset_password_via_email.feature @@ -0,0 +1,23 @@ +Feature: Reset password via email + + Scenario: User resets password using link received by email + Given I am user + And I am on "/redefinir-senha" page + And I have requested a password reset + And I have received an email with a reset link + When I follow the reset link + Then I should see the password reset form + When I fill the "New password" field with "newpass123" + And I fill the "Confirm password" field with "newpass123" + And I submit the reset password form + Then I should see a confirmation that my password has been changed + And I can sign in with email "user@example.org" and password "newpass123" + + Scenario: User follows an expired or invalid reset link + Given I am user + And I am on "/redefinir-senha" page + And I have requested a password reset + And the reset link is expired or invalid + When I follow the reset link + Then I should see an error message saying the reset link is invalid or has expired + And I should be offered the option to request a new password reset \ No newline at end of file diff --git a/CAMAAR/features/update_database_from_sigaa.feature b/CAMAAR/features/update_database_from_sigaa.feature new file mode 100644 index 0000000000..32ed5cfeac --- /dev/null +++ b/CAMAAR/features/update_database_from_sigaa.feature @@ -0,0 +1,18 @@ +Feature: Update database from SIGAA + + Scenario: Admin updates local database with current SIGAA data + Given I am admin + And I am on "/gerenciamento/atualizar-base" page + And the SIGAA credentials are valid + And SIGAA contains the latest data for departments, classes and users + When I click "Update from SIGAA" + Then I should see a confirmation "Database updated successfully" + And the system data should reflect the SIGAA records + + Scenario: Admin attempts update but SIGAA is unavailable or credentials are invalid + Given I am admin + And I am on "/gerenciamento/atualizar-base" page + And the SIGAA credentials are invalid or SIGAA is unreachable + When I click "Update from SIGAA" + Then I should see an error message "Could not update database from SIGAA" + And no changes should be applied to the system database \ No newline at end of file diff --git a/CAMAAR/features/view_unanswered_forms_teacher.feature b/CAMAAR/features/view_unanswered_forms_teacher.feature new file mode 100644 index 0000000000..165f50e6b2 --- /dev/null +++ b/CAMAAR/features/view_unanswered_forms_teacher.feature @@ -0,0 +1,18 @@ +Feature: View unanswered forms as teacher + + Scenario: teacher sees list of unanswered forms for their enrolled classes + Given I am teacher + And I am on "/meus-formularios" page + And I am enrolled in "CIC0097 - BANCOS DE DADOS" + And "CIC0097 - BANCOS DE DADOS" has an unanswered form "Pesquisa de meio de semestre" + When I view the list of forms + Then I should see "Pesquisa de meio de semestre" for "CIC0097 - BANCOS DE DADOS" + And I should see a link "Answer" for "Pesquisa de meio de semestre" + + Scenario: teacher attempts direct URL access to a form they do not have access to + Given I am teacher + And I am on "/meus-formularios" page + And I am enrolled in "CIC0097 - BANCOS DE DADOS" + When I navigate directly to "/formularios/CIC0105/12345" + Then I should see an access denied message + And I should not see the form titled "Final Survey" \ No newline at end of file From a0eeb0ba47d197d07691faf935512a38435454c8 Mon Sep 17 00:00:00 2001 From: Kitsai Date: Mon, 17 Nov 2025 14:40:28 -0300 Subject: [PATCH 018/151] read_me --- CAMAAR/INSTRUCTIONS.md | 8 ++++++++ CAMAAR/README.md | 24 ------------------------ CAMAAR/docs/BD_ES.drawio.svg | 4 ++++ README.md | 9 +++++++++ 4 files changed, 21 insertions(+), 24 deletions(-) create mode 100644 CAMAAR/INSTRUCTIONS.md delete mode 100644 CAMAAR/README.md create mode 100644 CAMAAR/docs/BD_ES.drawio.svg diff --git a/CAMAAR/INSTRUCTIONS.md b/CAMAAR/INSTRUCTIONS.md new file mode 100644 index 0000000000..35141db3f2 --- /dev/null +++ b/CAMAAR/INSTRUCTIONS.md @@ -0,0 +1,8 @@ +# Detalhes do sistema + +Este sistema utiliza ruby on rails na versão 3.4.7 do ruby. + +É recomendado que se utilize o rbenv para gerenciar as versões do ruby no linux + +O sistema de banco de dados utilizado é um sqlite para inicializá-lo +deve-se rodar as migrations. diff --git a/CAMAAR/README.md b/CAMAAR/README.md deleted file mode 100644 index 7db80e4ca1..0000000000 --- a/CAMAAR/README.md +++ /dev/null @@ -1,24 +0,0 @@ -# README - -This README would normally document whatever steps are necessary to get the -application up and running. - -Things you may want to cover: - -* Ruby version - -* System dependencies - -* Configuration - -* Database creation - -* Database initialization - -* How to run the test suite - -* Services (job queues, cache servers, search engines, etc.) - -* Deployment instructions - -* ... diff --git a/CAMAAR/docs/BD_ES.drawio.svg b/CAMAAR/docs/BD_ES.drawio.svg new file mode 100644 index 0000000000..552a733e3f --- /dev/null +++ b/CAMAAR/docs/BD_ES.drawio.svg @@ -0,0 +1,4 @@ + + + +
Usuario
Matricula
Email
Senha
Pedido Formulario
Recebe
Admin
Pode ser
Formulario
Diz respeito
Cria
Resposta
Id
Responde
Dados(CSV)
Template
Gerencia
Conjunto Perguntas
Possui
Possui
Dados(Json)
Id
Id
Id
Ao criar Formulario cria pedidos para discentes e docente. Depois de respondido Pedido é apagado e Resposta é criada.
Ao tentar atualizar template verificar se exite formulário com esse conjunto de perguntas. Se houver cria novo conj. se não houver sobrescrebe o existente
Dados em csv para reduzir complexidade e simplificar exportação
\ No newline at end of file diff --git a/README.md b/README.md index 9d7fe1bf53..28048f858f 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,11 @@ # CAMAAR + Sistema para avaliação de atividades acadêmicas remotas do CIC + +O sistema tem como objetivo melhorar a experiência para responder formularios à respeito do semestre sendo possível avaliar +as turmar. Os formulários são criados por um usuário admin que geralmente é o coordernador do curso e podem ser respondidos +por Alunos e Professores. + +O sistema garante anonimização das respostas e possui integração com os sistemas do SIGAA. + +Para mais detalhes sobre como rodar o projeto acesso os [detalhes do sistema](/CAMAAR/README.md) From cc16e347995bda5611e8356a7ca8048771f19ebc Mon Sep 17 00:00:00 2001 From: Kitsai Date: Mon, 17 Nov 2025 17:40:26 -0300 Subject: [PATCH 019/151] read me finished --- CAMAAR/features/edit_delete_templates.feature | 56 +++++++++---------- README.md | 31 ++++++++-- 2 files changed, 54 insertions(+), 33 deletions(-) diff --git a/CAMAAR/features/edit_delete_templates.feature b/CAMAAR/features/edit_delete_templates.feature index 3bc26c41b8..3bbe660451 100644 --- a/CAMAAR/features/edit_delete_templates.feature +++ b/CAMAAR/features/edit_delete_templates.feature @@ -1,33 +1,33 @@ Feature: Edit Templates successfully - Scenario: Edit Templates successfully - Given I am an admin - And I am on the "gerenciamento/templates" page - When I click on "Editar templates" button - And there are created templates - Then the edit modal should be displayed - And I should be able to edit the Templates + Scenario: Edit Templates successfully + Given I am an admin + And I am on the "gerenciamento/templates" page + When I click on "Editar templates" button + And there are created templates + Then the edit modal should be displayed + And I should be able to edit the Templates - Scenario: Edit Templates unsuccessfully - Given I am an admin - And I am on the "gerenciamento/templates" page - When I click on "Editar templates" button - And there are no created templates - Then the "Editar templates" button should be disabled - And I should not be able to be able to edit the Templates + Scenario: Edit Templates unsuccessfully + Given I am an admin + And I am on the "gerenciamento/templates" page + When I click on "Editar templates" button + And there are no created templates + Then the "Editar templates" button should be disabled + And I should not be able to be able to edit the Templates - Scenario: Delete Templates successfully - Given I am an admin - And I am on the "gerenciamento/templates" page - When I click on "Deletar templates" button - And there are created templates - Then the template should be deleted - And I should see the atualized templates list + Scenario: Delete Templates successfully + Given I am an admin + And I am on the "gerenciamento/templates" page + When I click on "Deletar templates" button + And there are created templates + Then the template should be deleted + And I should see the atualized templates list - Scenario: Delete Templates unsuccessfully - Given I am an admin - And I am on the "gerenciamento/templates" page - When I click on "Deletar templates" button - And there are no created templates - Then the "Editar templates" button should be disabled - And I should not be able to be able to delete the Templates + Scenario: Delete Templates unsuccessfully + Given I am an admin + And I am on the "gerenciamento/templates" page + When I click on "Deletar templates" button + And there are no created templates + Then the "Editar templates" button should be disabled + And I should not be able to be able to delete the Templates diff --git a/README.md b/README.md index 28048f858f..7b1fee2b85 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,31 @@ Sistema para avaliação de atividades acadêmicas remotas do CIC -O sistema tem como objetivo melhorar a experiência para responder formularios à respeito do semestre sendo possível avaliar -as turmar. Os formulários são criados por um usuário admin que geralmente é o coordernador do curso e podem ser respondidos -por Alunos e Professores. +O sistema tem como objetivo melhorar a experiência de responder formularios +à respeito do semestre sendo possível avaliar as turmar. +Os formulários são criados por um usuário admin que, +geralmente, é o coordernador do curso e podem ser respondidos por Alunos e Professores. -O sistema garante anonimização das respostas e possui integração com os sistemas do SIGAA. +O sistema garante anonimização das respostas +possuindo integração com os sistemas do SIGAA. -Para mais detalhes sobre como rodar o projeto acesso os [detalhes do sistema](/CAMAAR/README.md) +Para mais detalhes sobre como rodar o projeto acesso os [detalhes do sistema](/CAMAAR/INSTRUCTIONS.md) + +## Entrega 1 + +A primeira entrega do projeto conta com a criacao e especificacoes +de requisitos do sistema. + +Inicialmente focando em melhor definir os requisitos escrevendo cenarios BDD +que podem ser encontrados na pasta *features* do projeto. + +Alem disso foi criado a modelagem inicial das entidades do sistema usando +um modelo entidade relacionamento que pode ser convertido +para o modelo do banco de dados no momento de implementacao. + +## Integrantes do grupo + +- Lucas Rocha dos Santos - 211055325 +- Gabriela de Oliveira Henriques - 211055254 +- Marcos Alexandre da Silva Neres - 211055334 +- Vanterson Venancio Rodrigues - 170051579 From f66f1d85c9da65be1a35cef8f21cbe2936cf4de9 Mon Sep 17 00:00:00 2001 From: Kitsai Date: Mon, 24 Nov 2025 13:42:46 -0300 Subject: [PATCH 020/151] user model creation --- CAMAAR/Gemfile | 2 +- CAMAAR/app/models/user.rb | 5 +++++ CAMAAR/db/migrate/20251124163014_create_users.rb | 14 ++++++++++++++ CAMAAR/test/fixtures/users.yml | 11 +++++++++++ CAMAAR/test/models/user_test.rb | 7 +++++++ 5 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 CAMAAR/app/models/user.rb create mode 100644 CAMAAR/db/migrate/20251124163014_create_users.rb create mode 100644 CAMAAR/test/fixtures/users.yml create mode 100644 CAMAAR/test/models/user_test.rb diff --git a/CAMAAR/Gemfile b/CAMAAR/Gemfile index 159f0fc6b1..43e2cdde69 100644 --- a/CAMAAR/Gemfile +++ b/CAMAAR/Gemfile @@ -18,7 +18,7 @@ gem "stimulus-rails" gem "jbuilder" # Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword] -# gem "bcrypt", "~> 3.1.7" +gem "bcrypt", "~> 3.1.7" # Windows does not include zoneinfo files, so bundle the tzinfo-data gem gem "tzinfo-data", platforms: %i[ windows jruby ] diff --git a/CAMAAR/app/models/user.rb b/CAMAAR/app/models/user.rb new file mode 100644 index 0000000000..527cea1801 --- /dev/null +++ b/CAMAAR/app/models/user.rb @@ -0,0 +1,5 @@ +class User < ApplicationRecord + has_secure_password + + validates :email, presence: true, uniqueness: true +end diff --git a/CAMAAR/db/migrate/20251124163014_create_users.rb b/CAMAAR/db/migrate/20251124163014_create_users.rb new file mode 100644 index 0000000000..6f66e49b89 --- /dev/null +++ b/CAMAAR/db/migrate/20251124163014_create_users.rb @@ -0,0 +1,14 @@ +class CreateUsers < ActiveRecord::Migration[8.1] + def change + create_table :users, id: false do |t| + t.integer :id, null: false, primary_key: true + t.string :email, null: false + t.string :name + t.string :password_digest + + t.timestamps + end + + add_index :users, :email, unique: true + end +end diff --git a/CAMAAR/test/fixtures/users.yml b/CAMAAR/test/fixtures/users.yml new file mode 100644 index 0000000000..afa6528180 --- /dev/null +++ b/CAMAAR/test/fixtures/users.yml @@ -0,0 +1,11 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + email: MyString + name: MyString + password_digest: MyString + +two: + email: MyString + name: MyString + password_digest: MyString diff --git a/CAMAAR/test/models/user_test.rb b/CAMAAR/test/models/user_test.rb new file mode 100644 index 0000000000..5c07f49007 --- /dev/null +++ b/CAMAAR/test/models/user_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class UserTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end From 64c6fafa1b1d0cfa00a03531c94e83bfd29cf3be Mon Sep 17 00:00:00 2001 From: Kitsai Date: Mon, 24 Nov 2025 14:11:36 -0300 Subject: [PATCH 021/151] Courses model --- CAMAAR/Gemfile.lock | 2 ++ CAMAAR/app/models/course.rb | 7 +++++++ CAMAAR/app/models/enrollment.rb | 4 ++++ CAMAAR/app/models/user.rb | 7 +++++++ CAMAAR/db/migrate/20251124165539_create_courses.rb | 13 +++++++++++++ .../db/migrate/20251124170201_create_enrollments.rb | 12 ++++++++++++ CAMAAR/test/fixtures/courses.yml | 13 +++++++++++++ CAMAAR/test/fixtures/enrollments.yml | 9 +++++++++ CAMAAR/test/models/course_test.rb | 7 +++++++ CAMAAR/test/models/enrollment_test.rb | 7 +++++++ 10 files changed, 81 insertions(+) create mode 100644 CAMAAR/app/models/course.rb create mode 100644 CAMAAR/app/models/enrollment.rb create mode 100644 CAMAAR/db/migrate/20251124165539_create_courses.rb create mode 100644 CAMAAR/db/migrate/20251124170201_create_enrollments.rb create mode 100644 CAMAAR/test/fixtures/courses.yml create mode 100644 CAMAAR/test/fixtures/enrollments.yml create mode 100644 CAMAAR/test/models/course_test.rb create mode 100644 CAMAAR/test/models/enrollment_test.rb diff --git a/CAMAAR/Gemfile.lock b/CAMAAR/Gemfile.lock index a8f5701751..3cc069fe19 100644 --- a/CAMAAR/Gemfile.lock +++ b/CAMAAR/Gemfile.lock @@ -79,6 +79,7 @@ GEM public_suffix (>= 2.0.2, < 7.0) ast (2.4.3) base64 (0.3.0) + bcrypt (3.1.20) bcrypt_pbkdf (1.1.1) bigdecimal (3.3.1) bindex (0.8.1) @@ -420,6 +421,7 @@ PLATFORMS x86_64-linux-musl DEPENDENCIES + bcrypt (~> 3.1.7) bootsnap brakeman bundler-audit diff --git a/CAMAAR/app/models/course.rb b/CAMAAR/app/models/course.rb new file mode 100644 index 0000000000..847ad6b760 --- /dev/null +++ b/CAMAAR/app/models/course.rb @@ -0,0 +1,7 @@ +class Course < ApplicationRecord + belongs_to :teacher, class_name: "User", foreign_key: "teacher_id" + + # Student relationship + has_many :enrollments + has_many :students, through: :enrollments, source: :student +end diff --git a/CAMAAR/app/models/enrollment.rb b/CAMAAR/app/models/enrollment.rb new file mode 100644 index 0000000000..882793c1fb --- /dev/null +++ b/CAMAAR/app/models/enrollment.rb @@ -0,0 +1,4 @@ +class Enrollment < ApplicationRecord + belongs_to :student, class_name: 'User', foreign_key: 'student_id' + belongs_to :course +end diff --git a/CAMAAR/app/models/user.rb b/CAMAAR/app/models/user.rb index 527cea1801..74f8ee0ebc 100644 --- a/CAMAAR/app/models/user.rb +++ b/CAMAAR/app/models/user.rb @@ -2,4 +2,11 @@ class User < ApplicationRecord has_secure_password validates :email, presence: true, uniqueness: true + + # Teacher relationship + has_many :taught_courses, class_name: "Course", foreign_key: "teacher_id" + + # Student relationship + has_many :enrollments, foreign_key: "student_id" + has_many :courses, through: :enrollments end diff --git a/CAMAAR/db/migrate/20251124165539_create_courses.rb b/CAMAAR/db/migrate/20251124165539_create_courses.rb new file mode 100644 index 0000000000..75056bf875 --- /dev/null +++ b/CAMAAR/db/migrate/20251124165539_create_courses.rb @@ -0,0 +1,13 @@ +class CreateCourses < ActiveRecord::Migration[8.1] + def change + create_table :courses do |t| + t.string :code + t.string :classCode + t.string :semester + t.string :name + t.references :teacher, null: false, foreign_key: { to_table: :users } + + t.timestamps + end + end +end diff --git a/CAMAAR/db/migrate/20251124170201_create_enrollments.rb b/CAMAAR/db/migrate/20251124170201_create_enrollments.rb new file mode 100644 index 0000000000..a076925c28 --- /dev/null +++ b/CAMAAR/db/migrate/20251124170201_create_enrollments.rb @@ -0,0 +1,12 @@ +class CreateEnrollments < ActiveRecord::Migration[8.1] + def change + create_table :enrollments, id: false do |t| + t.references :student, null: false, foreign_key: { to_table: :users } + t.references :course, null: false, foreign_key: { to_table: :courses } + + t.timestamps + end + + add_index :enrollments, [ :student_id, :course_id ], unique: true + end +end diff --git a/CAMAAR/test/fixtures/courses.yml b/CAMAAR/test/fixtures/courses.yml new file mode 100644 index 0000000000..5026019641 --- /dev/null +++ b/CAMAAR/test/fixtures/courses.yml @@ -0,0 +1,13 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + code: MyString + classCode: MyString + semester: MyString + name: MyString + +two: + code: MyString + classCode: MyString + semester: MyString + name: MyString diff --git a/CAMAAR/test/fixtures/enrollments.yml b/CAMAAR/test/fixtures/enrollments.yml new file mode 100644 index 0000000000..e1d8108d59 --- /dev/null +++ b/CAMAAR/test/fixtures/enrollments.yml @@ -0,0 +1,9 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + student_id: 1 + course: one + +two: + student_id: 1 + course: two diff --git a/CAMAAR/test/models/course_test.rb b/CAMAAR/test/models/course_test.rb new file mode 100644 index 0000000000..724dabe724 --- /dev/null +++ b/CAMAAR/test/models/course_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class CourseTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/CAMAAR/test/models/enrollment_test.rb b/CAMAAR/test/models/enrollment_test.rb new file mode 100644 index 0000000000..99b373dde0 --- /dev/null +++ b/CAMAAR/test/models/enrollment_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class EnrollmentTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end From 0da9c4ef9d28124a27295b393cb00c9ab081f7e4 Mon Sep 17 00:00:00 2001 From: Kitsai Date: Mon, 24 Nov 2025 14:18:23 -0300 Subject: [PATCH 022/151] admin specialization --- CAMAAR/app/models/admin.rb | 4 ++++ CAMAAR/app/models/user.rb | 7 +++++++ CAMAAR/db/migrate/20251124171210_create_admins.rb | 12 ++++++++++++ CAMAAR/test/fixtures/admins.yml | 11 +++++++++++ CAMAAR/test/models/admin_test.rb | 7 +++++++ 5 files changed, 41 insertions(+) create mode 100644 CAMAAR/app/models/admin.rb create mode 100644 CAMAAR/db/migrate/20251124171210_create_admins.rb create mode 100644 CAMAAR/test/fixtures/admins.yml create mode 100644 CAMAAR/test/models/admin_test.rb diff --git a/CAMAAR/app/models/admin.rb b/CAMAAR/app/models/admin.rb new file mode 100644 index 0000000000..1f7f28e407 --- /dev/null +++ b/CAMAAR/app/models/admin.rb @@ -0,0 +1,4 @@ +class Admin < ApplicationRecord + self.primary_key = 'user_id' + belongs_to :user +end diff --git a/CAMAAR/app/models/user.rb b/CAMAAR/app/models/user.rb index 74f8ee0ebc..0374b33e91 100644 --- a/CAMAAR/app/models/user.rb +++ b/CAMAAR/app/models/user.rb @@ -9,4 +9,11 @@ class User < ApplicationRecord # Student relationship has_many :enrollments, foreign_key: "student_id" has_many :courses, through: :enrollments + + # Admin relationship (optional) + has_one :admin + + def admin? + admin.present? + end end diff --git a/CAMAAR/db/migrate/20251124171210_create_admins.rb b/CAMAAR/db/migrate/20251124171210_create_admins.rb new file mode 100644 index 0000000000..9f06228a4b --- /dev/null +++ b/CAMAAR/db/migrate/20251124171210_create_admins.rb @@ -0,0 +1,12 @@ +class CreateAdmins < ActiveRecord::Migration[8.1] + def change + create_table :admins, id: false do |t| + t.integer :user_id, null: false, primary_key: true + + t.timestamps + end + + add_foreign_key :admins, :users, column: :user_id + add_index :admins, :user_id, unique: true + end +end diff --git a/CAMAAR/test/fixtures/admins.yml b/CAMAAR/test/fixtures/admins.yml new file mode 100644 index 0000000000..d7a3329241 --- /dev/null +++ b/CAMAAR/test/fixtures/admins.yml @@ -0,0 +1,11 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +# This model initially had no columns defined. If you add columns to the +# model remove the "{}" from the fixture names and add the columns immediately +# below each fixture, per the syntax in the comments below +# +one: {} +# column: value +# +two: {} +# column: value diff --git a/CAMAAR/test/models/admin_test.rb b/CAMAAR/test/models/admin_test.rb new file mode 100644 index 0000000000..33dd1944a1 --- /dev/null +++ b/CAMAAR/test/models/admin_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class AdminTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end From 5c9d230a0102dcecdf885443282bdba3f6c760f0 Mon Sep 17 00:00:00 2001 From: Kitsai Date: Mon, 24 Nov 2025 14:26:12 -0300 Subject: [PATCH 023/151] question set model --- CAMAAR/app/models/question_set.rb | 2 ++ CAMAAR/db/migrate/20251124172205_create_question_sets.rb | 9 +++++++++ CAMAAR/test/fixtures/question_sets.yml | 7 +++++++ CAMAAR/test/models/question_set_test.rb | 7 +++++++ 4 files changed, 25 insertions(+) create mode 100644 CAMAAR/app/models/question_set.rb create mode 100644 CAMAAR/db/migrate/20251124172205_create_question_sets.rb create mode 100644 CAMAAR/test/fixtures/question_sets.yml create mode 100644 CAMAAR/test/models/question_set_test.rb diff --git a/CAMAAR/app/models/question_set.rb b/CAMAAR/app/models/question_set.rb new file mode 100644 index 0000000000..9e91ff210b --- /dev/null +++ b/CAMAAR/app/models/question_set.rb @@ -0,0 +1,2 @@ +class QuestionSet < ApplicationRecord +end diff --git a/CAMAAR/db/migrate/20251124172205_create_question_sets.rb b/CAMAAR/db/migrate/20251124172205_create_question_sets.rb new file mode 100644 index 0000000000..daba02e2ec --- /dev/null +++ b/CAMAAR/db/migrate/20251124172205_create_question_sets.rb @@ -0,0 +1,9 @@ +class CreateQuestionSets < ActiveRecord::Migration[8.1] + def change + create_table :question_sets do |t| + t.json :data + + t.timestamps + end + end +end diff --git a/CAMAAR/test/fixtures/question_sets.yml b/CAMAAR/test/fixtures/question_sets.yml new file mode 100644 index 0000000000..e9eef6faf0 --- /dev/null +++ b/CAMAAR/test/fixtures/question_sets.yml @@ -0,0 +1,7 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + data: + +two: + data: diff --git a/CAMAAR/test/models/question_set_test.rb b/CAMAAR/test/models/question_set_test.rb new file mode 100644 index 0000000000..3109d181aa --- /dev/null +++ b/CAMAAR/test/models/question_set_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class QuestionSetTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end From 6788285d6714ee02a94ba1ccac73081c318598f0 Mon Sep 17 00:00:00 2001 From: Kitsai Date: Mon, 24 Nov 2025 14:36:38 -0300 Subject: [PATCH 024/151] template model --- CAMAAR/app/models/admin.rb | 5 ++++- CAMAAR/app/models/question_set.rb | 1 + CAMAAR/app/models/template.rb | 4 ++++ CAMAAR/db/migrate/20251124172648_create_templates.rb | 10 ++++++++++ CAMAAR/test/fixtures/templates.yml | 11 +++++++++++ CAMAAR/test/models/template_test.rb | 7 +++++++ 6 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 CAMAAR/app/models/template.rb create mode 100644 CAMAAR/db/migrate/20251124172648_create_templates.rb create mode 100644 CAMAAR/test/fixtures/templates.yml create mode 100644 CAMAAR/test/models/template_test.rb diff --git a/CAMAAR/app/models/admin.rb b/CAMAAR/app/models/admin.rb index 1f7f28e407..e451177943 100644 --- a/CAMAAR/app/models/admin.rb +++ b/CAMAAR/app/models/admin.rb @@ -1,4 +1,7 @@ class Admin < ApplicationRecord - self.primary_key = 'user_id' + self.primary_key = "user_id" + belongs_to :user + + has_many :templates end diff --git a/CAMAAR/app/models/question_set.rb b/CAMAAR/app/models/question_set.rb index 9e91ff210b..2c633d69f1 100644 --- a/CAMAAR/app/models/question_set.rb +++ b/CAMAAR/app/models/question_set.rb @@ -1,2 +1,3 @@ class QuestionSet < ApplicationRecord + has_many :templates end diff --git a/CAMAAR/app/models/template.rb b/CAMAAR/app/models/template.rb new file mode 100644 index 0000000000..a4dd9cc323 --- /dev/null +++ b/CAMAAR/app/models/template.rb @@ -0,0 +1,4 @@ +class Template < ApplicationRecord + belongs_to :admin + belongs_to :question_set +end diff --git a/CAMAAR/db/migrate/20251124172648_create_templates.rb b/CAMAAR/db/migrate/20251124172648_create_templates.rb new file mode 100644 index 0000000000..c18a4788f7 --- /dev/null +++ b/CAMAAR/db/migrate/20251124172648_create_templates.rb @@ -0,0 +1,10 @@ +class CreateTemplates < ActiveRecord::Migration[8.1] + def change + create_table :templates do |t| + t.references :question_set, null: false, foreign_key: { to_table: :question_sets } + t.references :admin, null: false, foreign_key: { to_table: :admins } + + t.timestamps + end + end +end diff --git a/CAMAAR/test/fixtures/templates.yml b/CAMAAR/test/fixtures/templates.yml new file mode 100644 index 0000000000..d7a3329241 --- /dev/null +++ b/CAMAAR/test/fixtures/templates.yml @@ -0,0 +1,11 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +# This model initially had no columns defined. If you add columns to the +# model remove the "{}" from the fixture names and add the columns immediately +# below each fixture, per the syntax in the comments below +# +one: {} +# column: value +# +two: {} +# column: value diff --git a/CAMAAR/test/models/template_test.rb b/CAMAAR/test/models/template_test.rb new file mode 100644 index 0000000000..5bc4995c31 --- /dev/null +++ b/CAMAAR/test/models/template_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class TemplateTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end From ffb8c6cf94bb92e0fcdb9b27cfb21e672f23512e Mon Sep 17 00:00:00 2001 From: Kitsai Date: Mon, 24 Nov 2025 14:44:36 -0300 Subject: [PATCH 025/151] form model --- CAMAAR/app/models/admin.rb | 1 + CAMAAR/app/models/course.rb | 1 + CAMAAR/app/models/form.rb | 5 +++++ CAMAAR/app/models/question_set.rb | 1 + CAMAAR/db/migrate/20251124173700_create_forms.rb | 11 +++++++++++ CAMAAR/test/fixtures/forms.yml | 11 +++++++++++ CAMAAR/test/models/form_test.rb | 7 +++++++ 7 files changed, 37 insertions(+) create mode 100644 CAMAAR/app/models/form.rb create mode 100644 CAMAAR/db/migrate/20251124173700_create_forms.rb create mode 100644 CAMAAR/test/fixtures/forms.yml create mode 100644 CAMAAR/test/models/form_test.rb diff --git a/CAMAAR/app/models/admin.rb b/CAMAAR/app/models/admin.rb index e451177943..1bf5a6f6b7 100644 --- a/CAMAAR/app/models/admin.rb +++ b/CAMAAR/app/models/admin.rb @@ -4,4 +4,5 @@ class Admin < ApplicationRecord belongs_to :user has_many :templates + has_many :forms end diff --git a/CAMAAR/app/models/course.rb b/CAMAAR/app/models/course.rb index 847ad6b760..e15c18f011 100644 --- a/CAMAAR/app/models/course.rb +++ b/CAMAAR/app/models/course.rb @@ -4,4 +4,5 @@ class Course < ApplicationRecord # Student relationship has_many :enrollments has_many :students, through: :enrollments, source: :student + has_many :forms end diff --git a/CAMAAR/app/models/form.rb b/CAMAAR/app/models/form.rb new file mode 100644 index 0000000000..78d01dccd5 --- /dev/null +++ b/CAMAAR/app/models/form.rb @@ -0,0 +1,5 @@ +class Form < ApplicationRecord + belongs_to :admin + belongs_to :course + belongs_to :question_set +end diff --git a/CAMAAR/app/models/question_set.rb b/CAMAAR/app/models/question_set.rb index 2c633d69f1..082dd683d4 100644 --- a/CAMAAR/app/models/question_set.rb +++ b/CAMAAR/app/models/question_set.rb @@ -1,3 +1,4 @@ class QuestionSet < ApplicationRecord has_many :templates + has_many :forms end diff --git a/CAMAAR/db/migrate/20251124173700_create_forms.rb b/CAMAAR/db/migrate/20251124173700_create_forms.rb new file mode 100644 index 0000000000..313b2bfcd1 --- /dev/null +++ b/CAMAAR/db/migrate/20251124173700_create_forms.rb @@ -0,0 +1,11 @@ +class CreateForms < ActiveRecord::Migration[8.1] + def change + create_table :forms do |t| + t.references :admin, null: false, foreign_key: { to_table: :admins } + t.references :course, null: false, foreign_key: { to_table: :courses } + t.references :question_set, null: false, foreign_key: { to_table: :question_sets } + + t.timestamps + end + end +end diff --git a/CAMAAR/test/fixtures/forms.yml b/CAMAAR/test/fixtures/forms.yml new file mode 100644 index 0000000000..d7a3329241 --- /dev/null +++ b/CAMAAR/test/fixtures/forms.yml @@ -0,0 +1,11 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +# This model initially had no columns defined. If you add columns to the +# model remove the "{}" from the fixture names and add the columns immediately +# below each fixture, per the syntax in the comments below +# +one: {} +# column: value +# +two: {} +# column: value diff --git a/CAMAAR/test/models/form_test.rb b/CAMAAR/test/models/form_test.rb new file mode 100644 index 0000000000..21193f79ee --- /dev/null +++ b/CAMAAR/test/models/form_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class FormTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end From 4e0609667e9c27e8d2b5c3a3cc26d68aa7312132 Mon Sep 17 00:00:00 2001 From: Kitsai Date: Mon, 24 Nov 2025 14:53:10 -0300 Subject: [PATCH 026/151] form request model --- CAMAAR/app/models/enrollment.rb | 2 +- CAMAAR/app/models/form.rb | 3 +++ CAMAAR/app/models/form_request.rb | 4 ++++ CAMAAR/app/models/user.rb | 3 +++ .../migrate/20251124174505_create_form_requests.rb | 12 ++++++++++++ CAMAAR/test/fixtures/form_requests.yml | 11 +++++++++++ CAMAAR/test/models/form_request_test.rb | 7 +++++++ 7 files changed, 41 insertions(+), 1 deletion(-) create mode 100644 CAMAAR/app/models/form_request.rb create mode 100644 CAMAAR/db/migrate/20251124174505_create_form_requests.rb create mode 100644 CAMAAR/test/fixtures/form_requests.yml create mode 100644 CAMAAR/test/models/form_request_test.rb diff --git a/CAMAAR/app/models/enrollment.rb b/CAMAAR/app/models/enrollment.rb index 882793c1fb..5c492ae2b9 100644 --- a/CAMAAR/app/models/enrollment.rb +++ b/CAMAAR/app/models/enrollment.rb @@ -1,4 +1,4 @@ class Enrollment < ApplicationRecord - belongs_to :student, class_name: 'User', foreign_key: 'student_id' + belongs_to :student, class_name: "User", foreign_key: "student_id" belongs_to :course end diff --git a/CAMAAR/app/models/form.rb b/CAMAAR/app/models/form.rb index 78d01dccd5..b86c4f1818 100644 --- a/CAMAAR/app/models/form.rb +++ b/CAMAAR/app/models/form.rb @@ -2,4 +2,7 @@ class Form < ApplicationRecord belongs_to :admin belongs_to :course belongs_to :question_set + + has_many :form_requests + has_many :users, through: :form_requests end diff --git a/CAMAAR/app/models/form_request.rb b/CAMAAR/app/models/form_request.rb new file mode 100644 index 0000000000..65c72b5cfc --- /dev/null +++ b/CAMAAR/app/models/form_request.rb @@ -0,0 +1,4 @@ +class FormRequest < ApplicationRecord + belongs_to :user + belongs_to :form +end diff --git a/CAMAAR/app/models/user.rb b/CAMAAR/app/models/user.rb index 0374b33e91..664022d880 100644 --- a/CAMAAR/app/models/user.rb +++ b/CAMAAR/app/models/user.rb @@ -16,4 +16,7 @@ class User < ApplicationRecord def admin? admin.present? end + + has_many :form_requests + has_many :forms, through: :form_requests end diff --git a/CAMAAR/db/migrate/20251124174505_create_form_requests.rb b/CAMAAR/db/migrate/20251124174505_create_form_requests.rb new file mode 100644 index 0000000000..18a68ed485 --- /dev/null +++ b/CAMAAR/db/migrate/20251124174505_create_form_requests.rb @@ -0,0 +1,12 @@ +class CreateFormRequests < ActiveRecord::Migration[8.1] + def change + create_table :form_requests, id: false do |t| + t.references :user, null: false, foreign_key: { to_table: :users } + t.references :form, null: false, foreign_key: { to_table: :forms } + + t.timestamps + end + + add_index :form_requests, [ :user_id, :form_id ], unique: true + end +end diff --git a/CAMAAR/test/fixtures/form_requests.yml b/CAMAAR/test/fixtures/form_requests.yml new file mode 100644 index 0000000000..d7a3329241 --- /dev/null +++ b/CAMAAR/test/fixtures/form_requests.yml @@ -0,0 +1,11 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +# This model initially had no columns defined. If you add columns to the +# model remove the "{}" from the fixture names and add the columns immediately +# below each fixture, per the syntax in the comments below +# +one: {} +# column: value +# +two: {} +# column: value diff --git a/CAMAAR/test/models/form_request_test.rb b/CAMAAR/test/models/form_request_test.rb new file mode 100644 index 0000000000..14d7decba3 --- /dev/null +++ b/CAMAAR/test/models/form_request_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class FormRequestTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end From e9905182348e861ae6830f73664b6188698e0379 Mon Sep 17 00:00:00 2001 From: Kitsai Date: Mon, 24 Nov 2025 14:58:32 -0300 Subject: [PATCH 027/151] answer model --- CAMAAR/app/models/answer.rb | 3 +++ CAMAAR/app/models/form.rb | 2 ++ CAMAAR/db/migrate/20251124175404_create_answers.rb | 10 ++++++++++ CAMAAR/test/fixtures/answers.yml | 7 +++++++ CAMAAR/test/models/answer_test.rb | 7 +++++++ 5 files changed, 29 insertions(+) create mode 100644 CAMAAR/app/models/answer.rb create mode 100644 CAMAAR/db/migrate/20251124175404_create_answers.rb create mode 100644 CAMAAR/test/fixtures/answers.yml create mode 100644 CAMAAR/test/models/answer_test.rb diff --git a/CAMAAR/app/models/answer.rb b/CAMAAR/app/models/answer.rb new file mode 100644 index 0000000000..b4440ef20c --- /dev/null +++ b/CAMAAR/app/models/answer.rb @@ -0,0 +1,3 @@ +class Answer < ApplicationRecord + belongs_to :form +end diff --git a/CAMAAR/app/models/form.rb b/CAMAAR/app/models/form.rb index b86c4f1818..da744d338e 100644 --- a/CAMAAR/app/models/form.rb +++ b/CAMAAR/app/models/form.rb @@ -5,4 +5,6 @@ class Form < ApplicationRecord has_many :form_requests has_many :users, through: :form_requests + + has_many :answers end diff --git a/CAMAAR/db/migrate/20251124175404_create_answers.rb b/CAMAAR/db/migrate/20251124175404_create_answers.rb new file mode 100644 index 0000000000..fac371e727 --- /dev/null +++ b/CAMAAR/db/migrate/20251124175404_create_answers.rb @@ -0,0 +1,10 @@ +class CreateAnswers < ActiveRecord::Migration[8.1] + def change + create_table :answers do |t| + t.text :data + t.references :form, null: false, foreign_key: { to_table: :forms } + + t.timestamps + end + end +end diff --git a/CAMAAR/test/fixtures/answers.yml b/CAMAAR/test/fixtures/answers.yml new file mode 100644 index 0000000000..009e211585 --- /dev/null +++ b/CAMAAR/test/fixtures/answers.yml @@ -0,0 +1,7 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + data: MyText + +two: + data: MyText diff --git a/CAMAAR/test/models/answer_test.rb b/CAMAAR/test/models/answer_test.rb new file mode 100644 index 0000000000..1c9d1658e6 --- /dev/null +++ b/CAMAAR/test/models/answer_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class AnswerTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end From 9bddd8014e0b8c17f792d39e4cc12a3b6709031d Mon Sep 17 00:00:00 2001 From: Kitsai Date: Mon, 24 Nov 2025 15:27:33 -0300 Subject: [PATCH 028/151] question set validations --- CAMAAR/app/models/question_set.rb | 28 ++++++++++++++- ...0251124180652_add_question_set_triggers.rb | 36 +++++++++++++++++++ 2 files changed, 63 insertions(+), 1 deletion(-) create mode 100644 CAMAAR/db/migrate/20251124180652_add_question_set_triggers.rb diff --git a/CAMAAR/app/models/question_set.rb b/CAMAAR/app/models/question_set.rb index 082dd683d4..24e88a9b0e 100644 --- a/CAMAAR/app/models/question_set.rb +++ b/CAMAAR/app/models/question_set.rb @@ -1,4 +1,30 @@ class QuestionSet < ApplicationRecord - has_many :templates + has_one :template has_many :forms + + before_update :copy_on_write_if_used_by_forms + + private + + def copy_on_write_if_used_by_forms + # If any forms are using this question_set, create a copy instead of updating + return unless forms.exists? + + # Create a new question_set with current attributes + new_qs = self.class.new(attributes.except("id", "created_at", "updated_at")) + + # Apply the pending changes to the new record + changes.each do |attr, (old_val, new_val)| + new_qs.send("#{attr}=", new_val) + end + + # Save the new question_set + new_qs.save! + + # Update the template to point to the new question_set + template&.update(question_set_id: new_qs.id) + + # Prevent the original update (keep old version for forms) + throw :abort + end end diff --git a/CAMAAR/db/migrate/20251124180652_add_question_set_triggers.rb b/CAMAAR/db/migrate/20251124180652_add_question_set_triggers.rb new file mode 100644 index 0000000000..251d756f52 --- /dev/null +++ b/CAMAAR/db/migrate/20251124180652_add_question_set_triggers.rb @@ -0,0 +1,36 @@ +class AddQuestionSetTriggers < ActiveRecord::Migration[8.1] + def up + # Trigger 1: Cleanup orphaned question_sets after template deletion + execute <<-SQL + CREATE TRIGGER cleanup_question_set_after_template_delete + AFTER DELETE ON templates + FOR EACH ROW + WHEN ( + NOT EXISTS (SELECT 1 FROM templates WHERE question_set_id = OLD.question_set_id) + AND NOT EXISTS (SELECT 1 FROM forms WHERE question_set_id = OLD.question_set_id) + ) + BEGIN + DELETE FROM question_sets WHERE id = OLD.question_set_id; + END; + SQL + + # Trigger 2: Cleanup orphaned question_sets after form deletion + execute <<-SQL + CREATE TRIGGER cleanup_question_set_after_form_delete + AFTER DELETE ON forms + FOR EACH ROW + WHEN ( + NOT EXISTS (SELECT 1 FROM templates WHERE question_set_id = OLD.question_set_id) + AND NOT EXISTS (SELECT 1 FROM forms WHERE question_set_id = OLD.question_set_id) + ) + BEGIN + DELETE FROM question_sets WHERE id = OLD.question_set_id; + END; + SQL + end + + def down + execute "DROP TRIGGER IF EXISTS cleanup_question_set_after_template_delete" + execute "DROP TRIGGER IF EXISTS cleanup_question_set_after_form_delete" + end +end From 436b13c5ad8695ecf181fa017d490716663491c7 Mon Sep 17 00:00:00 2001 From: Kitsai Date: Wed, 26 Nov 2025 21:12:12 -0300 Subject: [PATCH 029/151] feat/User login --- CAMAAR/.rspec | 1 + CAMAAR/CLAUDE.md | 135 +++++++++++++++++ CAMAAR/Gemfile | 4 + CAMAAR/Gemfile.lock | 24 ++++ .../app/controllers/application_controller.rb | 3 + CAMAAR/app/controllers/sessions_controller.rb | 25 ++++ CAMAAR/app/helpers/sessions_helper.rb | 27 ++++ CAMAAR/app/views/layouts/application.html.erb | 12 ++ CAMAAR/app/views/sessions/new.html.erb | 19 +++ CAMAAR/config/routes.rb | 7 +- .../20251127000753_fix_admin_foreign_keys.rb | 11 ++ CAMAAR/db/schema.rb | 106 ++++++++++++++ .../features/step_definitions/login_steps.rb | 73 ++++++++++ CAMAAR/spec/factories/admins.rb | 5 + CAMAAR/spec/factories/users.rb | 14 ++ CAMAAR/spec/rails_helper.rb | 73 ++++++++++ CAMAAR/spec/requests/sessions_spec.rb | 136 ++++++++++++++++++ CAMAAR/spec/spec_helper.rb | 94 ++++++++++++ CAMAAR/test/fixtures/users.yml | 12 +- 19 files changed, 774 insertions(+), 7 deletions(-) create mode 100644 CAMAAR/.rspec create mode 100644 CAMAAR/CLAUDE.md create mode 100644 CAMAAR/app/controllers/sessions_controller.rb create mode 100644 CAMAAR/app/helpers/sessions_helper.rb create mode 100644 CAMAAR/app/views/sessions/new.html.erb create mode 100644 CAMAAR/db/migrate/20251127000753_fix_admin_foreign_keys.rb create mode 100644 CAMAAR/db/schema.rb create mode 100644 CAMAAR/features/step_definitions/login_steps.rb create mode 100644 CAMAAR/spec/factories/admins.rb create mode 100644 CAMAAR/spec/factories/users.rb create mode 100644 CAMAAR/spec/rails_helper.rb create mode 100644 CAMAAR/spec/requests/sessions_spec.rb create mode 100644 CAMAAR/spec/spec_helper.rb diff --git a/CAMAAR/.rspec b/CAMAAR/.rspec new file mode 100644 index 0000000000..c99d2e7396 --- /dev/null +++ b/CAMAAR/.rspec @@ -0,0 +1 @@ +--require spec_helper diff --git a/CAMAAR/CLAUDE.md b/CAMAAR/CLAUDE.md new file mode 100644 index 0000000000..531f4f705e --- /dev/null +++ b/CAMAAR/CLAUDE.md @@ -0,0 +1,135 @@ +# CLAUDE.md + +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. + +## Project Overview + +CAMAAR is a Rails 8.1 application for managing forms, templates, and educational assessments. The system allows admins to create form templates and distribute them to courses/classes, with students receiving and responding to forms. + +## Development Commands + +### Setup +```bash +bin/setup # Initial setup (install dependencies, create DB, run migrations) +bin/rails db:migrate # Run database migrations +bin/rails db:seed # Seed database (if seed file exists) +``` + +### Running the Application +```bash +bin/dev # Start development server (Puma + asset pipeline) +bin/rails server # Start Rails server only +bin/rails console # Open Rails console for interactive debugging +``` + +### Testing +```bash +bin/rails test # Run all minitest unit tests +bin/rails test test/models/user_test.rb # Run specific test file +bin/rails test test/models/user_test.rb:10 # Run specific test at line 10 +bin/rails test:system # Run system tests (Capybara/Selenium) +bin/cucumber # Run all Cucumber BDD tests +bin/cucumber features/create_form.feature # Run specific feature file +bin/cucumber features/create_form.feature:3 # Run specific scenario at line 3 +``` + +### Code Quality +```bash +bin/rubocop # Run RuboCop linter +bin/rubocop -a # Auto-correct RuboCop offenses +bin/brakeman # Security vulnerability scan +bin/bundler-audit # Check gems for known vulnerabilities +bin/importmap audit # Check JavaScript dependencies for vulnerabilities +``` + +## Architecture + +### Data Model Hierarchy + +The application has three main domain areas: + +**1. User & Course Management** +- `User`: Base entity with authentication (bcrypt), can be teacher, student, or admin + - Teachers: `has_many :taught_courses` + - Students: Many-to-many with courses through `Enrollment` + - Admins: One-to-one with `Admin` model (uses `user_id` as primary key) + +**2. Template System** +- `QuestionSet`: Stores questions as JSON data (`data` field) +- `Template`: Links admin + question_set for reusable form templates +- **Copy-on-write pattern**: When a `QuestionSet` used by forms is updated, it creates a new copy and updates the template reference, preserving the original for existing forms (see `QuestionSet#copy_on_write_if_used_by_forms`) + +**3. Form Distribution & Responses** +- `Form`: Admin creates form for a course using a question_set + - Has many `FormRequest` (one per student in course) + - Has many `Answer` records (response data stored as text in `data` field) +- `FormRequest`: Join table between user and form, tracks which students received forms + +### Key Relationships + +``` +Admin (user_id PK) +├── has_many :templates +└── has_many :forms + +Template +├── belongs_to :admin +└── belongs_to :question_set + +QuestionSet +├── has_one :template +└── has_many :forms + +Form +├── belongs_to :admin +├── belongs_to :course +├── belongs_to :question_set +├── has_many :form_requests +├── has_many :users (through form_requests) +└── has_many :answers + +Course +├── belongs_to :teacher (User) +├── has_many :enrollments +├── has_many :students (through enrollments) +└── has_many :forms +``` + +### Important Patterns + +**Copy-on-Write for QuestionSets**: +- When updating a `QuestionSet` that's used by existing forms, the system automatically creates a new copy with the changes and updates the template to point to the new version +- Original `QuestionSet` remains unchanged for forms already using it +- Implemented via `before_update` callback in `app/models/question_set.rb:5-29` + +**Multi-Database Setup (Production)**: +- Primary DB: Application data +- Cache DB: Solid Cache (Rails.cache backend) +- Queue DB: Solid Queue (Active Job backend) +- Cable DB: Solid Cable (Action Cable backend) + +## Technology Stack + +- **Ruby**: 3.4.7 (managed with rbenv recommended) +- **Rails**: 8.1.1 +- **Database**: SQLite3 (development/test), multi-database setup in production +- **Authentication**: bcrypt (has_secure_password) +- **Frontend**: Hotwire (Turbo + Stimulus), Importmap for JS +- **Testing**: Minitest (unit), Capybara/Selenium (system), Cucumber (BDD) +- **Deployment**: Docker + Kamal + +## Testing Strategy + +The project uses both Minitest and Cucumber: +- **Minitest**: Model validations, unit logic (in `test/` directory) +- **Cucumber**: BDD acceptance tests with Gherkin features (in `features/` directory) +- **System Tests**: Capybara browser tests for full user flows + +When writing tests, match the existing pattern for the component being tested. + +## Database Notes + +- Run `bin/rails db:migrate` after pulling schema changes +- Schema is in `db/schema.rb` (do not edit directly) +- SQLite databases stored in `storage/` directory +- QuestionSets and Answers store complex data as JSON/text in `data` fields diff --git a/CAMAAR/Gemfile b/CAMAAR/Gemfile index 43e2cdde69..242cd0fc0c 100644 --- a/CAMAAR/Gemfile +++ b/CAMAAR/Gemfile @@ -60,6 +60,10 @@ group :development do end group :test do + # RSpec testing framework + gem "rspec-rails", "~> 7.1" + gem "factory_bot_rails" + # Use system testing [https://guides.rubyonrails.org/testing.html#system-testing] gem "capybara" gem "selenium-webdriver" diff --git a/CAMAAR/Gemfile.lock b/CAMAAR/Gemfile.lock index 3cc069fe19..186d5950fa 100644 --- a/CAMAAR/Gemfile.lock +++ b/CAMAAR/Gemfile.lock @@ -148,6 +148,11 @@ GEM erubi (1.13.1) et-orbi (1.4.0) tzinfo + factory_bot (6.5.6) + activesupport (>= 6.1.0) + factory_bot_rails (6.5.1) + factory_bot (~> 6.5) + railties (>= 6.1.0) ffi (1.17.2-aarch64-linux-gnu) ffi (1.17.2-aarch64-linux-musl) ffi (1.17.2-arm-linux-gnu) @@ -305,6 +310,23 @@ GEM reline (0.6.3) io-console (~> 0.5) rexml (3.4.4) + rspec-core (3.13.6) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.5) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.7) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-rails (7.1.1) + actionpack (>= 7.0) + activesupport (>= 7.0) + railties (>= 7.0) + rspec-core (~> 3.13) + rspec-expectations (~> 3.13) + rspec-mocks (~> 3.13) + rspec-support (~> 3.13) + rspec-support (3.13.6) rubocop (1.81.7) json (~> 2.3) language_server-protocol (~> 3.17.0.2) @@ -429,6 +451,7 @@ DEPENDENCIES cucumber-rails database_cleaner-active_record debug + factory_bot_rails image_processing (~> 1.2) importmap-rails jbuilder @@ -436,6 +459,7 @@ DEPENDENCIES propshaft puma (>= 5.0) rails (~> 8.1.1) + rspec-rails (~> 7.1) rubocop-rails-omakase selenium-webdriver solid_cable diff --git a/CAMAAR/app/controllers/application_controller.rb b/CAMAAR/app/controllers/application_controller.rb index c3537563da..5683dc882b 100644 --- a/CAMAAR/app/controllers/application_controller.rb +++ b/CAMAAR/app/controllers/application_controller.rb @@ -4,4 +4,7 @@ class ApplicationController < ActionController::Base # Changes to the importmap will invalidate the etag for HTML responses stale_when_importmap_changes + + # Include session helpers for authentication + include SessionsHelper end diff --git a/CAMAAR/app/controllers/sessions_controller.rb b/CAMAAR/app/controllers/sessions_controller.rb new file mode 100644 index 0000000000..a0c70e1690 --- /dev/null +++ b/CAMAAR/app/controllers/sessions_controller.rb @@ -0,0 +1,25 @@ +class SessionsController < ApplicationController + def new + # Renders the login form + end + + def create + user = User.find_by(email: params[:email]) + + if user && user.authenticate(params[:password]) + # Login successful + session[:user_id] = user.id + redirect_to root_path, notice: "Successfully logged in" + else + # Login failed + flash.now[:alert] = "Invalid email or password" + render :new, status: :unprocessable_entity + end + end + + def destroy + # Logout + session[:user_id] = nil + redirect_to root_path, notice: "Successfully logged out" + end +end diff --git a/CAMAAR/app/helpers/sessions_helper.rb b/CAMAAR/app/helpers/sessions_helper.rb new file mode 100644 index 0000000000..a4d133b51d --- /dev/null +++ b/CAMAAR/app/helpers/sessions_helper.rb @@ -0,0 +1,27 @@ +module SessionsHelper + # Returns the current logged-in user (if any) + def current_user + @current_user ||= User.find_by(id: session[:user_id]) if session[:user_id] + end + + # Returns true if the user is logged in, false otherwise + def logged_in? + !current_user.nil? + end + + # Returns true if the current user is an admin + def admin? + logged_in? && current_user.admin? + end + + # Log in the given user + def log_in(user) + session[:user_id] = user.id + end + + # Log out the current user + def log_out + session.delete(:user_id) + @current_user = nil + end +end diff --git a/CAMAAR/app/views/layouts/application.html.erb b/CAMAAR/app/views/layouts/application.html.erb index 9e51e3817f..0c281b8218 100644 --- a/CAMAAR/app/views/layouts/application.html.erb +++ b/CAMAAR/app/views/layouts/application.html.erb @@ -24,6 +24,18 @@ + <% if flash[:notice] %> +
+ <%= flash[:notice] %> +
+ <% end %> + + <% if flash[:alert] %> +
+ <%= flash[:alert] %> +
+ <% end %> + <%= yield %> diff --git a/CAMAAR/app/views/sessions/new.html.erb b/CAMAAR/app/views/sessions/new.html.erb new file mode 100644 index 0000000000..8a5480f734 --- /dev/null +++ b/CAMAAR/app/views/sessions/new.html.erb @@ -0,0 +1,19 @@ +
+

Login

+ + <%= form_with url: login_path, method: :post, local: true do |f| %> +
+ <%= f.label :email, "Email" %> + <%= f.email_field :email, class: "form-control", placeholder: "Enter your email", required: true %> +
+ +
+ <%= f.label :password, "Password" %> + <%= f.password_field :password, class: "form-control", placeholder: "Enter your password", required: true %> +
+ +
+ <%= f.submit "Log in", class: "btn btn-primary" %> +
+ <% end %> +
diff --git a/CAMAAR/config/routes.rb b/CAMAAR/config/routes.rb index 48254e88ed..cc50e99e2a 100644 --- a/CAMAAR/config/routes.rb +++ b/CAMAAR/config/routes.rb @@ -9,6 +9,11 @@ # get "manifest" => "rails/pwa#manifest", as: :pwa_manifest # get "service-worker" => "rails/pwa#service_worker", as: :pwa_service_worker + # Authentication routes + get "login", to: "sessions#new", as: :login + post "login", to: "sessions#create" + delete "logout", to: "sessions#destroy", as: :logout + # Defines the root path route ("/") - # root "posts#index" + root "sessions#new" end diff --git a/CAMAAR/db/migrate/20251127000753_fix_admin_foreign_keys.rb b/CAMAAR/db/migrate/20251127000753_fix_admin_foreign_keys.rb new file mode 100644 index 0000000000..f1e0db2e22 --- /dev/null +++ b/CAMAAR/db/migrate/20251127000753_fix_admin_foreign_keys.rb @@ -0,0 +1,11 @@ +class FixAdminForeignKeys < ActiveRecord::Migration[8.1] + def change + # Remove existing incorrect foreign keys + remove_foreign_key :templates, :admins + remove_foreign_key :forms, :admins + + # Add correct foreign keys that reference user_id (the actual primary key of admins) + add_foreign_key :templates, :admins, primary_key: :user_id + add_foreign_key :forms, :admins, primary_key: :user_id + end +end diff --git a/CAMAAR/db/schema.rb b/CAMAAR/db/schema.rb new file mode 100644 index 0000000000..7d89ceb476 --- /dev/null +++ b/CAMAAR/db/schema.rb @@ -0,0 +1,106 @@ +# This file is auto-generated from the current state of the database. Instead +# of editing this file, please use the migrations feature of Active Record to +# incrementally modify your database, and then regenerate this schema definition. +# +# This file is the source Rails uses to define your schema when running `bin/rails +# db:schema:load`. When creating a new database, `bin/rails db:schema:load` tends to +# be faster and is potentially less error prone than running all of your +# migrations from scratch. Old migrations may fail to apply correctly if those +# migrations use external dependencies or application code. +# +# It's strongly recommended that you check this file into your version control system. + +ActiveRecord::Schema[8.1].define(version: 2025_11_27_000753) do + create_table "admins", primary_key: "user_id", force: :cascade do |t| + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["user_id"], name: "index_admins_on_user_id", unique: true + end + + create_table "answers", force: :cascade do |t| + t.datetime "created_at", null: false + t.text "data" + t.integer "form_id", null: false + t.datetime "updated_at", null: false + t.index ["form_id"], name: "index_answers_on_form_id" + end + + create_table "courses", force: :cascade do |t| + t.string "classCode" + t.string "code" + t.datetime "created_at", null: false + t.string "name" + t.string "semester" + t.integer "teacher_id", null: false + t.datetime "updated_at", null: false + t.index ["teacher_id"], name: "index_courses_on_teacher_id" + end + + create_table "enrollments", id: false, force: :cascade do |t| + t.integer "course_id", null: false + t.datetime "created_at", null: false + t.integer "student_id", null: false + t.datetime "updated_at", null: false + t.index ["course_id"], name: "index_enrollments_on_course_id" + t.index ["student_id", "course_id"], name: "index_enrollments_on_student_id_and_course_id", unique: true + t.index ["student_id"], name: "index_enrollments_on_student_id" + end + + create_table "form_requests", id: false, force: :cascade do |t| + t.datetime "created_at", null: false + t.integer "form_id", null: false + t.datetime "updated_at", null: false + t.integer "user_id", null: false + t.index ["form_id"], name: "index_form_requests_on_form_id" + t.index ["user_id", "form_id"], name: "index_form_requests_on_user_id_and_form_id", unique: true + t.index ["user_id"], name: "index_form_requests_on_user_id" + end + + create_table "forms", force: :cascade do |t| + t.integer "admin_id", null: false + t.integer "course_id", null: false + t.datetime "created_at", null: false + t.integer "question_set_id", null: false + t.datetime "updated_at", null: false + t.index ["admin_id"], name: "index_forms_on_admin_id" + t.index ["course_id"], name: "index_forms_on_course_id" + t.index ["question_set_id"], name: "index_forms_on_question_set_id" + end + + create_table "question_sets", force: :cascade do |t| + t.datetime "created_at", null: false + t.json "data" + t.datetime "updated_at", null: false + end + + create_table "templates", force: :cascade do |t| + t.integer "admin_id", null: false + t.datetime "created_at", null: false + t.integer "question_set_id", null: false + t.datetime "updated_at", null: false + t.index ["admin_id"], name: "index_templates_on_admin_id" + t.index ["question_set_id"], name: "index_templates_on_question_set_id" + end + + create_table "users", force: :cascade do |t| + t.datetime "created_at", null: false + t.string "email", null: false + t.string "name" + t.string "password_digest" + t.datetime "updated_at", null: false + t.index ["email"], name: "index_users_on_email", unique: true + end + + add_foreign_key "admins", "users" + add_foreign_key "answers", "forms" + add_foreign_key "courses", "users", column: "teacher_id" + add_foreign_key "enrollments", "courses" + add_foreign_key "enrollments", "users", column: "student_id" + add_foreign_key "form_requests", "forms" + add_foreign_key "form_requests", "users" + add_foreign_key "forms", "admins", primary_key: "user_id" + add_foreign_key "forms", "courses" + add_foreign_key "forms", "question_sets" + add_foreign_key "templates", "admins", primary_key: "user_id" + add_foreign_key "templates", "question_sets" +end diff --git a/CAMAAR/features/step_definitions/login_steps.rb b/CAMAAR/features/step_definitions/login_steps.rb new file mode 100644 index 0000000000..fc782d7598 --- /dev/null +++ b/CAMAAR/features/step_definitions/login_steps.rb @@ -0,0 +1,73 @@ +# Step definitions for user login feature + +# Background steps +Given('I am on login page') do + visit login_path +end + +Given('I am an admin user') do + # Create a user with admin privileges + @user = User.create!( + email: 'admin@example.com', + password: 'password123', + password_confirmation: 'password123' + ) + @admin = Admin.create!(user: @user) +end + +# When steps - Actions +When('I enter a valid email') do + @user ||= User.create!( + email: 'user@example.com', + password: 'password123', + password_confirmation: 'password123' + ) + fill_in 'Email', with: @user.email +end + +When('I enter the correct password') do + fill_in 'Password', with: 'password123' + click_button 'Log in' +end + +When('I enter a email that does not exist on database') do + fill_in 'Email', with: 'nonexistent@example.com' + fill_in 'Password', with: 'password123' + click_button 'Log in' +end + +When('I enter the wrong password') do + @user ||= User.create!( + email: 'user@example.com', + password: 'password123', + password_confirmation: 'password123' + ) + fill_in 'Email', with: @user.email + fill_in 'Password', with: 'wrongpassword' + click_button 'Log in' +end + +When('I log in successfully') do + visit login_path + fill_in 'Email', with: @user.email + fill_in 'Password', with: 'password123' + click_button 'Log in' +end + +# Then steps - Assertions +Then('I should see the homepage') do + assert_equal root_path, current_path + assert page.has_content?('Successfully logged in') +end + +Then('I should see an error message that user does not exist') do + assert page.has_content?('Invalid email or password') +end + +Then('I should see an error message that the password is wrong') do + assert page.has_content?('Invalid email or password') +end + +Then('I should see the gerenciamento tab on the side menu') do + assert page.has_link?('Gerenciamento') +end diff --git a/CAMAAR/spec/factories/admins.rb b/CAMAAR/spec/factories/admins.rb new file mode 100644 index 0000000000..15f8023f1f --- /dev/null +++ b/CAMAAR/spec/factories/admins.rb @@ -0,0 +1,5 @@ +FactoryBot.define do + factory :admin do + association :user + end +end diff --git a/CAMAAR/spec/factories/users.rb b/CAMAAR/spec/factories/users.rb new file mode 100644 index 0000000000..2a7e7157f8 --- /dev/null +++ b/CAMAAR/spec/factories/users.rb @@ -0,0 +1,14 @@ +FactoryBot.define do + factory :user do + sequence(:email) { |n| "user#{n}@example.com" } + name { "Test User" } + password { "password123" } + password_confirmation { "password123" } + + trait :admin do + after(:create) do |user| + create(:admin, user: user) + end + end + end +end diff --git a/CAMAAR/spec/rails_helper.rb b/CAMAAR/spec/rails_helper.rb new file mode 100644 index 0000000000..339a89abd3 --- /dev/null +++ b/CAMAAR/spec/rails_helper.rb @@ -0,0 +1,73 @@ +# This file is copied to spec/ when you run 'rails generate rspec:install' +require 'spec_helper' +ENV['RAILS_ENV'] ||= 'test' +require_relative '../config/environment' +# Prevent database truncation if the environment is production +abort("The Rails environment is running in production mode!") if Rails.env.production? +# Uncomment the line below in case you have `--require rails_helper` in the `.rspec` file +# that will avoid rails generators crashing because migrations haven't been run yet +# return unless Rails.env.test? +require 'rspec/rails' +# Add additional requires below this line. Rails is not loaded until this point! + +# Requires supporting ruby files with custom matchers and macros, etc, in +# spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are +# run as spec files by default. This means that files in spec/support that end +# in _spec.rb will both be required and run as specs, causing the specs to be +# run twice. It is recommended that you do not name files matching this glob to +# end with _spec.rb. You can configure this pattern with the --pattern +# option on the command line or in ~/.rspec, .rspec or `.rspec-local`. +# +# The following line is provided for convenience purposes. It has the downside +# of increasing the boot-up time by auto-requiring all files in the support +# directory. Alternatively, in the individual `*_spec.rb` files, manually +# require only the support files necessary. +# +# Rails.root.glob('spec/support/**/*.rb').sort_by(&:to_s).each { |f| require f } + +# Checks for pending migrations and applies them before tests are run. +# If you are not using ActiveRecord, you can remove these lines. +begin + ActiveRecord::Migration.maintain_test_schema! +rescue ActiveRecord::PendingMigrationError => e + abort e.to_s.strip +end +RSpec.configure do |config| + # Include FactoryBot syntax methods + config.include FactoryBot::Syntax::Methods + + # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures + config.fixture_paths = [ + Rails.root.join('spec/fixtures') + ] + + # If you're not using ActiveRecord, or you'd prefer not to run each of your + # examples within a transaction, remove the following line or assign false + # instead of true. + config.use_transactional_fixtures = true + + # You can uncomment this line to turn off ActiveRecord support entirely. + # config.use_active_record = false + + # RSpec Rails uses metadata to mix in different behaviours to your tests, + # for example enabling you to call `get` and `post` in request specs. e.g.: + # + # RSpec.describe UsersController, type: :request do + # # ... + # end + # + # The different available types are documented in the features, such as in + # https://rspec.info/features/7-1/rspec-rails + # + # You can also this infer these behaviours automatically by location, e.g. + # /spec/models would pull in the same behaviour as `type: :model` but this + # behaviour is considered legacy and will be removed in a future version. + # + # To enable this behaviour uncomment the line below. + # config.infer_spec_type_from_file_location! + + # Filter lines from Rails gems in backtraces. + config.filter_rails_from_backtrace! + # arbitrary gems may also be filtered via: + # config.filter_gems_from_backtrace("gem name") +end diff --git a/CAMAAR/spec/requests/sessions_spec.rb b/CAMAAR/spec/requests/sessions_spec.rb new file mode 100644 index 0000000000..0c6b97fd92 --- /dev/null +++ b/CAMAAR/spec/requests/sessions_spec.rb @@ -0,0 +1,136 @@ +require 'rails_helper' + +RSpec.describe "Sessions", type: :request do + let(:user) { create(:user) } + + describe "GET /login" do + it "returns http success" do + get login_path + expect(response).to have_http_status(:success) + end + + it "renders the login form" do + get login_path + expect(response.body).to include('form') + end + end + + describe "POST /login" do + context "with valid credentials" do + it "logs in the user" do + post login_path, params: { + email: user.email, + password: "password123" + } + expect(session[:user_id]).to eq(user.id) + end + + it "redirects to root path" do + post login_path, params: { + email: user.email, + password: "password123" + } + expect(response).to redirect_to(root_path) + end + + it "shows success message" do + post login_path, params: { + email: user.email, + password: "password123" + } + follow_redirect! + expect(response.body).to include("Successfully logged in") + end + end + + context "with invalid email" do + it "does not log in the user" do + post login_path, params: { + email: "nonexistent@example.com", + password: "password123" + } + expect(session[:user_id]).to be_nil + end + + it "returns unprocessable entity status" do + post login_path, params: { + email: "nonexistent@example.com", + password: "password123" + } + expect(response).to have_http_status(:unprocessable_entity) + end + + it "shows error message" do + post login_path, params: { + email: "nonexistent@example.com", + password: "password123" + } + expect(response.body).to include("Invalid email or password") + end + end + + context "with invalid password" do + it "does not log in the user" do + post login_path, params: { + email: user.email, + password: "wrongpassword" + } + expect(session[:user_id]).to be_nil + end + + it "returns unprocessable entity status" do + post login_path, params: { + email: user.email, + password: "wrongpassword" + } + expect(response).to have_http_status(:unprocessable_entity) + end + + it "shows error message" do + post login_path, params: { + email: user.email, + password: "wrongpassword" + } + expect(response.body).to include("Invalid email or password") + end + end + end + + describe "DELETE /logout" do + before do + post login_path, params: { + email: user.email, + password: "password123" + } + end + + it "logs out the user" do + delete logout_path + expect(session[:user_id]).to be_nil + end + + it "redirects to root path" do + delete logout_path + expect(response).to redirect_to(root_path) + end + + it "shows success message" do + delete logout_path + follow_redirect! + expect(response.body).to include("Successfully logged out") + end + end + + describe "Admin user authentication" do + let(:admin_user) { create(:user, :admin) } + + it "shows gerenciamento menu after login" do + post login_path, params: { + email: admin_user.email, + password: "password123" + } + follow_redirect! + expect(response.body).to include("Gerenciamento") + end + end +end diff --git a/CAMAAR/spec/spec_helper.rb b/CAMAAR/spec/spec_helper.rb new file mode 100644 index 0000000000..327b58ea1f --- /dev/null +++ b/CAMAAR/spec/spec_helper.rb @@ -0,0 +1,94 @@ +# This file was generated by the `rails generate rspec:install` command. Conventionally, all +# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`. +# The generated `.rspec` file contains `--require spec_helper` which will cause +# this file to always be loaded, without a need to explicitly require it in any +# files. +# +# Given that it is always loaded, you are encouraged to keep this file as +# light-weight as possible. Requiring heavyweight dependencies from this file +# will add to the boot time of your test suite on EVERY test run, even for an +# individual file that may not need all of that loaded. Instead, consider making +# a separate helper file that requires the additional dependencies and performs +# the additional setup, and require it from the spec files that actually need +# it. +# +# See https://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration +RSpec.configure do |config| + # rspec-expectations config goes here. You can use an alternate + # assertion/expectation library such as wrong or the stdlib/minitest + # assertions if you prefer. + config.expect_with :rspec do |expectations| + # This option will default to `true` in RSpec 4. It makes the `description` + # and `failure_message` of custom matchers include text for helper methods + # defined using `chain`, e.g.: + # be_bigger_than(2).and_smaller_than(4).description + # # => "be bigger than 2 and smaller than 4" + # ...rather than: + # # => "be bigger than 2" + expectations.include_chain_clauses_in_custom_matcher_descriptions = true + end + + # rspec-mocks config goes here. You can use an alternate test double + # library (such as bogus or mocha) by changing the `mock_with` option here. + config.mock_with :rspec do |mocks| + # Prevents you from mocking or stubbing a method that does not exist on + # a real object. This is generally recommended, and will default to + # `true` in RSpec 4. + mocks.verify_partial_doubles = true + end + + # This option will default to `:apply_to_host_groups` in RSpec 4 (and will + # have no way to turn it off -- the option exists only for backwards + # compatibility in RSpec 3). It causes shared context metadata to be + # inherited by the metadata hash of host groups and examples, rather than + # triggering implicit auto-inclusion in groups with matching metadata. + config.shared_context_metadata_behavior = :apply_to_host_groups + +# The settings below are suggested to provide a good initial experience +# with RSpec, but feel free to customize to your heart's content. +=begin + # This allows you to limit a spec run to individual examples or groups + # you care about by tagging them with `:focus` metadata. When nothing + # is tagged with `:focus`, all examples get run. RSpec also provides + # aliases for `it`, `describe`, and `context` that include `:focus` + # metadata: `fit`, `fdescribe` and `fcontext`, respectively. + config.filter_run_when_matching :focus + + # Allows RSpec to persist some state between runs in order to support + # the `--only-failures` and `--next-failure` CLI options. We recommend + # you configure your source control system to ignore this file. + config.example_status_persistence_file_path = "spec/examples.txt" + + # Limits the available syntax to the non-monkey patched syntax that is + # recommended. For more details, see: + # https://rspec.info/features/3-12/rspec-core/configuration/zero-monkey-patching-mode/ + config.disable_monkey_patching! + + # Many RSpec users commonly either run the entire suite or an individual + # file, and it's useful to allow more verbose output when running an + # individual spec file. + if config.files_to_run.one? + # Use the documentation formatter for detailed output, + # unless a formatter has already been configured + # (e.g. via a command-line flag). + config.default_formatter = "doc" + end + + # Print the 10 slowest examples and example groups at the + # end of the spec run, to help surface which specs are running + # particularly slow. + config.profile_examples = 10 + + # Run specs in random order to surface order dependencies. If you find an + # order dependency and want to debug it, you can fix the order by providing + # the seed, which is printed after each run. + # --seed 1234 + config.order = :random + + # Seed global randomization in this process using the `--seed` CLI option. + # Setting this allows you to use `--seed` to deterministically reproduce + # test failures related to randomization by passing the same `--seed` value + # as the one that triggered the failure. + Kernel.srand config.seed +=end +end diff --git a/CAMAAR/test/fixtures/users.yml b/CAMAAR/test/fixtures/users.yml index afa6528180..197d90f634 100644 --- a/CAMAAR/test/fixtures/users.yml +++ b/CAMAAR/test/fixtures/users.yml @@ -1,11 +1,11 @@ # Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html one: - email: MyString - name: MyString - password_digest: MyString + email: user@example.com + name: Test User + password_digest: <%= BCrypt::Password.create('password123') %> two: - email: MyString - name: MyString - password_digest: MyString + email: another@example.com + name: Another User + password_digest: <%= BCrypt::Password.create('password123') %> From 1c4e66430697826e18affbb44534bc3690b410ea Mon Sep 17 00:00:00 2001 From: Kitsai Date: Wed, 26 Nov 2025 22:27:29 -0300 Subject: [PATCH 030/151] login page style --- CAMAAR/app/assets/stylesheets/application.css | 17 ++++ .../assets/stylesheets/components/button.css | 21 ++++ CAMAAR/app/assets/stylesheets/login.css | 99 +++++++++++++++++++ CAMAAR/app/views/layouts/application.html.erb | 4 + CAMAAR/app/views/sessions/new.html.erb | 45 ++++++--- 5 files changed, 172 insertions(+), 14 deletions(-) create mode 100644 CAMAAR/app/assets/stylesheets/components/button.css create mode 100644 CAMAAR/app/assets/stylesheets/login.css diff --git a/CAMAAR/app/assets/stylesheets/application.css b/CAMAAR/app/assets/stylesheets/application.css index fe93333c0f..dc55c077b2 100644 --- a/CAMAAR/app/assets/stylesheets/application.css +++ b/CAMAAR/app/assets/stylesheets/application.css @@ -8,3 +8,20 @@ * * Consider organizing styles into separate files for maintainability. */ + +/* Base styles */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: 'Poppins', sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +@import 'components/button.css' + +@import 'login.css' diff --git a/CAMAAR/app/assets/stylesheets/components/button.css b/CAMAAR/app/assets/stylesheets/components/button.css new file mode 100644 index 0000000000..8d3e2a057c --- /dev/null +++ b/CAMAAR/app/assets/stylesheets/components/button.css @@ -0,0 +1,21 @@ +.button { + color: white; + padding: 12px, 28px; + + background-color: #22C55E; + + border-width: 16px; + border-radius: 6px; + border-color: transparent; + + display: flex; + align-items: center; + justify-content: center; + + font-size: 16px; +} + +.button:disabled { + opacity: 0.5; + cursor: not-allowed; +} diff --git a/CAMAAR/app/assets/stylesheets/login.css b/CAMAAR/app/assets/stylesheets/login.css new file mode 100644 index 0000000000..1288e8f7df --- /dev/null +++ b/CAMAAR/app/assets/stylesheets/login.css @@ -0,0 +1,99 @@ +.login_container { + display: flex; + justify-content: center; + align-items: center; + min-height: 100vh; + background-color: #f5f5f5; +} + +.login_content { + display: grid; + grid-template-columns: 1fr 1fr; + border-radius: 8px; + overflow: hidden; + min-width: 900px; + min-height: 600px; +} + +.welcome { + background-color: #6C2365; + color: white; + + display: flex; + align-items: center; + justify-content: center; + text-align: center; + + font-size: 56px; + + padding: 76px 41px; +} + +.login_form { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + padding: 2rem; + + background-color: white; + + gap: 24px; +} + +.login_form form { + display: flex; + flex-direction: column; + gap: 24px; + width: 100%; + max-width: 400px; +} + +.login_form .form-group { + display: flex; + flex-direction: column; + gap: 8px; + width: 100%; +} + +.login_form h1 { + font-size: 32px; + font-weight: 600; + margin: 0; +} + +.login_form label { + font-size: 16px; + font-weight: 500; + color: #374151; +} + +.login_form .form-control { + width: 100%; + padding: 12px 16px; + font-size: 16px; + border: 1px solid #d1d5db; + border-radius: 8px; + background-color: white; + transition: border-color 0.2s, box-shadow 0.2s; +} + +.login_form .form-control:focus { + outline: none; + border-color: #6C2365; + box-shadow: 0 0 0 3px rgba(108, 35, 101, 0.1); +} + +.login_form .form-control::placeholder { + color: #9ca3af; +} + +.login_form .button { + width: 100%; + padding: 12px 16px; + font-size: 16px; + font-weight: 600; + cursor: pointer; + border: none; + border-width: 0; +} diff --git a/CAMAAR/app/views/layouts/application.html.erb b/CAMAAR/app/views/layouts/application.html.erb index 0c281b8218..3ae6cb1362 100644 --- a/CAMAAR/app/views/layouts/application.html.erb +++ b/CAMAAR/app/views/layouts/application.html.erb @@ -9,6 +9,10 @@ <%= csrf_meta_tags %> <%= csp_meta_tag %> + + + + <%= yield :head %> <%# Enable PWA manifest for installable apps (make sure to enable in config/routes.rb too!) %> diff --git a/CAMAAR/app/views/sessions/new.html.erb b/CAMAAR/app/views/sessions/new.html.erb index 8a5480f734..95ea1c5855 100644 --- a/CAMAAR/app/views/sessions/new.html.erb +++ b/CAMAAR/app/views/sessions/new.html.erb @@ -1,19 +1,36 @@ -
-

Login

+
- <%= f.label :password, "Password" %> + <%= f.label :password, "Senha" %> <%= f.password_field :password, class: "form-control", placeholder: "Enter your password", diff --git a/CAMAAR/config/routes.rb b/CAMAAR/config/routes.rb index cc50e99e2a..55e43a5ef9 100644 --- a/CAMAAR/config/routes.rb +++ b/CAMAAR/config/routes.rb @@ -14,6 +14,10 @@ post "login", to: "sessions#create" delete "logout", to: "sessions#destroy", as: :logout + # Password setup routes + get "set_password", to: "passwords#new", as: :set_password + post "set_password", to: "passwords#create" + # Defines the root path route ("/") root "sessions#new" end diff --git a/CAMAAR/features/step_definitions/login_steps.rb b/CAMAAR/features/step_definitions/login_steps.rb index fc782d7598..bdbf058812 100644 --- a/CAMAAR/features/step_definitions/login_steps.rb +++ b/CAMAAR/features/step_definitions/login_steps.rb @@ -26,14 +26,14 @@ end When('I enter the correct password') do - fill_in 'Password', with: 'password123' - click_button 'Log in' + fill_in 'Senha', with: 'password123' + click_button 'Entrar' end When('I enter a email that does not exist on database') do fill_in 'Email', with: 'nonexistent@example.com' - fill_in 'Password', with: 'password123' - click_button 'Log in' + fill_in 'Senha', with: 'password123' + click_button 'Entrar' end When('I enter the wrong password') do @@ -43,15 +43,15 @@ password_confirmation: 'password123' ) fill_in 'Email', with: @user.email - fill_in 'Password', with: 'wrongpassword' - click_button 'Log in' + fill_in 'Senha', with: 'wrongpassword' + click_button 'Entrar' end When('I log in successfully') do visit login_path fill_in 'Email', with: @user.email - fill_in 'Password', with: 'password123' - click_button 'Log in' + fill_in 'Senha', with: 'password123' + click_button 'Entrar' end # Then steps - Assertions diff --git a/CAMAAR/features/step_definitions/password_setup.rb b/CAMAAR/features/step_definitions/password_setup.rb new file mode 100644 index 0000000000..7af9943953 --- /dev/null +++ b/CAMAAR/features/step_definitions/password_setup.rb @@ -0,0 +1,55 @@ +Given("I received a registration email") do + @user = User.create!( + email: 'user@example.com' + ) +end + +Given("I already have a password") do + @user ||= User.create!( + email: 'user@example.com', + password: 'password123', + password_confirmation: 'password123' + ) +end + +#### + +When("I click on the registration link") do + visit set_password_path(email: @user.email) +end + +When("I enter a valid password") do + fill_in 'Senha', with: 'password123' +end + +When("I confirm the password correctly") do + fill_in 'Confirmar', with: 'password123' + click_button 'Definir Senha' +end + +When("I enter a different password in the confirmation field") do + fill_in 'Confirmar', with: 'senha123' + click_button 'Definir Senha' +end + +#### + +Then("I should see a success message") do + assert page.has_content?('Passwords set successfully') +end + +Then("I should be able to log in with my credentials") do + visit login_path + fill_in 'Email', with: @user.email + fill_in 'Senha', with: 'password123' + click_button 'Entrar' + assert page.has_content?('Successfully logged in') +end + +Then("I should see an error message that passwords do not match") do + assert page.has_content?('Passwords do not match') +end + +Then("I should see an error message that password already registered") do + assert page.has_content?('Password already registered') +end diff --git a/CAMAAR/spec/models/user_spec.rb b/CAMAAR/spec/models/user_spec.rb new file mode 100644 index 0000000000..6955ad5698 --- /dev/null +++ b/CAMAAR/spec/models/user_spec.rb @@ -0,0 +1,105 @@ +require 'rails_helper' + +RSpec.describe User, type: :model do + describe "validations" do + it "is valid with an email" do + user = User.new(email: "test@example.com") + expect(user).to be_valid + end + + it "requires an email" do + user = User.new(email: nil) + expect(user).not_to be_valid + expect(user.errors[:email]).to include("can't be blank") + end + + it "requires unique email" do + User.create!(email: "test@example.com") + user = User.new(email: "test@example.com") + expect(user).not_to be_valid + expect(user.errors[:email]).to include("has already been taken") + end + + describe "password validations" do + it "allows user creation without password" do + user = User.create(email: "test@example.com") + expect(user).to be_persisted + expect(user.password_digest).to be_nil + end + + it "is valid with matching password and confirmation" do + user = User.new( + email: "test@example.com", + password: "password123", + password_confirmation: "password123" + ) + expect(user).to be_valid + end + + it "cannot update password without matching confirmation" do + user = User.create!(email: "test@example.com") + result = user.update(password: "password123", password_confirmation: "different") + expect(result).to be_falsey + expect(user.errors[:password_confirmation]).to be_present + end + end + end + + describe "password setup" do + let(:user) { User.create!(email: "test@example.com") } + + it "can set password after creation" do + expect(user.password_digest).to be_nil + user.update(password: "newpassword", password_confirmation: "newpassword") + expect(user.password_digest).not_to be_nil + end + + it "can authenticate after setting password" do + user.update(password: "newpassword", password_confirmation: "newpassword") + expect(user.authenticate("newpassword")).to eq(user) + end + + it "cannot authenticate with wrong password" do + user.update(password: "newpassword", password_confirmation: "newpassword") + expect(user.authenticate("wrongpassword")).to be_falsey + end + end + + describe "associations" do + it "has taught_courses association" do + expect(User.reflect_on_association(:taught_courses)).to be_present + end + + it "has enrollments association" do + expect(User.reflect_on_association(:enrollments)).to be_present + end + + it "has courses association" do + expect(User.reflect_on_association(:courses)).to be_present + end + + it "has admin association" do + expect(User.reflect_on_association(:admin)).to be_present + end + + it "has form_requests association" do + expect(User.reflect_on_association(:form_requests)).to be_present + end + + it "has forms association" do + expect(User.reflect_on_association(:forms)).to be_present + end + end + + describe "#admin?" do + it "returns true when user has admin record" do + user = create(:user, :admin) + expect(user.admin?).to be true + end + + it "returns false when user has no admin record" do + user = create(:user) + expect(user.admin?).to be false + end + end +end diff --git a/CAMAAR/spec/requests/passwords_spec.rb b/CAMAAR/spec/requests/passwords_spec.rb new file mode 100644 index 0000000000..2072c02a1d --- /dev/null +++ b/CAMAAR/spec/requests/passwords_spec.rb @@ -0,0 +1,148 @@ +require 'rails_helper' + +RSpec.describe "Passwords", type: :request do + describe "GET /set_password" do + context "when user has no password" do + let(:user) { User.create!(email: "newuser@example.com") } + + it "returns http success" do + get set_password_path(email: user.email) + expect(response).to have_http_status(:success) + end + + it "renders the password setup form" do + get set_password_path(email: user.email) + expect(response.body).to include('form') + expect(response.body).to include('Senha') + expect(response.body).to include('Confirmar') + end + end + + context "when user already has a password" do + let(:user) { create(:user) } + + it "redirects to login page" do + get set_password_path(email: user.email) + expect(response).to redirect_to(login_path) + end + + it "shows error message" do + get set_password_path(email: user.email) + follow_redirect! + expect(response.body).to include("Password already registered") + end + end + end + + describe "POST /set_password" do + let(:user) { User.create!(email: "newuser@example.com") } + + context "with matching passwords" do + let(:valid_params) do + { + email: user.email, + password: "newpassword123", + password_confirmation: "newpassword123" + } + end + + it "sets the user password" do + post set_password_path, params: valid_params + user.reload + expect(user.password_digest).not_to be_nil + end + + it "allows login with new password" do + post set_password_path, params: valid_params + user.reload + expect(user.authenticate("newpassword123")).to eq(user) + end + + it "redirects to login page" do + post set_password_path, params: valid_params + expect(response).to redirect_to(login_path) + end + + it "shows success message" do + post set_password_path, params: valid_params + follow_redirect! + expect(response.body).to include("Passwords set successfully") + end + end + + context "with mismatched passwords" do + let(:invalid_params) do + { + email: user.email, + password: "newpassword123", + password_confirmation: "differentpassword" + } + end + + it "does not set the password" do + post set_password_path, params: invalid_params + user.reload + expect(user.password_digest).to be_nil + end + + it "returns unprocessable entity status" do + post set_password_path, params: invalid_params + expect(response).to have_http_status(:unprocessable_entity) + end + + it "shows error message" do + post set_password_path, params: invalid_params + expect(response.body).to include("Passwords do not match") + end + end + + context "when user not found" do + let(:invalid_params) do + { + email: "nonexistent@example.com", + password: "newpassword123", + password_confirmation: "newpassword123" + } + end + + it "returns unprocessable entity status" do + post set_password_path, params: invalid_params + expect(response).to have_http_status(:unprocessable_entity) + end + + it "shows error message" do + post set_password_path, params: invalid_params + expect(response.body).to include("User not found") + end + end + + context "when user already has a password" do + let(:existing_user) { create(:user) } + let(:params) do + { + email: existing_user.email, + password: "newpassword123", + password_confirmation: "newpassword123" + } + end + + it "does not change the password" do + original_password_digest = existing_user.password_digest + post set_password_path, params: params + existing_user.reload + expect(existing_user.password_digest).to eq(original_password_digest) + end + + it "redirects to login page" do + post set_password_path, params: params + expect(response).to redirect_to(login_path) + end + + it "shows error message" do + post set_password_path, params: params + follow_redirect! + expect(response.body).to include("Password already registered") + end + end + end +end From fe8fc49e391f6278add3fb9a2d91074da54860eb Mon Sep 17 00:00:00 2001 From: Kitsai Date: Mon, 1 Dec 2025 22:10:37 -0300 Subject: [PATCH 034/151] tests --- .../app/controllers/templates_controller.rb | 62 +++++++ CAMAAR/app/models/question_set.rb | 22 ++- CAMAAR/app/models/template.rb | 16 ++ CAMAAR/config/routes.rb | 3 + .../20251202002829_add_name_to_templates.rb | 5 + CAMAAR/db/schema.rb | 3 +- .../step_definitions/create_template_steps.rb | 56 ++++++ CAMAAR/spec/factories/courses.rb | 9 + CAMAAR/spec/factories/forms.rb | 7 + CAMAAR/spec/models/question_set_spec.rb | 87 ++++++++++ CAMAAR/spec/models/template_spec.rb | 80 +++++++++ CAMAAR/spec/requests/templates_spec.rb | 163 ++++++++++++++++++ 12 files changed, 511 insertions(+), 2 deletions(-) create mode 100644 CAMAAR/app/controllers/templates_controller.rb create mode 100644 CAMAAR/db/migrate/20251202002829_add_name_to_templates.rb create mode 100644 CAMAAR/features/step_definitions/create_template_steps.rb create mode 100644 CAMAAR/spec/factories/courses.rb create mode 100644 CAMAAR/spec/factories/forms.rb create mode 100644 CAMAAR/spec/models/question_set_spec.rb create mode 100644 CAMAAR/spec/models/template_spec.rb create mode 100644 CAMAAR/spec/requests/templates_spec.rb diff --git a/CAMAAR/app/controllers/templates_controller.rb b/CAMAAR/app/controllers/templates_controller.rb new file mode 100644 index 0000000000..0ae6a696b0 --- /dev/null +++ b/CAMAAR/app/controllers/templates_controller.rb @@ -0,0 +1,62 @@ +class TemplatesController < ApplicationController + before_action :require_admin + before_action :set_template, only: [:show, :edit, :update, :destroy] + + def index + @templates = current_admin.templates.includes(:question_set) + end + + def new + @template = Template.new + @template.build_question_set + end + + def create + @template = current_admin.templates.build(template_params) + + if @template.save + redirect_to templates_path, notice: "Template created successfully" + else + render :new, status: :unprocessable_entity + end + end + + def show + end + + def edit + end + + def update + if @template.update(template_params) + redirect_to templates_path, notice: "Template updated successfully" + else + render :edit, status: :unprocessable_entity + end + end + + def destroy + @template.destroy + redirect_to templates_path, notice: "Template deleted successfully" + end + + private + + def set_template + @template = current_admin.templates.find(params[:id]) + end + + def template_params + params.require(:template).permit(:name, question_set_attributes: [:id, :data]) + end + + def require_admin + unless current_user&.admin? + redirect_to root_path, alert: "Access denied. Admin privileges required." + end + end + + def current_admin + @current_admin ||= current_user&.admin + end +end diff --git a/CAMAAR/app/models/question_set.rb b/CAMAAR/app/models/question_set.rb index 24e88a9b0e..fb79a311be 100644 --- a/CAMAAR/app/models/question_set.rb +++ b/CAMAAR/app/models/question_set.rb @@ -2,10 +2,28 @@ class QuestionSet < ApplicationRecord has_one :template has_many :forms + validate :data_must_be_valid_json_array + before_update :copy_on_write_if_used_by_forms private + def data_must_be_valid_json_array + if data.nil? + errors.add(:data, "can't be blank") + return + end + + unless data.is_a?(Array) + errors.add(:data, "must be a non-empty array of questions") + return + end + + if data.empty? + errors.add(:data, "must be a non-empty array of questions") + end + end + def copy_on_write_if_used_by_forms # If any forms are using this question_set, create a copy instead of updating return unless forms.exists? @@ -22,7 +40,9 @@ def copy_on_write_if_used_by_forms new_qs.save! # Update the template to point to the new question_set - template&.update(question_set_id: new_qs.id) + # Use direct query instead of association to avoid caching issues + tmpl = Template.find_by(question_set_id: id) + tmpl&.update_column(:question_set_id, new_qs.id) # Prevent the original update (keep old version for forms) throw :abort diff --git a/CAMAAR/app/models/template.rb b/CAMAAR/app/models/template.rb index a4dd9cc323..d5c8efe5e7 100644 --- a/CAMAAR/app/models/template.rb +++ b/CAMAAR/app/models/template.rb @@ -1,4 +1,20 @@ class Template < ApplicationRecord belongs_to :admin belongs_to :question_set + + accepts_nested_attributes_for :question_set + + validates :name, presence: true + validates :question_set, presence: true + validate :question_set_must_have_questions + + private + + def question_set_must_have_questions + return unless question_set + + if question_set.data.blank? || question_set.data.empty? + errors.add(:question_set, "must have at least one question") + end + end end diff --git a/CAMAAR/config/routes.rb b/CAMAAR/config/routes.rb index 55e43a5ef9..d4795a05bf 100644 --- a/CAMAAR/config/routes.rb +++ b/CAMAAR/config/routes.rb @@ -18,6 +18,9 @@ get "set_password", to: "passwords#new", as: :set_password post "set_password", to: "passwords#create" + # Templates routes + resources :templates + # Defines the root path route ("/") root "sessions#new" end diff --git a/CAMAAR/db/migrate/20251202002829_add_name_to_templates.rb b/CAMAAR/db/migrate/20251202002829_add_name_to_templates.rb new file mode 100644 index 0000000000..5a74ef838d --- /dev/null +++ b/CAMAAR/db/migrate/20251202002829_add_name_to_templates.rb @@ -0,0 +1,5 @@ +class AddNameToTemplates < ActiveRecord::Migration[8.1] + def change + add_column :templates, :name, :string + end +end diff --git a/CAMAAR/db/schema.rb b/CAMAAR/db/schema.rb index 7d89ceb476..ace5af1640 100644 --- a/CAMAAR/db/schema.rb +++ b/CAMAAR/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[8.1].define(version: 2025_11_27_000753) do +ActiveRecord::Schema[8.1].define(version: 2025_12_02_002829) do create_table "admins", primary_key: "user_id", force: :cascade do |t| t.datetime "created_at", null: false t.datetime "updated_at", null: false @@ -76,6 +76,7 @@ create_table "templates", force: :cascade do |t| t.integer "admin_id", null: false t.datetime "created_at", null: false + t.string "name" t.integer "question_set_id", null: false t.datetime "updated_at", null: false t.index ["admin_id"], name: "index_templates_on_admin_id" diff --git a/CAMAAR/features/step_definitions/create_template_steps.rb b/CAMAAR/features/step_definitions/create_template_steps.rb new file mode 100644 index 0000000000..1ab42c0f97 --- /dev/null +++ b/CAMAAR/features/step_definitions/create_template_steps.rb @@ -0,0 +1,56 @@ +# Step definitions for create template feature + +Given("I am an admin") do + @user = User.create!( + email: 'admin@example.com', + password: 'password123', + password_confirmation: 'password123' + ) + @admin = Admin.create!(user: @user) + + # Log in as admin + visit login_path + fill_in 'Email', with: @user.email + fill_in 'Senha', with: 'password123' + click_button 'Entrar' +end + +Given("I am on the gerenciamento - templates page") do + visit templates_path +end + +When("I click the add button") do + click_link 'Add Template' +end + +When("I enter a valid name") do + fill_in 'Name', with: 'Test Template' +end + +When("I enter a invalid name") do + fill_in 'Name', with: '' +end + +When("I add at least one question") do + # Assuming we have a form field for questions data as JSON + fill_in 'Questions', with: '[{"question": "What is your name?", "type": "text"}]' + click_button 'Create Template' +end + +When("I do not add questions") do + fill_in 'Questions', with: '' + click_button 'Create Template' +end + +Then("the new template should appear in the template list") do + expect(page).to have_content('Test Template') + expect(page).to have_content('Template created successfully') +end + +Then("I should receive an error that I should add questions") do + expect(page).to have_content('must have at least one question') +end + +Then("I should receive an error that I should add a name") do + expect(page).to have_content("Name can't be blank") +end diff --git a/CAMAAR/spec/factories/courses.rb b/CAMAAR/spec/factories/courses.rb new file mode 100644 index 0000000000..01ca360ca8 --- /dev/null +++ b/CAMAAR/spec/factories/courses.rb @@ -0,0 +1,9 @@ +FactoryBot.define do + factory :course do + sequence(:name) { |n| "Course #{n}" } + sequence(:code) { |n| "CS#{n}" } + classCode { "A" } + semester { "2024.1" } + association :teacher, factory: :user + end +end diff --git a/CAMAAR/spec/factories/forms.rb b/CAMAAR/spec/factories/forms.rb new file mode 100644 index 0000000000..051af64c25 --- /dev/null +++ b/CAMAAR/spec/factories/forms.rb @@ -0,0 +1,7 @@ +FactoryBot.define do + factory :form do + association :admin + association :course + association :question_set + end +end \ No newline at end of file diff --git a/CAMAAR/spec/models/question_set_spec.rb b/CAMAAR/spec/models/question_set_spec.rb new file mode 100644 index 0000000000..2c6380ee33 --- /dev/null +++ b/CAMAAR/spec/models/question_set_spec.rb @@ -0,0 +1,87 @@ +require 'rails_helper' + +RSpec.describe QuestionSet, type: :model do + describe "validations" do + it "is valid with a non-empty array of questions" do + question_set = QuestionSet.new(data: [{ question: "Test?", type: "text" }]) + expect(question_set).to be_valid + end + + it "requires data to be present" do + question_set = QuestionSet.new(data: nil) + expect(question_set).not_to be_valid + expect(question_set.errors[:data]).to include("can't be blank") + end + + it "requires data to be a non-empty array" do + question_set = QuestionSet.new(data: []) + expect(question_set).not_to be_valid + expect(question_set.errors[:data]).to include("must be a non-empty array of questions") + end + + it "is invalid when data is not an array" do + question_set = QuestionSet.new(data: "not an array") + expect(question_set).not_to be_valid + expect(question_set.errors[:data]).to include("must be a non-empty array of questions") + end + end + + describe "associations" do + it "has one template" do + expect(QuestionSet.reflect_on_association(:template)).to be_present + expect(QuestionSet.reflect_on_association(:template).macro).to eq(:has_one) + end + + it "has many forms" do + expect(QuestionSet.reflect_on_association(:forms)).to be_present + expect(QuestionSet.reflect_on_association(:forms).macro).to eq(:has_many) + end + end + + describe "copy-on-write behavior" do + let(:admin) { create(:user, :admin).admin } + let(:question_set) { QuestionSet.create!(data: [{ question: "Original", type: "text" }]) } + let(:template) { Template.create!(name: "Test Template", admin: admin, question_set: question_set) } + + context "when question_set is not used by any forms" do + it "updates the question_set directly" do + original_id = question_set.id + question_set.update(data: [{ question: "Updated", type: "text" }]) + question_set.reload + expect(question_set.id).to eq(original_id) + expect(question_set.data).to eq([{ "question" => "Updated", "type" => "text" }]) + end + end + + context "when question_set is used by forms" do + let(:course) { Course.create!(name: "Test Course", code: "CS101", teacher: create(:user)) } + let!(:form) { Form.create!(admin: admin, course: course, question_set: question_set) } + + it "creates a new question_set instead of updating" do + # Ensure template is loaded first + template + + original_id = question_set.id + question_set.update(data: [{ question: "Modified", type: "text" }]) + + # Original question_set should remain unchanged + question_set.reload + expect(question_set.data).to eq([{ "question" => "Original", "type" => "text" }]) + + # Template should point to a new question_set + template.reload + expect(template.question_set_id).not_to eq(original_id) + expect(template.question_set.data).to eq([{ "question" => "Modified", "type" => "text" }]) + end + + it "keeps the original question_set for existing forms" do + original_id = question_set.id + question_set.update(data: [{ question: "Modified", type: "text" }]) + + form.reload + expect(form.question_set_id).to eq(original_id) + expect(form.question_set.data).to eq([{ "question" => "Original", "type" => "text" }]) + end + end + end +end diff --git a/CAMAAR/spec/models/template_spec.rb b/CAMAAR/spec/models/template_spec.rb new file mode 100644 index 0000000000..6857a643a1 --- /dev/null +++ b/CAMAAR/spec/models/template_spec.rb @@ -0,0 +1,80 @@ +require 'rails_helper' + +RSpec.describe Template, type: :model do + let(:admin) { create(:user, :admin).admin } + let(:question_set) { QuestionSet.create!(data: [{ question: "Test question", type: "text" }]) } + + describe "validations" do + it "is valid with name, admin, and question_set with questions" do + template = Template.new( + name: "Test Template", + admin: admin, + question_set: question_set + ) + expect(template).to be_valid + end + + it "requires a name" do + template = Template.new(admin: admin, question_set: question_set) + expect(template).not_to be_valid + expect(template.errors[:name]).to include("can't be blank") + end + + it "requires a question_set" do + template = Template.new(name: "Test Template", admin: admin) + expect(template).not_to be_valid + expect(template.errors[:question_set]).to include("must exist") + end + + it "requires question_set to have at least one question" do + empty_qs = QuestionSet.new(data: []) + template = Template.new( + name: "Test Template", + admin: admin, + question_set: empty_qs + ) + expect(template).not_to be_valid + expect(template.errors[:question_set]).to include("must have at least one question") + end + + it "is invalid when question_set data is nil" do + nil_qs = QuestionSet.new(data: nil) + template = Template.new( + name: "Test Template", + admin: admin, + question_set: nil_qs + ) + expect(template).not_to be_valid + end + end + + describe "associations" do + it "belongs to admin" do + expect(Template.reflect_on_association(:admin)).to be_present + expect(Template.reflect_on_association(:admin).macro).to eq(:belongs_to) + end + + it "belongs to question_set" do + expect(Template.reflect_on_association(:question_set)).to be_present + expect(Template.reflect_on_association(:question_set).macro).to eq(:belongs_to) + end + + it "accepts nested attributes for question_set" do + expect(Template.nested_attributes_options).to have_key(:question_set) + end + end + + describe "creating template with nested question_set" do + it "can create template with nested question_set attributes" do + template = admin.templates.build( + name: "Nested Template", + question_set_attributes: { + data: [{ question: "Nested question", type: "text" }] + } + ) + expect(template.save).to be true + expect(template.question_set).to be_persisted + expect(template.question_set.data).to eq([{ "question" => "Nested question", "type" => "text" }]) + end + end +end diff --git a/CAMAAR/spec/requests/templates_spec.rb b/CAMAAR/spec/requests/templates_spec.rb new file mode 100644 index 0000000000..94c9c768aa --- /dev/null +++ b/CAMAAR/spec/requests/templates_spec.rb @@ -0,0 +1,163 @@ +require 'rails_helper' + +RSpec.describe "Templates", type: :request do + let(:admin_user) { create(:user, :admin) } + let(:admin) { admin_user.admin } + let(:regular_user) { create(:user) } + let(:valid_attributes) do + { + name: "Test Template", + question_set_attributes: { + data: [{ question: "What is your name?", type: "text" }] + } + } + end + let(:invalid_attributes) do + { + name: "", + question_set_attributes: { data: [] } + } + end + + before do + # Log in as admin + post login_path, params: { email: admin_user.email, password: "password123" } + end + + describe "GET /templates" do + it "returns http success" do + get templates_path + expect(response).to have_http_status(:success) + end + + it "displays all templates for the current admin" do + template1 = Template.create!(name: "Template 1", admin: admin, question_set: QuestionSet.create!(data: [{question: "Q1"}])) + template2 = Template.create!(name: "Template 2", admin: admin, question_set: QuestionSet.create!(data: [{question: "Q2"}])) + + get templates_path + expect(response.body).to include("Template 1") + expect(response.body).to include("Template 2") + end + end + + describe "GET /templates/new" do + it "returns http success" do + get new_template_path + expect(response).to have_http_status(:success) + end + end + + describe "POST /templates" do + context "with valid parameters" do + it "creates a new template" do + expect { + post templates_path, params: { template: valid_attributes } + }.to change(Template, :count).by(1) + end + + it "creates a new question_set" do + expect { + post templates_path, params: { template: valid_attributes } + }.to change(QuestionSet, :count).by(1) + end + + it "redirects to templates index" do + post templates_path, params: { template: valid_attributes } + expect(response).to redirect_to(templates_path) + end + + it "shows success message" do + post templates_path, params: { template: valid_attributes } + follow_redirect! + expect(response.body).to include("Template created successfully") + end + end + + context "with invalid parameters (no name)" do + it "does not create a new template" do + expect { + post templates_path, params: { template: { name: "", question_set_attributes: { data: [{question: "Q"}] } } } + }.not_to change(Template, :count) + end + + it "returns unprocessable entity status" do + post templates_path, params: { template: { name: "", question_set_attributes: { data: [{question: "Q"}] } } } + expect(response).to have_http_status(:unprocessable_entity) + end + + it "shows error message" do + post templates_path, params: { template: { name: "", question_set_attributes: { data: [{question: "Q"}] } } } + expect(response.body).to include("can't be blank") + end + end + + context "with invalid parameters (no questions)" do + it "does not create a new template" do + expect { + post templates_path, params: { template: { name: "Test", question_set_attributes: { data: [] } } } + }.not_to change(Template, :count) + end + + it "shows error message about questions" do + post templates_path, params: { template: { name: "Test", question_set_attributes: { data: [] } } } + expect(response.body).to include("must have at least one question") + end + end + end + + describe "GET /templates/:id/edit" do + let(:template) { Template.create!(name: "Test", admin: admin, question_set: QuestionSet.create!(data: [{question: "Q"}])) } + + it "returns http success" do + get edit_template_path(template) + expect(response).to have_http_status(:success) + end + end + + describe "PATCH /templates/:id" do + let(:template) { Template.create!(name: "Original", admin: admin, question_set: QuestionSet.create!(data: [{question: "Q"}])) } + let(:new_attributes) { { name: "Updated Template" } } + + it "updates the template" do + patch template_path(template), params: { template: new_attributes } + template.reload + expect(template.name).to eq("Updated Template") + end + + it "redirects to templates index" do + patch template_path(template), params: { template: new_attributes } + expect(response).to redirect_to(templates_path) + end + end + + describe "DELETE /templates/:id" do + let!(:template) { Template.create!(name: "Test", admin: admin, question_set: QuestionSet.create!(data: [{question: "Q"}])) } + + it "destroys the template" do + expect { + delete template_path(template) + }.to change(Template, :count).by(-1) + end + + it "redirects to templates index" do + delete template_path(template) + expect(response).to redirect_to(templates_path) + end + end + + describe "admin access control" do + it "redirects non-admin users" do + delete logout_path + post login_path, params: { email: regular_user.email, password: "password123" } + + get templates_path + expect(response).to redirect_to(root_path) + expect(flash[:alert]).to include("Admin privileges required") + end + + it "allows admin users" do + get templates_path + expect(response).to have_http_status(:success) + end + end +end From 835dabfa06f3aee8ae54c8673d06d91dc29472d4 Mon Sep 17 00:00:00 2001 From: Kitsai Date: Tue, 2 Dec 2025 10:19:36 -0300 Subject: [PATCH 035/151] visualize tests --- .../visualize_templates_steps.rb | 60 +++++++++++++++ .../controllers/templates_controller_test.rb | 76 +++++++++++++++++++ CAMAAR/test/fixtures/admins.yml | 14 ++-- CAMAAR/test/fixtures/answers.yml | 6 +- CAMAAR/test/fixtures/courses.yml | 18 +++-- CAMAAR/test/fixtures/enrollments.yml | 8 +- CAMAAR/test/fixtures/form_requests.yml | 10 +-- CAMAAR/test/fixtures/forms.yml | 10 +-- CAMAAR/test/fixtures/question_sets.yml | 7 +- CAMAAR/test/fixtures/templates.yml | 23 +++--- 10 files changed, 174 insertions(+), 58 deletions(-) create mode 100644 CAMAAR/features/step_definitions/visualize_templates_steps.rb create mode 100644 CAMAAR/test/controllers/templates_controller_test.rb diff --git a/CAMAAR/features/step_definitions/visualize_templates_steps.rb b/CAMAAR/features/step_definitions/visualize_templates_steps.rb new file mode 100644 index 0000000000..b8fb0377e0 --- /dev/null +++ b/CAMAAR/features/step_definitions/visualize_templates_steps.rb @@ -0,0 +1,60 @@ +# Step definitions for visualize templates feature + +Given("I am on the {string} page") do |page_name| + case page_name + when "gerenciamento" + # This would be the main admin management page + # For now, we'll assume it's the templates index page + visit templates_path + else + raise "Unknown page: #{page_name}" + end +end + +When("I click on {string} button") do |button_text| + click_link button_text +end + +Given("there are created templates") do + # Create some sample templates + @templates = [] + 3.times do |i| + question_set = QuestionSet.create!( + data: [ + { question: "Question #{i + 1}?", type: "text" } + ] + ) + @templates << Template.create!( + name: "Template #{i + 1}", + admin: @admin, + question_set: question_set + ) + end +end + +Given("there are no created templates") do + # Ensure no templates exist for this admin + @admin.templates.destroy_all +end + +Then("I should be redirected to {string}") do |path| + expected_path = case path + when "gerenciamento/templates" + templates_path + else + "/#{path}" + end + expect(current_path).to eq(expected_path) +end + +Then("I should see the templates list") do + @templates.each do |template| + expect(page).to have_content(template.name) + end +end + +Then("the {string} button should be disabled") do |button_text| + # Check if button/link is disabled or not present + expect(page).to have_css("a.disabled", text: button_text) || + expect(page).to have_css("button[disabled]", text: button_text) +end diff --git a/CAMAAR/test/controllers/templates_controller_test.rb b/CAMAAR/test/controllers/templates_controller_test.rb new file mode 100644 index 0000000000..bb690c0152 --- /dev/null +++ b/CAMAAR/test/controllers/templates_controller_test.rb @@ -0,0 +1,76 @@ +require "test_helper" + +class TemplatesControllerTest < ActionDispatch::IntegrationTest + setup do + @admin_user = users(:one) + @admin = admins(:one) + @template = templates(:one) + @non_admin_user = User.create!( + email: 'nonadmin@example.com', + password: 'password123', + password_confirmation: 'password123' + ) + end + + test "should redirect to login if not logged in" do + get templates_url + assert_redirected_to login_path + assert_equal "You must be logged in to acces this page.", flash[:alert] + end + + test "should redirect to root if not admin" do + log_in_as(@non_admin_user) + get templates_url + assert_redirected_to root_path + assert_equal "Access denied. Admin privileges required.", flash[:alert] + end + + test "should get index when logged in as admin" do + log_in_as(@admin_user) + get templates_url + assert_response :success + end + + test "should show all templates for current admin on index" do + log_in_as(@admin_user) + get templates_url + assert_response :success + + # Should show templates belonging to this admin + assert_select "h1, h2, h3, h4, h5, h6, p, div", text: /#{@template.name}/ + end + + test "should only show templates for current admin" do + # Create another admin with their own template + other_user = User.create!( + email: 'otheradmin@example.com', + password: 'password123', + password_confirmation: 'password123' + ) + other_admin = Admin.create!(user: other_user) + other_question_set = QuestionSet.create!( + data: [{"question": "Other question?", "type": "text"}] + ) + other_template = Template.create!( + name: "Other Admin Template", + admin: other_admin, + question_set: other_question_set + ) + + log_in_as(@admin_user) + get templates_url + assert_response :success + + # Should show own templates + assert_match @template.name, response.body + + # Should NOT show other admin's templates + assert_no_match other_template.name, response.body + end + + private + + def log_in_as(user) + post login_url, params: { email: user.email, password: 'password123' } + end +end \ No newline at end of file diff --git a/CAMAAR/test/fixtures/admins.yml b/CAMAAR/test/fixtures/admins.yml index d7a3329241..6dc1ab3627 100644 --- a/CAMAAR/test/fixtures/admins.yml +++ b/CAMAAR/test/fixtures/admins.yml @@ -1,11 +1,7 @@ # Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html -# This model initially had no columns defined. If you add columns to the -# model remove the "{}" from the fixture names and add the columns immediately -# below each fixture, per the syntax in the comments below -# -one: {} -# column: value -# -two: {} -# column: value +one: + user: one + +two: + user: two diff --git a/CAMAAR/test/fixtures/answers.yml b/CAMAAR/test/fixtures/answers.yml index 009e211585..ad4a6ad5ea 100644 --- a/CAMAAR/test/fixtures/answers.yml +++ b/CAMAAR/test/fixtures/answers.yml @@ -1,7 +1,3 @@ # Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html -one: - data: MyText - -two: - data: MyText +# Empty fixtures - add test data as needed diff --git a/CAMAAR/test/fixtures/courses.yml b/CAMAAR/test/fixtures/courses.yml index 5026019641..193fd9fb5d 100644 --- a/CAMAAR/test/fixtures/courses.yml +++ b/CAMAAR/test/fixtures/courses.yml @@ -1,13 +1,15 @@ # Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html one: - code: MyString - classCode: MyString - semester: MyString - name: MyString + code: CS101 + classCode: A + semester: 2024.1 + name: Introduction to Computer Science + teacher: one two: - code: MyString - classCode: MyString - semester: MyString - name: MyString + code: CS102 + classCode: B + semester: 2024.1 + name: Data Structures + teacher: two diff --git a/CAMAAR/test/fixtures/enrollments.yml b/CAMAAR/test/fixtures/enrollments.yml index e1d8108d59..ad4a6ad5ea 100644 --- a/CAMAAR/test/fixtures/enrollments.yml +++ b/CAMAAR/test/fixtures/enrollments.yml @@ -1,9 +1,3 @@ # Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html -one: - student_id: 1 - course: one - -two: - student_id: 1 - course: two +# Empty fixtures - add test data as needed diff --git a/CAMAAR/test/fixtures/form_requests.yml b/CAMAAR/test/fixtures/form_requests.yml index d7a3329241..ad4a6ad5ea 100644 --- a/CAMAAR/test/fixtures/form_requests.yml +++ b/CAMAAR/test/fixtures/form_requests.yml @@ -1,11 +1,3 @@ # Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html -# This model initially had no columns defined. If you add columns to the -# model remove the "{}" from the fixture names and add the columns immediately -# below each fixture, per the syntax in the comments below -# -one: {} -# column: value -# -two: {} -# column: value +# Empty fixtures - add test data as needed diff --git a/CAMAAR/test/fixtures/forms.yml b/CAMAAR/test/fixtures/forms.yml index d7a3329241..ad4a6ad5ea 100644 --- a/CAMAAR/test/fixtures/forms.yml +++ b/CAMAAR/test/fixtures/forms.yml @@ -1,11 +1,3 @@ # Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html -# This model initially had no columns defined. If you add columns to the -# model remove the "{}" from the fixture names and add the columns immediately -# below each fixture, per the syntax in the comments below -# -one: {} -# column: value -# -two: {} -# column: value +# Empty fixtures - add test data as needed diff --git a/CAMAAR/test/fixtures/question_sets.yml b/CAMAAR/test/fixtures/question_sets.yml index e9eef6faf0..5c983a90f4 100644 --- a/CAMAAR/test/fixtures/question_sets.yml +++ b/CAMAAR/test/fixtures/question_sets.yml @@ -1,7 +1,10 @@ # Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html one: - data: + data: [{"question": "What is your name?", "type": "text"}] two: - data: + data: [{"question": "What is your age?", "type": "number"}] + +three: + data: [{"question": "What is your email?", "type": "email"}] diff --git a/CAMAAR/test/fixtures/templates.yml b/CAMAAR/test/fixtures/templates.yml index d7a3329241..86f37758c6 100644 --- a/CAMAAR/test/fixtures/templates.yml +++ b/CAMAAR/test/fixtures/templates.yml @@ -1,11 +1,16 @@ # Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html -# This model initially had no columns defined. If you add columns to the -# model remove the "{}" from the fixture names and add the columns immediately -# below each fixture, per the syntax in the comments below -# -one: {} -# column: value -# -two: {} -# column: value +one: + name: Student Survey Template + admin: one + question_set: one + +two: + name: Course Feedback Template + admin: one + question_set: two + +three: + name: Registration Form Template + admin: one + question_set: three From 7eca653dab1663ba7ce1eb3b8cf0d02c676517ca Mon Sep 17 00:00:00 2001 From: Kitsai Date: Tue, 2 Dec 2025 10:19:53 -0300 Subject: [PATCH 036/151] controller --- CAMAAR/app/controllers/templates_controller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CAMAAR/app/controllers/templates_controller.rb b/CAMAAR/app/controllers/templates_controller.rb index 0ae6a696b0..f3649e9d75 100644 --- a/CAMAAR/app/controllers/templates_controller.rb +++ b/CAMAAR/app/controllers/templates_controller.rb @@ -1,6 +1,6 @@ class TemplatesController < ApplicationController before_action :require_admin - before_action :set_template, only: [:show, :edit, :update, :destroy] + before_action :set_template, only: [ :show, :edit, :update, :destroy ] def index @templates = current_admin.templates.includes(:question_set) @@ -47,7 +47,7 @@ def set_template end def template_params - params.require(:template).permit(:name, question_set_attributes: [:id, :data]) + params.require(:template).permit(:name, question_set_attributes: [ :id, :data ]) end def require_admin From 25d2582e7d12c3f134d95f3f0512a5d7988b2e66 Mon Sep 17 00:00:00 2001 From: Kitsai Date: Tue, 2 Dec 2025 12:27:00 -0300 Subject: [PATCH 037/151] navigation partial --- CAMAAR/app/assets/stylesheets/application.css | 13 +- .../stylesheets/components/navigation.css | 85 ++++++++++ .../stylesheets/components/page_structure.css | 40 +++++ .../assets/stylesheets/components/sidebar.css | 71 ++++++++ CAMAAR/app/assets/stylesheets/templates.css | 158 ++++++++++++++++++ CAMAAR/app/assets/stylesheets/variables.css | 67 ++++++++ .../controllers/sidebar_controller.js | 51 ++++++ CAMAAR/app/views/layouts/application.html.erb | 36 ++-- CAMAAR/app/views/shared/_navigation.html.erb | 20 +++ .../app/views/shared/_page_container.html.erb | 16 ++ CAMAAR/app/views/shared/_page_header.html.erb | 8 + CAMAAR/app/views/shared/_sidebar.html.erb | 58 +++++++ 12 files changed, 608 insertions(+), 15 deletions(-) create mode 100644 CAMAAR/app/assets/stylesheets/components/navigation.css create mode 100644 CAMAAR/app/assets/stylesheets/components/page_structure.css create mode 100644 CAMAAR/app/assets/stylesheets/components/sidebar.css create mode 100644 CAMAAR/app/assets/stylesheets/templates.css create mode 100644 CAMAAR/app/assets/stylesheets/variables.css create mode 100644 CAMAAR/app/javascript/controllers/sidebar_controller.js create mode 100644 CAMAAR/app/views/shared/_navigation.html.erb create mode 100644 CAMAAR/app/views/shared/_page_container.html.erb create mode 100644 CAMAAR/app/views/shared/_page_header.html.erb create mode 100644 CAMAAR/app/views/shared/_sidebar.html.erb diff --git a/CAMAAR/app/assets/stylesheets/application.css b/CAMAAR/app/assets/stylesheets/application.css index dc55c077b2..eb855a8982 100644 --- a/CAMAAR/app/assets/stylesheets/application.css +++ b/CAMAAR/app/assets/stylesheets/application.css @@ -9,6 +9,9 @@ * Consider organizing styles into separate files for maintainability. */ +/* CSS Variables */ +@import 'variables.css'; + /* Base styles */ * { margin: 0; @@ -22,6 +25,12 @@ body { -moz-osx-font-smoothing: grayscale; } -@import 'components/button.css' +/* Components */ +@import 'components/button.css'; +@import 'components/navigation.css'; +@import 'components/sidebar.css'; +@import 'components/page_structure.css'; -@import 'login.css' +/* Pages */ +@import 'login.css'; +@import 'templates.css'; diff --git a/CAMAAR/app/assets/stylesheets/components/navigation.css b/CAMAAR/app/assets/stylesheets/components/navigation.css new file mode 100644 index 0000000000..fa05c1ef14 --- /dev/null +++ b/CAMAAR/app/assets/stylesheets/components/navigation.css @@ -0,0 +1,85 @@ +.navbar { + background-color: var(--bg-white); + border-bottom: 1px solid var(--gray-200); + padding: var(--spacing-md) var(--spacing-lg); + display: flex; + justify-content: space-between; + align-items: center; + box-shadow: var(--shadow-sm); + position: sticky; + top: 0; + z-index: var(--z-dropdown); +} + +.navbar-left { + display: flex; + align-items: center; + gap: var(--spacing-md); +} + +.navbar-menu-btn { + background: none; + border: none; + padding: var(--spacing-sm); + cursor: pointer; + display: flex; + align-items: center; + justify-content: center; + border-radius: var(--radius-md); + color: var(--gray-700); + transition: all var(--transition-base); +} + +.navbar-menu-btn:hover { + background-color: var(--gray-100); + color: var(--gray-900); +} + +.navbar-title { + font-size: 20px; + font-weight: 600; + color: var(--gray-800); + margin: 0; +} + +.navbar-right { + display: flex; + align-items: center; + gap: var(--spacing-md); +} + +.user-avatar { + width: 40px; + height: 40px; + border-radius: var(--radius-full); + background-color: var(--primary-purple); + color: var(--white); + display: flex; + align-items: center; + justify-content: center; + font-weight: 600; + font-size: 16px; + cursor: pointer; + transition: all var(--transition-base); +} + +.user-avatar:hover { + background-color: var(--primary-purple-dark); + transform: scale(1.05); +} + +@media (max-width: 768px) { + .navbar { + padding: var(--spacing-md) var(--spacing-md); + } + + .navbar-title { + font-size: 18px; + } + + .user-avatar { + width: 36px; + height: 36px; + font-size: 14px; + } +} diff --git a/CAMAAR/app/assets/stylesheets/components/page_structure.css b/CAMAAR/app/assets/stylesheets/components/page_structure.css new file mode 100644 index 0000000000..c3b38a9f3b --- /dev/null +++ b/CAMAAR/app/assets/stylesheets/components/page_structure.css @@ -0,0 +1,40 @@ +.main-content { + min-height: 100vh; + background-color: var(--bg-secondary); +} + +.page-container { + max-width: 1200px; + margin: 0 auto; + padding: 32px 24px; +} + +.page-header { + display: flex; + justify-content: space-between; + align-items: center; + margin-bottom: 32px; +} + +.page-header h1 { + font-size: 32px; + font-weight: 600; + color: #1f2937; + margin: 0; +} + +.page-content { + background-color: transparent; +} + +@media (max-width: 640px) { + .page-header { + flex-direction: column; + gap: 16px; + align-items: flex-start; + } + + .page-header h1 { + font-size: 24px; + } +} diff --git a/CAMAAR/app/assets/stylesheets/components/sidebar.css b/CAMAAR/app/assets/stylesheets/components/sidebar.css new file mode 100644 index 0000000000..9d39d6724a --- /dev/null +++ b/CAMAAR/app/assets/stylesheets/components/sidebar.css @@ -0,0 +1,71 @@ +.sidebar-overlay { + display: none; +} + +.sidebar { + position: fixed; + top: 64px; + left: 0; + height: calc(100vh - 64px); + width: 280px; + background-color: var(--bg-white); + box-shadow: var(--shadow-xl); + z-index: 100; + transform: translateX(-280px); + transition: transform var(--transition-base); + display: flex; + flex-direction: column; +} + +.sidebar.active { + transform: translateX(0); +} + +body.sidebar-open { + overflow-x: hidden; +} + +body.sidebar-open .main-content { + margin-left: 280px; + transition: margin-left var(--transition-base); +} + +.sidebar-nav { + flex: 1; + padding: var(--spacing-lg); + display: flex; + flex-direction: column; + gap: var(--spacing-sm); +} + +.sidebar-item { + display: flex; + align-items: center; + gap: var(--spacing-md); + padding: var(--spacing-md); + color: var(--gray-700); + text-decoration: none; + border-radius: var(--radius-lg); + font-weight: 500; + transition: all var(--transition-base); +} + +.sidebar-item:hover { + background-color: var(--gray-100); + color: var(--gray-900); +} + +.sidebar-item.active { + background-color: var(--primary-purple-light); + color: var(--primary-purple); +} + +.sidebar-item svg { + flex-shrink: 0; +} + +@media (max-width: 768px) { + .sidebar { + width: 260px; + } +} diff --git a/CAMAAR/app/assets/stylesheets/templates.css b/CAMAAR/app/assets/stylesheets/templates.css new file mode 100644 index 0000000000..6e48b95780 --- /dev/null +++ b/CAMAAR/app/assets/stylesheets/templates.css @@ -0,0 +1,158 @@ +.templates-grid { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: var(--spacing-lg); + margin-bottom: var(--spacing-lg); +} + +@media (max-width: 1024px) { + .templates-grid { + grid-template-columns: repeat(2, 1fr); + } +} + +@media (max-width: 640px) { + .templates-grid { + grid-template-columns: 1fr; + } +} + +.template-card { + background: var(--bg-white); + border: 1px solid var(--gray-200); + border-radius: var(--radius-lg); + padding: 20px; + box-shadow: var(--shadow-md); + transition: transform var(--transition-base), box-shadow var(--transition-base); +} + +.template-card:hover { + transform: translateY(-2px); + box-shadow: var(--shadow-lg); +} + +.add-template-card { + display: flex; + align-items: center; + justify-content: center; + text-decoration: none; + cursor: pointer; +} + +.add-template-card:hover .add-template-icon svg { + stroke: var(--primary-purple); +} + +.add-template-icon { + display: flex; + align-items: center; + justify-content: center; + padding: 60px 0; +} + +.add-template-icon svg { + stroke: var(--gray-400); + transition: stroke var(--transition-base); +} + +.template-card-header { + margin-bottom: var(--spacing-md); + padding-bottom: var(--spacing-md); + border-bottom: 1px solid var(--gray-200); +} + +.template-card-header h3 { + font-size: 20px; + font-weight: 600; + color: var(--gray-800); + margin: 0; +} + +.template-card-body { + margin-bottom: 20px; + min-height: 60px; +} + +.template-questions-count { + color: var(--gray-500); + font-size: 14px; + margin: 0; +} + +.template-card-actions { + display: flex; + gap: var(--spacing-sm); + justify-content: flex-start; +} + +.btn-primary, .btn-secondary, .btn-danger { + padding: var(--spacing-sm) var(--spacing-md); + font-size: 14px; + font-weight: 500; + border-radius: var(--radius-md); + border: 1px solid transparent; + cursor: pointer; + transition: all var(--transition-base); + text-decoration: none; + display: inline-block; +} + +.btn-primary { + background-color: var(--info); + color: var(--white); +} + +.btn-primary:hover { + background-color: var(--info-dark); +} + +.btn-secondary { + background-color: var(--gray-500); + color: var(--white); +} + +.btn-secondary:hover { + background-color: var(--gray-600); +} + +.btn-danger { + background-color: var(--danger); + color: var(--white); +} + +.btn-danger:hover { + background-color: var(--danger-dark); +} + +.templates-empty { + text-align: center; + padding: 64px var(--spacing-lg); + background: var(--bg-secondary); + border-radius: var(--radius-lg); + border: 2px dashed var(--gray-300); +} + +.templates-empty p { + font-size: 18px; + color: var(--gray-500); + margin-bottom: var(--spacing-lg); +} + +.alert { + padding: var(--spacing-md); + margin-bottom: var(--spacing-lg); + border-radius: var(--radius-md); + font-size: 14px; +} + +.alert-success { + background-color: #d1fae5; + color: #065f46; + border: 1px solid #6ee7b7; +} + +.alert-danger { + background-color: #fee2e2; + color: #991b1b; + border: 1px solid #fca5a5; +} diff --git a/CAMAAR/app/assets/stylesheets/variables.css b/CAMAAR/app/assets/stylesheets/variables.css new file mode 100644 index 0000000000..214a63234e --- /dev/null +++ b/CAMAAR/app/assets/stylesheets/variables.css @@ -0,0 +1,67 @@ +:root { + /* Primary Colors */ + --primary-purple: #6C2365; + --primary-purple-light: rgba(108, 35, 101, 0.1); + --primary-purple-dark: #5a1d54; + --primary-green: #22C55E; + --primary-green-dark: #16a34a; + + /* Neutral Colors */ + --white: #ffffff; + --gray-50: #f9fafb; + --gray-100: #f3f4f6; + --gray-200: #e5e7eb; + --gray-300: #d1d5db; + --gray-400: #9ca3af; + --gray-500: #6b7280; + --gray-600: #4b5563; + --gray-700: #374151; + --gray-800: #1f2937; + --gray-900: #111827; + + /* Status Colors */ + --success: #22C55E; + --danger: #ef4444; + --danger-dark: #dc2626; + --warning: #f59e0b; + --info: #3b82f6; + --info-dark: #2563eb; + + /* Background Colors */ + --bg-primary: #f5f5f5; + --bg-secondary: #f9fafb; + --bg-white: #ffffff; + + /* Spacing */ + --spacing-xs: 4px; + --spacing-sm: 8px; + --spacing-md: 16px; + --spacing-lg: 24px; + --spacing-xl: 32px; + --spacing-2xl: 48px; + + /* Border Radius */ + --radius-sm: 4px; + --radius-md: 6px; + --radius-lg: 8px; + --radius-xl: 12px; + --radius-full: 9999px; + + /* Shadows */ + --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05); + --shadow-md: 0 1px 3px rgba(0, 0, 0, 0.1); + --shadow-lg: 0 4px 6px rgba(0, 0, 0, 0.1); + --shadow-xl: 0 10px 15px rgba(0, 0, 0, 0.1); + + /* Transitions */ + --transition-fast: 0.15s; + --transition-base: 0.2s; + --transition-slow: 0.3s; + + /* Z-index */ + --z-dropdown: 1000; + --z-sidebar: 1100; + --z-overlay: 1200; + --z-modal: 1300; + --z-toast: 1400; +} diff --git a/CAMAAR/app/javascript/controllers/sidebar_controller.js b/CAMAAR/app/javascript/controllers/sidebar_controller.js new file mode 100644 index 0000000000..1839db2cb6 --- /dev/null +++ b/CAMAAR/app/javascript/controllers/sidebar_controller.js @@ -0,0 +1,51 @@ +import { Controller } from "@hotwired/stimulus" + +export default class extends Controller { + static targets = ["sidebar", "overlay"] + + connect() { + // Bind event listeners + this.toggleMenu = this.toggleMenu.bind(this) + this.close = this.close.bind(this) + + // Add event listeners + const menuToggle = document.getElementById('menuToggle') + + if (menuToggle) { + menuToggle.addEventListener('click', this.toggleMenu) + } + + // Close sidebar on escape key + document.addEventListener('keydown', (e) => { + if (e.key === 'Escape') { + this.close() + } + }) + } + + disconnect() { + const menuToggle = document.getElementById('menuToggle') + + if (menuToggle) { + menuToggle.removeEventListener('click', this.toggleMenu) + } + } + + toggleMenu() { + const sidebar = document.getElementById('sidebar') + + if (sidebar) { + sidebar.classList.toggle('active') + document.body.classList.toggle('sidebar-open') + } + } + + close() { + const sidebar = document.getElementById('sidebar') + + if (sidebar) { + sidebar.classList.remove('active') + document.body.classList.remove('sidebar-open') + } + } +} diff --git a/CAMAAR/app/views/layouts/application.html.erb b/CAMAAR/app/views/layouts/application.html.erb index 3ae6cb1362..edfdbd9b4c 100644 --- a/CAMAAR/app/views/layouts/application.html.erb +++ b/CAMAAR/app/views/layouts/application.html.erb @@ -11,7 +11,10 @@ - + <%= yield :head %> @@ -27,19 +30,26 @@ <%= javascript_importmap_tags %> - - <% if flash[:notice] %> -
- <%= flash[:notice] %> -
+ + <% if logged_in? && !content_for?(:hide_navbar) %> + <%= render 'shared/sidebar' %> + <%= render 'shared/navigation' %> <% end %> - <% if flash[:alert] %> -
- <%= flash[:alert] %> -
- <% end %> - - <%= yield %> +
+ <% if flash[:notice] %> +
+ <%= flash[:notice] %> +
+ <% end %> + + <% if flash[:alert] %> +
+ <%= flash[:alert] %> +
+ <% end %> + + <%= yield %> +
diff --git a/CAMAAR/app/views/shared/_navigation.html.erb b/CAMAAR/app/views/shared/_navigation.html.erb new file mode 100644 index 0000000000..f8ff54ee59 --- /dev/null +++ b/CAMAAR/app/views/shared/_navigation.html.erb @@ -0,0 +1,20 @@ + diff --git a/CAMAAR/app/views/shared/_page_container.html.erb b/CAMAAR/app/views/shared/_page_container.html.erb new file mode 100644 index 0000000000..0bd2a89a3b --- /dev/null +++ b/CAMAAR/app/views/shared/_page_container.html.erb @@ -0,0 +1,16 @@ +<%# Usage: render 'shared/page_container', title: 'Page Title', button_text: 'Add New', button_path: new_item_path do %> +<%# Page content goes here %> +<%# end %> + +
+ <% if local_assigns[:title] %> + <%= render "shared/page_header", + title: local_assigns[:title], + button_text: local_assigns[:button_text], + button_path: local_assigns[:button_path] %> + <% end %> + +
+ <%= yield %> +
+
diff --git a/CAMAAR/app/views/shared/_page_header.html.erb b/CAMAAR/app/views/shared/_page_header.html.erb new file mode 100644 index 0000000000..f784a8d3fc --- /dev/null +++ b/CAMAAR/app/views/shared/_page_header.html.erb @@ -0,0 +1,8 @@ +<%# Usage: render 'shared/page_header', title: 'Page Title', button_text: 'Add New', button_path: new_item_path %> + + diff --git a/CAMAAR/app/views/shared/_sidebar.html.erb b/CAMAAR/app/views/shared/_sidebar.html.erb new file mode 100644 index 0000000000..84215296da --- /dev/null +++ b/CAMAAR/app/views/shared/_sidebar.html.erb @@ -0,0 +1,58 @@ + + + From a89fed0dabfc82db670fc0b7cd149dafee7b1ce1 Mon Sep 17 00:00:00 2001 From: Kitsai Date: Tue, 2 Dec 2025 12:39:02 -0300 Subject: [PATCH 038/151] Template view page --- CAMAAR/app/assets/stylesheets/templates.css | 71 +++++++++------------ CAMAAR/app/views/shared/_sidebar.html.erb | 1 + CAMAAR/app/views/templates/index.html.erb | 69 ++++++++++++++++++++ CAMAAR/db/seeds.rb | 63 ++++++++++++++++-- 4 files changed, 157 insertions(+), 47 deletions(-) create mode 100644 CAMAAR/app/views/templates/index.html.erb diff --git a/CAMAAR/app/assets/stylesheets/templates.css b/CAMAAR/app/assets/stylesheets/templates.css index 6e48b95780..fcc1d5a4c2 100644 --- a/CAMAAR/app/assets/stylesheets/templates.css +++ b/CAMAAR/app/assets/stylesheets/templates.css @@ -1,7 +1,7 @@ .templates-grid { display: grid; grid-template-columns: repeat(3, 1fr); - gap: var(--spacing-lg); + gap: 24px; margin-bottom: var(--spacing-lg); } @@ -21,7 +21,7 @@ background: var(--bg-white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); - padding: 20px; + padding: 24px; box-shadow: var(--shadow-md); transition: transform var(--transition-base), box-shadow var(--transition-base); } @@ -37,6 +37,7 @@ justify-content: center; text-decoration: none; cursor: pointer; + min-height: auto; } .add-template-card:hover .add-template-icon svg { @@ -47,7 +48,6 @@ display: flex; align-items: center; justify-content: center; - padding: 60px 0; } .add-template-icon svg { @@ -55,73 +55,62 @@ transition: stroke var(--transition-base); } -.template-card-header { - margin-bottom: var(--spacing-md); - padding-bottom: var(--spacing-md); - border-bottom: 1px solid var(--gray-200); +.template-card-content { + display: flex; + justify-content: space-between; + align-items: center; + gap: var(--spacing-md); } -.template-card-header h3 { - font-size: 20px; +.template-card-title { + font-size: 18px; font-weight: 600; color: var(--gray-800); margin: 0; -} - -.template-card-body { - margin-bottom: 20px; - min-height: 60px; -} - -.template-questions-count { - color: var(--gray-500); - font-size: 14px; - margin: 0; + flex: 1; } .template-card-actions { display: flex; gap: var(--spacing-sm); - justify-content: flex-start; + align-items: center; } -.btn-primary, .btn-secondary, .btn-danger { - padding: var(--spacing-sm) var(--spacing-md); - font-size: 14px; - font-weight: 500; +.btn-icon { + padding: var(--spacing-sm); + border: none; border-radius: var(--radius-md); - border: 1px solid transparent; cursor: pointer; transition: all var(--transition-base); text-decoration: none; - display: inline-block; + display: flex; + align-items: center; + justify-content: center; + background: transparent; } -.btn-primary { - background-color: var(--info); - color: var(--white); +.btn-icon:hover { + background-color: var(--gray-100); } -.btn-primary:hover { - background-color: var(--info-dark); +.btn-edit svg { + stroke: var(--gray-600); } -.btn-secondary { - background-color: var(--gray-500); - color: var(--white); +.btn-edit:hover svg { + stroke: var(--info); } -.btn-secondary:hover { - background-color: var(--gray-600); +.btn-delete svg { + stroke: var(--gray-600); } -.btn-danger { +.btn-delete:hover { background-color: var(--danger); - color: var(--white); } -.btn-danger:hover { - background-color: var(--danger-dark); +.btn-delete:hover svg { + stroke: var(--white); } .templates-empty { diff --git a/CAMAAR/app/views/shared/_sidebar.html.erb b/CAMAAR/app/views/shared/_sidebar.html.erb index 84215296da..576d4cecd1 100644 --- a/CAMAAR/app/views/shared/_sidebar.html.erb +++ b/CAMAAR/app/views/shared/_sidebar.html.erb @@ -2,6 +2,7 @@
+ + <%# Option Template (hidden, used for cloning) %> + <% end %> diff --git a/CAMAAR/app/views/templates/index.html.erb b/CAMAAR/app/views/templates/index.html.erb index 4314a7b33a..d23684194d 100644 --- a/CAMAAR/app/views/templates/index.html.erb +++ b/CAMAAR/app/views/templates/index.html.erb @@ -85,16 +85,34 @@
- +
- +
+
<%= link_to "Resultados", forms_path, class: "btn-gerenciamento" %> + \ No newline at end of file From 08148430911e333c10c1950f9c9beb28c3c0181a Mon Sep 17 00:00:00 2001 From: Marcolino5 <102527399+Marcolino5@users.noreply.github.com> Date: Fri, 12 Dec 2025 20:22:51 -0300 Subject: [PATCH 071/151] changed sidebar so it only has two options --- CAMAAR/app/views/shared/_sidebar.html.erb | 28 ----------------------- 1 file changed, 28 deletions(-) diff --git a/CAMAAR/app/views/shared/_sidebar.html.erb b/CAMAAR/app/views/shared/_sidebar.html.erb index c2d35f4264..148edf0976 100644 --- a/CAMAAR/app/views/shared/_sidebar.html.erb +++ b/CAMAAR/app/views/shared/_sidebar.html.erb @@ -5,20 +5,6 @@ <%# deixar apenas Gerenciamento quando implementado %> <% if admin? %> - <%= link_to templates_path, class: "sidebar-item #{current_page?(templates_path) ? 'active' : ''}" do %> - - - - - Templates - <% end %> <%= link_to avaliacoes_path, class: "sidebar-item #{current_page?(avaliacoes_path) ? 'active' : ''}" do %> Avaliações <% end %> - <%= link_to forms_path, class: "sidebar-item #{current_page?(forms_path) ? 'active' : ''}" do %> - - - - Resultados - <% end %> - <%= link_to gerenciamento_path, class: "sidebar-item #{current_page?(gerenciamento_path) ? 'active' : ''}" do %> Date: Fri, 12 Dec 2025 23:18:48 -0300 Subject: [PATCH 072/151] added css for modal in gerenciamento --- .../app/assets/stylesheets/gerenciamento.css | 96 +++++++++++++++++++ 1 file changed, 96 insertions(+) diff --git a/CAMAAR/app/assets/stylesheets/gerenciamento.css b/CAMAAR/app/assets/stylesheets/gerenciamento.css index d326a79341..9880e199e8 100644 --- a/CAMAAR/app/assets/stylesheets/gerenciamento.css +++ b/CAMAAR/app/assets/stylesheets/gerenciamento.css @@ -32,11 +32,107 @@ background-color: var(--primary-green); color: white; border-radius: 6px; + border: none; text-decoration: none; font-size: 16px; transition: background 0.2s; + cursor: pointer; } .btn-gerenciamento:hover { background-color: #86EFAC; +} + +/* Modal CSS */ + +.modal-box { + width: 1023px; + height: 772px; + background: white; + padding: 20px; + border-radius: 10px; + max-height: 80vh; + display: flex; + align-items: center; + flex-direction: column; + gap: 80px; +} + +.green-checkbox { + accent-color: #16a34a; + width: 16px; + height: 16px; + cursor: pointer; +} + +.template-info { + display: flex; + flex-direction: column; + gap: 8px; + width: 530px; +} + +.template-info-header { + font-weight: bold; + margin-bottom: 4px; + color: #828282; + border-bottom: 1px solid lightgray; + display: flex; + width: 500px; + margin-left: auto; +} + +.info-item { + display: flex; + align-items: center; + gap: 12px; + padding: 12px 0; +} + +.info-item-content { + flex: 1; +} + +.item-content { + display: flex; +} + +.divider { + margin-top: 8px; /* distance from content */ + height: 1px; + background-color: lightgray; + width: 100%; +} + +.spacer { + display: flex; + margin-left: auto; + gap: 40px; +} + +.modal-footer { + margin-top: auto; + display: flex; + justify-content: flex-end; + gap: 12px; + padding-top: 10px; +} + +.field-group { + display: flex; + gap: 20px; +} + + +.custom-select { + width: 163px; + height: 25px; + border-radius: 8px; + border-width: 1px; + gap: 16px; + background: white; + border-color: lightgray; + color: gray; + padding-left: 16px; + padding-right: 16px; } \ No newline at end of file From e515c31ada222bbc23f1e4797d0da0e2d5bfc98b Mon Sep 17 00:00:00 2001 From: Marcolino5 <102527399+Marcolino5@users.noreply.github.com> Date: Fri, 12 Dec 2025 23:19:43 -0300 Subject: [PATCH 073/151] changed form modal for nicer front --- .../views/gerenciamento/_form_modal.html.erb | 62 +++++++++++++++++-- 1 file changed, 57 insertions(+), 5 deletions(-) diff --git a/CAMAAR/app/views/gerenciamento/_form_modal.html.erb b/CAMAAR/app/views/gerenciamento/_form_modal.html.erb index 16428e2f0b..8ad2712392 100644 --- a/CAMAAR/app/views/gerenciamento/_form_modal.html.erb +++ b/CAMAAR/app/views/gerenciamento/_form_modal.html.erb @@ -4,13 +4,65 @@ data-action="click->modal#closeOnOverlay"> \n\n \n \n\n" to include "Passwords set successfully" + Diff: + @@ -1 +1,104 @@ + -Passwords set successfully + + + + + + + + Camaar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + Password set successfully + +
+ + + + + + + + + +
+ + + + + # ./spec/requests/passwords_spec.rb:69:in 'block (4 levels) in ' + + 6) Templates POST /templates with valid parameters creates a new template + Failure/Error: + expect { + post templates_path, params: { template: valid_attributes } + }.to change(Template, :count).by(1) + + expected `Template.count` to have changed by 1, but was changed by 0 + # ./spec/requests/templates_spec.rb:55:in 'block (4 levels) in ' + + 7) Templates POST /templates with valid parameters creates a new question_set + Failure/Error: + expect { + post templates_path, params: { template: valid_attributes } + }.to change(QuestionSet, :count).by(1) + + expected `QuestionSet.count` to have changed by 1, but was changed by 0 + # ./spec/requests/templates_spec.rb:61:in 'block (4 levels) in ' + + 8) Templates POST /templates with valid parameters redirects to templates index + Failure/Error: expect(response).to redirect_to(templates_path) + Expected response to be a <3XX: redirect>, but was a <422: Unprocessable Content> + # ./spec/requests/templates_spec.rb:66:in 'block (4 levels) in ' + + 9) Templates POST /templates with valid parameters shows success message + Failure/Error: follow_redirect! + + RuntimeError: + not a redirect! 422 Unprocessable Content + # ./spec/requests/templates_spec.rb:71:in 'block (4 levels) in ' + + 10) Templates POST /templates with invalid parameters (no name) shows error message + Failure/Error: expect(response.body).to include("can't be blank") + + expected "\n\n \n Camaar\n \n\n\n Back\n\n\n \n \n\n" to include "can't be blank" + Diff: + @@ -1 +1,196 @@ + -can't be blank + + + + + + + + Camaar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + Successfully logged in + +
+ + + + + +
+ +

New Template

+ +
+ +
+ +
+ +
+ +
+ +
+ + + +
+ +
+ +
+ + + +
+ + + +
+ +
+ + + + + + + +
+ + + +
+ +
+ + + + Back + +
+ + + +
+ + + + + # ./spec/requests/templates_spec.rb:90:in 'block (4 levels) in ' + + 11) Templates POST /templates with invalid parameters (no questions) shows error message about questions + Failure/Error: expect(response.body).to include("must have at least one question") + + expected "\n\n \n Camaar\n \n\n\n Back\n\n\n \n \n\n" to include "must have at least one question" + Diff: + @@ -1 +1,196 @@ + -must have at least one question + + + + + + + + Camaar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + Successfully logged in + +
+ + + + + +
+ +

New Template

+ +
+ +
+ +
+ + + + + +
+ + + +
+ +
+ +
+ + + +
+ + + +
+ +
+ + + + + + + +
+ + + +
+ +
+ + + + Back + +
+ + + +
+ + + + + # ./spec/requests/templates_spec.rb:103:in 'block (4 levels) in ' + +Finished in 6.67 seconds (files took 4.23 seconds to load) +154 examples, 11 failures + +Failed examples: + +rspec ./spec/models/question_set_spec.rb:60 # QuestionSet copy-on-write behavior when question_set is used by forms creates a new question_set instead of updating +rspec ./spec/requests/forms_spec.rb:13 # Forms POST /forms when form is created successfully creates a new form and assigns it to classes +rspec ./spec/requests/forms_spec.rb:31 # Forms POST /forms when no template is selected returns an error message +rspec ./spec/requests/forms_spec.rb:46 # Forms POST /forms when no classes are selected returns an error message +rspec ./spec/requests/passwords_spec.rb:66 # Passwords POST /set_password with matching passwords shows success message +rspec ./spec/requests/templates_spec.rb:52 # Templates POST /templates with valid parameters creates a new template +rspec ./spec/requests/templates_spec.rb:58 # Templates POST /templates with valid parameters creates a new question_set +rspec ./spec/requests/templates_spec.rb:64 # Templates POST /templates with valid parameters redirects to templates index +rspec ./spec/requests/templates_spec.rb:69 # Templates POST /templates with valid parameters shows success message +rspec ./spec/requests/templates_spec.rb:88 # Templates POST /templates with invalid parameters (no name) shows error message +rspec ./spec/requests/templates_spec.rb:101 # Templates POST /templates with invalid parameters (no questions) shows error message about questions + +Coverage report generated for RSpec to /home/Kitsai/coding/ruby/CAMAAR/CAMAAR/coverage. +Line Coverage: 85.0% (238 / 280) From 361c92497aaad2a241b1aafbd75a7b6264811e53 Mon Sep 17 00:00:00 2001 From: Kitsai Date: Fri, 12 Dec 2025 23:51:27 -0300 Subject: [PATCH 075/151] login and password setup refactor --- .../step_definitions/password_setup.rb | 2 +- CAMAAR/features/user_password_setup.feature | 2 +- CAMAAR/spec/helpers/sessions_helper_spec.rb | 97 +++++++++++++++++++ CAMAAR/spec/requests/passwords_spec.rb | 2 +- CAMAAR/spec/requests/sessions_spec.rb | 56 +++++++++++ 5 files changed, 156 insertions(+), 3 deletions(-) create mode 100644 CAMAAR/spec/helpers/sessions_helper_spec.rb diff --git a/CAMAAR/features/step_definitions/password_setup.rb b/CAMAAR/features/step_definitions/password_setup.rb index 7287fbaebe..b9d560006f 100644 --- a/CAMAAR/features/step_definitions/password_setup.rb +++ b/CAMAAR/features/step_definitions/password_setup.rb @@ -34,7 +34,7 @@ #### -Then("I should see a success message") do +Then("I should see a password created success message") do assert page.has_content?('Password set successfully') end diff --git a/CAMAAR/features/user_password_setup.feature b/CAMAAR/features/user_password_setup.feature index 86a35c05da..84c087da6f 100644 --- a/CAMAAR/features/user_password_setup.feature +++ b/CAMAAR/features/user_password_setup.feature @@ -5,7 +5,7 @@ Feature: User Password Setup When I click on the registration link And I enter a valid password And I confirm the password correctly - Then I should see a success message + Then I should see a password created success message And I should be able to log in with my credentials Scenario: Passwords do not match diff --git a/CAMAAR/spec/helpers/sessions_helper_spec.rb b/CAMAAR/spec/helpers/sessions_helper_spec.rb new file mode 100644 index 0000000000..37597b508e --- /dev/null +++ b/CAMAAR/spec/helpers/sessions_helper_spec.rb @@ -0,0 +1,97 @@ +require 'rails_helper' + +RSpec.describe SessionsHelper, type: :helper do + describe "#current_user" do + context "when user is logged in" do + let(:user) { create(:user) } + + it "returns the current user" do + session[:user_id] = user.id + expect(helper.current_user).to eq(user) + end + + it "memoizes the current user" do + session[:user_id] = user.id + expect(User).to receive(:find_by).once.and_return(user) + 2.times { helper.current_user } + end + end + + context "when user is not logged in" do + it "returns nil" do + expect(helper.current_user).to be_nil + end + end + end + + describe "#logged_in?" do + context "when user is logged in" do + let(:user) { create(:user) } + + it "returns true" do + session[:user_id] = user.id + expect(helper.logged_in?).to be true + end + end + + context "when user is not logged in" do + it "returns false" do + expect(helper.logged_in?).to be false + end + end + end + + describe "#admin?" do + context "when current user is an admin" do + let(:admin_user) { create(:user, :admin) } + + it "returns true" do + session[:user_id] = admin_user.id + expect(helper.admin?).to be true + end + end + + context "when current user is not an admin" do + let(:user) { create(:user) } + + it "returns false" do + session[:user_id] = user.id + expect(helper.admin?).to be false + end + end + + context "when user is not logged in" do + it "returns false" do + expect(helper.admin?).to be false + end + end + end + + describe "#log_in" do + let(:user) { create(:user) } + + it "sets the user_id in session" do + helper.log_in(user) + expect(session[:user_id]).to eq(user.id) + end + end + + describe "#log_out" do + let(:user) { create(:user) } + + before do + session[:user_id] = user.id + helper.instance_variable_set(:@current_user, user) + end + + it "deletes the user_id from session" do + helper.log_out + expect(session[:user_id]).to be_nil + end + + it "clears the current_user instance variable" do + helper.log_out + expect(helper.instance_variable_get(:@current_user)).to be_nil + end + end +end diff --git a/CAMAAR/spec/requests/passwords_spec.rb b/CAMAAR/spec/requests/passwords_spec.rb index 2072c02a1d..ad4ca790fe 100644 --- a/CAMAAR/spec/requests/passwords_spec.rb +++ b/CAMAAR/spec/requests/passwords_spec.rb @@ -66,7 +66,7 @@ it "shows success message" do post set_password_path, params: valid_params follow_redirect! - expect(response.body).to include("Passwords set successfully") + expect(response.body).to include("Password set successfully") end end diff --git a/CAMAAR/spec/requests/sessions_spec.rb b/CAMAAR/spec/requests/sessions_spec.rb index 9224528215..8dea63418e 100644 --- a/CAMAAR/spec/requests/sessions_spec.rb +++ b/CAMAAR/spec/requests/sessions_spec.rb @@ -132,5 +132,61 @@ follow_redirect! expect(response.body).to include("Gerenciamento") end + + it "redirects admin to avaliacoes path after login" do + post login_path, params: { + email: admin_user.email, + password: "password123" + } + expect(response).to redirect_to(avaliacoes_path) + end + end + + describe "GET /login when already logged in" do + context "as regular user" do + let(:user) { create(:user) } + + it "redirects to avaliacoes path" do + post login_path, params: { + email: user.email, + password: "password123" + } + get login_path + expect(response).to redirect_to(avaliacoes_path) + end + + it "shows already logged in message" do + post login_path, params: { + email: user.email, + password: "password123" + } + get login_path + follow_redirect! + expect(response.body).to include("You are already logged in") + end + end + + context "as admin user" do + let(:admin_user) { create(:user, :admin) } + + it "redirects to forms path" do + post login_path, params: { + email: admin_user.email, + password: "password123" + } + get login_path + expect(response).to redirect_to(forms_path) + end + + it "shows already logged in message" do + post login_path, params: { + email: admin_user.email, + password: "password123" + } + get login_path + follow_redirect! + expect(response.body).to include("You are already logged in") + end + end end end From c8bb478e05579f6f19467721446abfa8b0632141 Mon Sep 17 00:00:00 2001 From: Marcolino5 <102527399+Marcolino5@users.noreply.github.com> Date: Sat, 13 Dec 2025 00:14:33 -0300 Subject: [PATCH 076/151] gerenciamento controller finds templates --- .../app/controllers/gerenciamento_controller.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CAMAAR/app/controllers/gerenciamento_controller.rb b/CAMAAR/app/controllers/gerenciamento_controller.rb index 308b779d07..ad10936291 100644 --- a/CAMAAR/app/controllers/gerenciamento_controller.rb +++ b/CAMAAR/app/controllers/gerenciamento_controller.rb @@ -1,6 +1,21 @@ class GerenciamentoController < ApplicationController + before_action :require_admin + def index + @templates = current_admin.templates.includes(:question_set) @template = Template.new end + private + + def require_admin + unless current_user&.admin? + redirect_to root_path, alert: "Access denied. Admin privileges required." + end + end + + def current_admin + @current_admin ||= current_user&.admin + end + end From 36eed99fa7d97b740b974404fc13423a598ab5bc Mon Sep 17 00:00:00 2001 From: Marcolino5 <102527399+Marcolino5@users.noreply.github.com> Date: Sat, 13 Dec 2025 00:15:38 -0300 Subject: [PATCH 077/151] small dropbox styling --- CAMAAR/app/assets/stylesheets/gerenciamento.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/CAMAAR/app/assets/stylesheets/gerenciamento.css b/CAMAAR/app/assets/stylesheets/gerenciamento.css index 9880e199e8..a0dbbdbadc 100644 --- a/CAMAAR/app/assets/stylesheets/gerenciamento.css +++ b/CAMAAR/app/assets/stylesheets/gerenciamento.css @@ -133,6 +133,10 @@ background: white; border-color: lightgray; color: gray; - padding-left: 16px; - padding-right: 16px; + outline:none; +} + +.custom-select:focus { + border-color: #16a34a; + border-width: 2px; } \ No newline at end of file From a6e5d3951b677c598955c0f2c340709fbbe23aa0 Mon Sep 17 00:00:00 2001 From: Marcolino5 <102527399+Marcolino5@users.noreply.github.com> Date: Sat, 13 Dec 2025 00:16:36 -0300 Subject: [PATCH 078/151] modal now gathers templates --- CAMAAR/app/views/gerenciamento/_form_modal.html.erb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CAMAAR/app/views/gerenciamento/_form_modal.html.erb b/CAMAAR/app/views/gerenciamento/_form_modal.html.erb index 8ad2712392..0da613eb01 100644 --- a/CAMAAR/app/views/gerenciamento/_form_modal.html.erb +++ b/CAMAAR/app/views/gerenciamento/_form_modal.html.erb @@ -15,6 +15,12 @@ class="custom-select" > + + <% @templates.each do |template| %> + + <% end %> From 79b9fd31adcc9e5498a9a4730f74d7ea82aec533 Mon Sep 17 00:00:00 2001 From: Marcolino5 <102527399+Marcolino5@users.noreply.github.com> Date: Sat, 13 Dec 2025 00:43:48 -0300 Subject: [PATCH 079/151] fixed modal centering and size --- .../app/assets/stylesheets/gerenciamento.css | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/CAMAAR/app/assets/stylesheets/gerenciamento.css b/CAMAAR/app/assets/stylesheets/gerenciamento.css index a0dbbdbadc..e6b740d92d 100644 --- a/CAMAAR/app/assets/stylesheets/gerenciamento.css +++ b/CAMAAR/app/assets/stylesheets/gerenciamento.css @@ -45,9 +45,23 @@ /* Modal CSS */ +.form-modal { + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%) scale(0.9); + z-index: 1300; + opacity: 0; + visibility: hidden; + transition: all var(--transition-base); + max-width: 763px; + width: 90%; + max-height: 90vh; +} + .modal-box { - width: 1023px; - height: 772px; + width: 763px; + height: 545px; background: white; padding: 20px; border-radius: 10px; From 617ba0a8ee736c963e2f11054839d7e45d8d7560 Mon Sep 17 00:00:00 2001 From: Marcolino5 <102527399+Marcolino5@users.noreply.github.com> Date: Sat, 13 Dec 2025 00:44:49 -0300 Subject: [PATCH 080/151] fixed modal centering and size --- CAMAAR/app/views/gerenciamento/_form_modal.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CAMAAR/app/views/gerenciamento/_form_modal.html.erb b/CAMAAR/app/views/gerenciamento/_form_modal.html.erb index 0da613eb01..98869324db 100644 --- a/CAMAAR/app/views/gerenciamento/_form_modal.html.erb +++ b/CAMAAR/app/views/gerenciamento/_form_modal.html.erb @@ -3,7 +3,7 @@ data-modal-target="overlay" data-action="click->modal#closeOnOverlay"> -