From d7c36d360b2df49e2f6893f51f25f62323947018 Mon Sep 17 00:00:00 2001 From: Brian Kim Date: Tue, 12 Nov 2024 23:19:49 +0000 Subject: [PATCH 01/15] install devise and add root --- Gemfile | 2 + app/controllers/home_controller.rb | 5 + app/models/user.rb | 24 ++ app/views/devise/confirmations/new.html.erb | 20 ++ .../mailer/confirmation_instructions.html.erb | 5 + .../devise/mailer/email_changed.html.erb | 7 + .../devise/mailer/password_change.html.erb | 3 + .../reset_password_instructions.html.erb | 8 + .../mailer/unlock_instructions.html.erb | 7 + app/views/devise/passwords/edit.html.erb | 27 ++ app/views/devise/passwords/new.html.erb | 18 + app/views/devise/registrations/edit.html.erb | 35 ++ app/views/devise/registrations/new.html.erb | 25 ++ app/views/devise/sessions/new.html.erb | 20 ++ .../devise/shared/_error_messages.html.erb | 15 + app/views/devise/shared/_links.html.erb | 25 ++ app/views/devise/unlocks/new.html.erb | 19 ++ app/views/layouts/application.html.erb | 2 + config/initializers/devise.rb | 313 ++++++++++++++++++ config/locales/devise.en.yml | 65 ++++ config/routes.rb | 3 + .../20241112231651_devise_create_users.rb | 44 +++ db/schema.rb | 14 +- 23 files changed, 705 insertions(+), 1 deletion(-) create mode 100644 app/controllers/home_controller.rb create mode 100644 app/models/user.rb create mode 100644 app/views/devise/confirmations/new.html.erb create mode 100644 app/views/devise/mailer/confirmation_instructions.html.erb create mode 100644 app/views/devise/mailer/email_changed.html.erb create mode 100644 app/views/devise/mailer/password_change.html.erb create mode 100644 app/views/devise/mailer/reset_password_instructions.html.erb create mode 100644 app/views/devise/mailer/unlock_instructions.html.erb create mode 100644 app/views/devise/passwords/edit.html.erb create mode 100644 app/views/devise/passwords/new.html.erb create mode 100644 app/views/devise/registrations/edit.html.erb create mode 100644 app/views/devise/registrations/new.html.erb create mode 100644 app/views/devise/sessions/new.html.erb create mode 100644 app/views/devise/shared/_error_messages.html.erb create mode 100644 app/views/devise/shared/_links.html.erb create mode 100644 app/views/devise/unlocks/new.html.erb create mode 100644 config/initializers/devise.rb create mode 100644 config/locales/devise.en.yml create mode 100644 db/migrate/20241112231651_devise_create_users.rb diff --git a/Gemfile b/Gemfile index 1bd5c98af..ae4a2aeac 100644 --- a/Gemfile +++ b/Gemfile @@ -6,6 +6,8 @@ ruby "3.2.1" # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main" gem "rails", "~> 7.1.3", ">= 7.1.3.2" +gem "devise" + # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails] gem "sprockets-rails" diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb new file mode 100644 index 000000000..5dd82a893 --- /dev/null +++ b/app/controllers/home_controller.rb @@ -0,0 +1,5 @@ +class HomeController < ApplicationController + def index + render "layouts/application" + end +end diff --git a/app/models/user.rb b/app/models/user.rb new file mode 100644 index 000000000..cd6994f46 --- /dev/null +++ b/app/models/user.rb @@ -0,0 +1,24 @@ +# == Schema Information +# +# Table name: users +# +# id :bigint not null, primary key +# email :string default(""), not null +# encrypted_password :string default(""), not null +# remember_created_at :datetime +# reset_password_sent_at :datetime +# reset_password_token :string +# created_at :datetime not null +# updated_at :datetime not null +# +# Indexes +# +# index_users_on_email (email) UNIQUE +# index_users_on_reset_password_token (reset_password_token) UNIQUE +# +class User < ApplicationRecord + # Include default devise modules. Others available are: + # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable + devise :database_authenticatable, :registerable, + :recoverable, :rememberable, :validatable +end diff --git a/app/views/devise/confirmations/new.html.erb b/app/views/devise/confirmations/new.html.erb new file mode 100644 index 000000000..f7b4a65c5 --- /dev/null +++ b/app/views/devise/confirmations/new.html.erb @@ -0,0 +1,20 @@ +

Resend confirmation instructions

+ +<%= simple_form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f| %> + <%= f.error_notification %> + <%= f.full_error :confirmation_token %> + +
+ <%= f.input :email, + required: true, + autofocus: true, + value: (resource.pending_reconfirmation? ? resource.unconfirmed_email : resource.email), + input_html: { autocomplete: "email" } %> +
+ +
+ <%= f.button :submit, "Resend confirmation instructions" %> +
+<% end %> + +<%= render "devise/shared/links" %> diff --git a/app/views/devise/mailer/confirmation_instructions.html.erb b/app/views/devise/mailer/confirmation_instructions.html.erb new file mode 100644 index 000000000..dc55f64f6 --- /dev/null +++ b/app/views/devise/mailer/confirmation_instructions.html.erb @@ -0,0 +1,5 @@ +

Welcome <%= @email %>!

+ +

You can confirm your account email through the link below:

+ +

<%= link_to 'Confirm my account', confirmation_url(@resource, confirmation_token: @token) %>

diff --git a/app/views/devise/mailer/email_changed.html.erb b/app/views/devise/mailer/email_changed.html.erb new file mode 100644 index 000000000..32f4ba803 --- /dev/null +++ b/app/views/devise/mailer/email_changed.html.erb @@ -0,0 +1,7 @@ +

Hello <%= @email %>!

+ +<% if @resource.try(:unconfirmed_email?) %> +

We're contacting you to notify you that your email is being changed to <%= @resource.unconfirmed_email %>.

+<% else %> +

We're contacting you to notify you that your email has been changed to <%= @resource.email %>.

+<% end %> diff --git a/app/views/devise/mailer/password_change.html.erb b/app/views/devise/mailer/password_change.html.erb new file mode 100644 index 000000000..b41daf476 --- /dev/null +++ b/app/views/devise/mailer/password_change.html.erb @@ -0,0 +1,3 @@ +

Hello <%= @resource.email %>!

+ +

We're contacting you to notify you that your password has been changed.

diff --git a/app/views/devise/mailer/reset_password_instructions.html.erb b/app/views/devise/mailer/reset_password_instructions.html.erb new file mode 100644 index 000000000..f667dc12f --- /dev/null +++ b/app/views/devise/mailer/reset_password_instructions.html.erb @@ -0,0 +1,8 @@ +

Hello <%= @resource.email %>!

+ +

Someone has requested a link to change your password. You can do this through the link below.

+ +

<%= link_to 'Change my password', edit_password_url(@resource, reset_password_token: @token) %>

+ +

If you didn't request this, please ignore this email.

+

Your password won't change until you access the link above and create a new one.

diff --git a/app/views/devise/mailer/unlock_instructions.html.erb b/app/views/devise/mailer/unlock_instructions.html.erb new file mode 100644 index 000000000..41e148bf2 --- /dev/null +++ b/app/views/devise/mailer/unlock_instructions.html.erb @@ -0,0 +1,7 @@ +

Hello <%= @resource.email %>!

+ +

Your account has been locked due to an excessive number of unsuccessful sign in attempts.

+ +

Click the link below to unlock your account:

+ +

<%= link_to 'Unlock my account', unlock_url(@resource, unlock_token: @token) %>

diff --git a/app/views/devise/passwords/edit.html.erb b/app/views/devise/passwords/edit.html.erb new file mode 100644 index 000000000..591cd8c85 --- /dev/null +++ b/app/views/devise/passwords/edit.html.erb @@ -0,0 +1,27 @@ +

Change your password

+ +<%= simple_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f| %> + <%= f.error_notification %> + + <%= f.input :reset_password_token, as: :hidden %> + <%= f.full_error :reset_password_token %> + +
+ <%= f.input :password, + label: "New password", + required: true, + autofocus: true, + hint: ("#{@minimum_password_length} characters minimum" if @minimum_password_length), + input_html: { autocomplete: "new-password" } %> + <%= f.input :password_confirmation, + label: "Confirm your new password", + required: true, + input_html: { autocomplete: "new-password" } %> +
+ +
+ <%= f.button :submit, "Change my password" %> +
+<% end %> + +<%= render "devise/shared/links" %> diff --git a/app/views/devise/passwords/new.html.erb b/app/views/devise/passwords/new.html.erb new file mode 100644 index 000000000..01ce0b8b9 --- /dev/null +++ b/app/views/devise/passwords/new.html.erb @@ -0,0 +1,18 @@ +

Forgot your password?

+ +<%= simple_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f| %> + <%= f.error_notification %> + +
+ <%= f.input :email, + required: true, + autofocus: true, + input_html: { autocomplete: "email" } %> +
+ +
+ <%= f.button :submit, "Send me reset password instructions" %> +
+<% end %> + +<%= render "devise/shared/links" %> diff --git a/app/views/devise/registrations/edit.html.erb b/app/views/devise/registrations/edit.html.erb new file mode 100644 index 000000000..b3c0089ad --- /dev/null +++ b/app/views/devise/registrations/edit.html.erb @@ -0,0 +1,35 @@ +

Edit <%= resource_name.to_s.humanize %>

+ +<%= simple_form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| %> + <%= f.error_notification %> + +
+ <%= f.input :email, required: true, autofocus: true %> + + <% if devise_mapping.confirmable? && resource.pending_reconfirmation? %> +

Currently waiting confirmation for: <%= resource.unconfirmed_email %>

+ <% end %> + + <%= f.input :password, + hint: "leave it blank if you don't want to change it", + required: false, + input_html: { autocomplete: "new-password" } %> + <%= f.input :password_confirmation, + required: false, + input_html: { autocomplete: "new-password" } %> + <%= f.input :current_password, + hint: "we need your current password to confirm your changes", + required: true, + input_html: { autocomplete: "current-password" } %> +
+ +
+ <%= f.button :submit, "Update" %> +
+<% end %> + +

Cancel my account

+ +
Unhappy? <%= button_to "Cancel my account", registration_path(resource_name), data: { confirm: "Are you sure?", turbo_confirm: "Are you sure?" }, method: :delete %>
+ +<%= link_to "Back", :back %> diff --git a/app/views/devise/registrations/new.html.erb b/app/views/devise/registrations/new.html.erb new file mode 100644 index 000000000..5dafdd760 --- /dev/null +++ b/app/views/devise/registrations/new.html.erb @@ -0,0 +1,25 @@ +

Sign up

+ +<%= simple_form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %> + <%= f.error_notification %> + +
+ <%= f.input :email, + required: true, + autofocus: true, + input_html: { autocomplete: "email" }%> + <%= f.input :password, + required: true, + hint: ("#{@minimum_password_length} characters minimum" if @minimum_password_length), + input_html: { autocomplete: "new-password" } %> + <%= f.input :password_confirmation, + required: true, + input_html: { autocomplete: "new-password" } %> +
+ +
+ <%= f.button :submit, "Sign up" %> +
+<% end %> + +<%= render "devise/shared/links" %> diff --git a/app/views/devise/sessions/new.html.erb b/app/views/devise/sessions/new.html.erb new file mode 100644 index 000000000..e542e6182 --- /dev/null +++ b/app/views/devise/sessions/new.html.erb @@ -0,0 +1,20 @@ +

Log in

+ +<%= simple_form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| %> +
+ <%= f.input :email, + required: false, + autofocus: true, + input_html: { autocomplete: "email" } %> + <%= f.input :password, + required: false, + input_html: { autocomplete: "current-password" } %> + <%= f.input :remember_me, as: :boolean if devise_mapping.rememberable? %> +
+ +
+ <%= f.button :submit, "Log in" %> +
+<% end %> + +<%= render "devise/shared/links" %> diff --git a/app/views/devise/shared/_error_messages.html.erb b/app/views/devise/shared/_error_messages.html.erb new file mode 100644 index 000000000..cabfe307e --- /dev/null +++ b/app/views/devise/shared/_error_messages.html.erb @@ -0,0 +1,15 @@ +<% if resource.errors.any? %> +
+

+ <%= I18n.t("errors.messages.not_saved", + count: resource.errors.count, + resource: resource.class.model_name.human.downcase) + %> +

+ +
+<% end %> diff --git a/app/views/devise/shared/_links.html.erb b/app/views/devise/shared/_links.html.erb new file mode 100644 index 000000000..7a75304ba --- /dev/null +++ b/app/views/devise/shared/_links.html.erb @@ -0,0 +1,25 @@ +<%- if controller_name != 'sessions' %> + <%= link_to "Log in", new_session_path(resource_name) %>
+<% end %> + +<%- if devise_mapping.registerable? && controller_name != 'registrations' %> + <%= link_to "Sign up", new_registration_path(resource_name) %>
+<% end %> + +<%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %> + <%= link_to "Forgot your password?", new_password_path(resource_name) %>
+<% end %> + +<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %> + <%= link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name) %>
+<% end %> + +<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %> + <%= link_to "Didn't receive unlock instructions?", new_unlock_path(resource_name) %>
+<% end %> + +<%- if devise_mapping.omniauthable? %> + <%- resource_class.omniauth_providers.each do |provider| %> + <%= button_to "Sign in with #{OmniAuth::Utils.camelize(provider)}", omniauth_authorize_path(resource_name, provider), data: { turbo: false } %>
+ <% end %> +<% end %> diff --git a/app/views/devise/unlocks/new.html.erb b/app/views/devise/unlocks/new.html.erb new file mode 100644 index 000000000..c42de1738 --- /dev/null +++ b/app/views/devise/unlocks/new.html.erb @@ -0,0 +1,19 @@ +

Resend unlock instructions

+ +<%= simple_form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f| %> + <%= f.error_notification %> + <%= f.full_error :unlock_token %> + +
+ <%= f.input :email, + required: true, + autofocus: true, + input_html: { autocomplete: "email" } %> +
+ +
+ <%= f.button :submit, "Resend unlock instructions" %> +
+<% end %> + +<%= render "devise/shared/links" %> diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 9a595c93a..ee9d05449 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -11,6 +11,8 @@ +

<%= notice %>

+

<%= alert %>

<%= yield %> diff --git a/config/initializers/devise.rb b/config/initializers/devise.rb new file mode 100644 index 000000000..eb144cabe --- /dev/null +++ b/config/initializers/devise.rb @@ -0,0 +1,313 @@ +# frozen_string_literal: true + +# Assuming you have not yet modified this file, each configuration option below +# is set to its default value. Note that some are commented out while others +# are not: uncommented lines are intended to protect your configuration from +# breaking changes in upgrades (i.e., in the event that future versions of +# Devise change the default values for those options). +# +# Use this hook to configure devise mailer, warden hooks and so forth. +# Many of these configuration options can be set straight in your model. +Devise.setup do |config| + # The secret key used by Devise. Devise uses this key to generate + # random tokens. Changing this key will render invalid all existing + # confirmation, reset password and unlock tokens in the database. + # Devise will use the `secret_key_base` as its `secret_key` + # by default. You can change it below and use your own secret key. + # config.secret_key = '40de571ed58d26ee9ccbf055a74b01c660d75c9c35277014263fcccb1b264bbd988a9bc0036b33372753c7a420a20bc679169d5c55224dbb5b6cd22b8ad56faf' + + # ==> Controller configuration + # Configure the parent class to the devise controllers. + # config.parent_controller = 'DeviseController' + + # ==> Mailer Configuration + # Configure the e-mail address which will be shown in Devise::Mailer, + # note that it will be overwritten if you use your own mailer class + # with default "from" parameter. + config.mailer_sender = 'please-change-me-at-config-initializers-devise@example.com' + + # Configure the class responsible to send e-mails. + # config.mailer = 'Devise::Mailer' + + # Configure the parent class responsible to send e-mails. + # config.parent_mailer = 'ActionMailer::Base' + + # ==> ORM configuration + # Load and configure the ORM. Supports :active_record (default) and + # :mongoid (bson_ext recommended) by default. Other ORMs may be + # available as additional gems. + require 'devise/orm/active_record' + + # ==> Configuration for any authentication mechanism + # Configure which keys are used when authenticating a user. The default is + # just :email. You can configure it to use [:username, :subdomain], so for + # authenticating a user, both parameters are required. Remember that those + # parameters are used only when authenticating and not when retrieving from + # session. If you need permissions, you should implement that in a before filter. + # You can also supply a hash where the value is a boolean determining whether + # or not authentication should be aborted when the value is not present. + # config.authentication_keys = [:email] + + # Configure parameters from the request object used for authentication. Each entry + # given should be a request method and it will automatically be passed to the + # find_for_authentication method and considered in your model lookup. For instance, + # if you set :request_keys to [:subdomain], :subdomain will be used on authentication. + # The same considerations mentioned for authentication_keys also apply to request_keys. + # config.request_keys = [] + + # Configure which authentication keys should be case-insensitive. + # These keys will be downcased upon creating or modifying a user and when used + # to authenticate or find a user. Default is :email. + config.case_insensitive_keys = [:email] + + # Configure which authentication keys should have whitespace stripped. + # These keys will have whitespace before and after removed upon creating or + # modifying a user and when used to authenticate or find a user. Default is :email. + config.strip_whitespace_keys = [:email] + + # Tell if authentication through request.params is enabled. True by default. + # It can be set to an array that will enable params authentication only for the + # given strategies, for example, `config.params_authenticatable = [:database]` will + # enable it only for database (email + password) authentication. + # config.params_authenticatable = true + + # Tell if authentication through HTTP Auth is enabled. False by default. + # It can be set to an array that will enable http authentication only for the + # given strategies, for example, `config.http_authenticatable = [:database]` will + # enable it only for database authentication. + # For API-only applications to support authentication "out-of-the-box", you will likely want to + # enable this with :database unless you are using a custom strategy. + # The supported strategies are: + # :database = Support basic authentication with authentication key + password + # config.http_authenticatable = false + + # If 401 status code should be returned for AJAX requests. True by default. + # config.http_authenticatable_on_xhr = true + + # The realm used in Http Basic Authentication. 'Application' by default. + # config.http_authentication_realm = 'Application' + + # It will change confirmation, password recovery and other workflows + # to behave the same regardless if the e-mail provided was right or wrong. + # Does not affect registerable. + # config.paranoid = true + + # By default Devise will store the user in session. You can skip storage for + # particular strategies by setting this option. + # Notice that if you are skipping storage for all authentication paths, you + # may want to disable generating routes to Devise's sessions controller by + # passing skip: :sessions to `devise_for` in your config/routes.rb + config.skip_session_storage = [:http_auth] + + # By default, Devise cleans up the CSRF token on authentication to + # avoid CSRF token fixation attacks. This means that, when using AJAX + # requests for sign in and sign up, you need to get a new CSRF token + # from the server. You can disable this option at your own risk. + # config.clean_up_csrf_token_on_authentication = true + + # When false, Devise will not attempt to reload routes on eager load. + # This can reduce the time taken to boot the app but if your application + # requires the Devise mappings to be loaded during boot time the application + # won't boot properly. + # config.reload_routes = true + + # ==> Configuration for :database_authenticatable + # For bcrypt, this is the cost for hashing the password and defaults to 12. If + # using other algorithms, it sets how many times you want the password to be hashed. + # The number of stretches used for generating the hashed password are stored + # with the hashed password. This allows you to change the stretches without + # invalidating existing passwords. + # + # Limiting the stretches to just one in testing will increase the performance of + # your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use + # a value less than 10 in other environments. Note that, for bcrypt (the default + # algorithm), the cost increases exponentially with the number of stretches (e.g. + # a value of 20 is already extremely slow: approx. 60 seconds for 1 calculation). + config.stretches = Rails.env.test? ? 1 : 12 + + # Set up a pepper to generate the hashed password. + # config.pepper = '5149cb9fbb5c3fe954adf95c23e7093536eb5764738b41168eb110fa5a7e3a17469845ce8f6a213b67a9bfc43228960ed78298c20ad4fdf1e4466cacb9cc320a' + + # Send a notification to the original email when the user's email is changed. + # config.send_email_changed_notification = false + + # Send a notification email when the user's password is changed. + # config.send_password_change_notification = false + + # ==> Configuration for :confirmable + # A period that the user is allowed to access the website even without + # confirming their account. For instance, if set to 2.days, the user will be + # able to access the website for two days without confirming their account, + # access will be blocked just in the third day. + # You can also set it to nil, which will allow the user to access the website + # without confirming their account. + # Default is 0.days, meaning the user cannot access the website without + # confirming their account. + # config.allow_unconfirmed_access_for = 2.days + + # A period that the user is allowed to confirm their account before their + # token becomes invalid. For example, if set to 3.days, the user can confirm + # their account within 3 days after the mail was sent, but on the fourth day + # their account can't be confirmed with the token any more. + # Default is nil, meaning there is no restriction on how long a user can take + # before confirming their account. + # config.confirm_within = 3.days + + # If true, requires any email changes to be confirmed (exactly the same way as + # initial account confirmation) to be applied. Requires additional unconfirmed_email + # db field (see migrations). Until confirmed, new email is stored in + # unconfirmed_email column, and copied to email column on successful confirmation. + config.reconfirmable = true + + # Defines which key will be used when confirming an account + # config.confirmation_keys = [:email] + + # ==> Configuration for :rememberable + # The time the user will be remembered without asking for credentials again. + # config.remember_for = 2.weeks + + # Invalidates all the remember me tokens when the user signs out. + config.expire_all_remember_me_on_sign_out = true + + # If true, extends the user's remember period when remembered via cookie. + # config.extend_remember_period = false + + # Options to be passed to the created cookie. For instance, you can set + # secure: true in order to force SSL only cookies. + # config.rememberable_options = {} + + # ==> Configuration for :validatable + # Range for password length. + config.password_length = 6..128 + + # Email regex used to validate email formats. It simply asserts that + # one (and only one) @ exists in the given string. This is mainly + # to give user feedback and not to assert the e-mail validity. + config.email_regexp = /\A[^@\s]+@[^@\s]+\z/ + + # ==> Configuration for :timeoutable + # The time you want to timeout the user session without activity. After this + # time the user will be asked for credentials again. Default is 30 minutes. + # config.timeout_in = 30.minutes + + # ==> Configuration for :lockable + # Defines which strategy will be used to lock an account. + # :failed_attempts = Locks an account after a number of failed attempts to sign in. + # :none = No lock strategy. You should handle locking by yourself. + # config.lock_strategy = :failed_attempts + + # Defines which key will be used when locking and unlocking an account + # config.unlock_keys = [:email] + + # Defines which strategy will be used to unlock an account. + # :email = Sends an unlock link to the user email + # :time = Re-enables login after a certain amount of time (see :unlock_in below) + # :both = Enables both strategies + # :none = No unlock strategy. You should handle unlocking by yourself. + # config.unlock_strategy = :both + + # Number of authentication tries before locking an account if lock_strategy + # is failed attempts. + # config.maximum_attempts = 20 + + # Time interval to unlock the account if :time is enabled as unlock_strategy. + # config.unlock_in = 1.hour + + # Warn on the last attempt before the account is locked. + # config.last_attempt_warning = true + + # ==> Configuration for :recoverable + # + # Defines which key will be used when recovering the password for an account + # config.reset_password_keys = [:email] + + # Time interval you can reset your password with a reset password key. + # Don't put a too small interval or your users won't have the time to + # change their passwords. + config.reset_password_within = 6.hours + + # When set to false, does not sign a user in automatically after their password is + # reset. Defaults to true, so a user is signed in automatically after a reset. + # config.sign_in_after_reset_password = true + + # ==> Configuration for :encryptable + # Allow you to use another hashing or encryption algorithm besides bcrypt (default). + # You can use :sha1, :sha512 or algorithms from others authentication tools as + # :clearance_sha1, :authlogic_sha512 (then you should set stretches above to 20 + # for default behavior) and :restful_authentication_sha1 (then you should set + # stretches to 10, and copy REST_AUTH_SITE_KEY to pepper). + # + # Require the `devise-encryptable` gem when using anything other than bcrypt + # config.encryptor = :sha512 + + # ==> Scopes configuration + # Turn scoped views on. Before rendering "sessions/new", it will first check for + # "users/sessions/new". It's turned off by default because it's slower if you + # are using only default views. + # config.scoped_views = false + + # Configure the default scope given to Warden. By default it's the first + # devise role declared in your routes (usually :user). + # config.default_scope = :user + + # Set this configuration to false if you want /users/sign_out to sign out + # only the current scope. By default, Devise signs out all scopes. + # config.sign_out_all_scopes = true + + # ==> Navigation configuration + # Lists the formats that should be treated as navigational. Formats like + # :html should redirect to the sign in page when the user does not have + # access, but formats like :xml or :json, should return 401. + # + # If you have any extra navigational formats, like :iphone or :mobile, you + # should add them to the navigational formats lists. + # + # The "*/*" below is required to match Internet Explorer requests. + # config.navigational_formats = ['*/*', :html, :turbo_stream] + + # The default HTTP method used to sign out a resource. Default is :delete. + config.sign_out_via = :delete + + # ==> OmniAuth + # Add a new OmniAuth provider. Check the wiki for more information on setting + # up on your models and hooks. + # config.omniauth :github, 'APP_ID', 'APP_SECRET', scope: 'user,public_repo' + + # ==> Warden configuration + # If you want to use other strategies, that are not supported by Devise, or + # change the failure app, you can configure them inside the config.warden block. + # + # config.warden do |manager| + # manager.intercept_401 = false + # manager.default_strategies(scope: :user).unshift :some_external_strategy + # end + + # ==> Mountable engine configurations + # When using Devise inside an engine, let's call it `MyEngine`, and this engine + # is mountable, there are some extra configurations to be taken into account. + # The following options are available, assuming the engine is mounted as: + # + # mount MyEngine, at: '/my_engine' + # + # The router that invoked `devise_for`, in the example above, would be: + # config.router_name = :my_engine + # + # When using OmniAuth, Devise cannot automatically set OmniAuth path, + # so you need to do it manually. For the users scope, it would be: + # config.omniauth_path_prefix = '/my_engine/users/auth' + + # ==> Hotwire/Turbo configuration + # When using Devise with Hotwire/Turbo, the http status for error responses + # and some redirects must match the following. The default in Devise for existing + # apps is `200 OK` and `302 Found` respectively, but new apps are generated with + # these new defaults that match Hotwire/Turbo behavior. + # Note: These might become the new default in future versions of Devise. + config.responder.error_status = :unprocessable_entity + config.responder.redirect_status = :see_other + + # ==> Configuration for :registerable + + # When set to false, does not sign a user in automatically after their password is + # changed. Defaults to true, so a user is signed in automatically after changing a password. + # config.sign_in_after_change_password = true +end diff --git a/config/locales/devise.en.yml b/config/locales/devise.en.yml new file mode 100644 index 000000000..260e1c4ba --- /dev/null +++ b/config/locales/devise.en.yml @@ -0,0 +1,65 @@ +# Additional translations at https://github.com/heartcombo/devise/wiki/I18n + +en: + devise: + confirmations: + confirmed: "Your email address has been successfully confirmed." + send_instructions: "You will receive an email with instructions for how to confirm your email address in a few minutes." + send_paranoid_instructions: "If your email address exists in our database, you will receive an email with instructions for how to confirm your email address in a few minutes." + failure: + already_authenticated: "You are already signed in." + inactive: "Your account is not activated yet." + invalid: "Invalid %{authentication_keys} or password." + locked: "Your account is locked." + last_attempt: "You have one more attempt before your account is locked." + not_found_in_database: "Invalid %{authentication_keys} or password." + timeout: "Your session expired. Please sign in again to continue." + unauthenticated: "You need to sign in or sign up before continuing." + unconfirmed: "You have to confirm your email address before continuing." + mailer: + confirmation_instructions: + subject: "Confirmation instructions" + reset_password_instructions: + subject: "Reset password instructions" + unlock_instructions: + subject: "Unlock instructions" + email_changed: + subject: "Email Changed" + password_change: + subject: "Password Changed" + omniauth_callbacks: + failure: "Could not authenticate you from %{kind} because \"%{reason}\"." + success: "Successfully authenticated from %{kind} account." + passwords: + no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided." + send_instructions: "You will receive an email with instructions on how to reset your password in a few minutes." + send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes." + updated: "Your password has been changed successfully. You are now signed in." + updated_not_active: "Your password has been changed successfully." + registrations: + destroyed: "Bye! Your account has been successfully cancelled. We hope to see you again soon." + signed_up: "Welcome! You have signed up successfully." + signed_up_but_inactive: "You have signed up successfully. However, we could not sign you in because your account is not yet activated." + signed_up_but_locked: "You have signed up successfully. However, we could not sign you in because your account is locked." + signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please follow the link to activate your account." + update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and follow the confirmation link to confirm your new email address." + updated: "Your account has been updated successfully." + updated_but_not_signed_in: "Your account has been updated successfully, but since your password was changed, you need to sign in again." + sessions: + signed_in: "Signed in successfully." + signed_out: "Signed out successfully." + already_signed_out: "Signed out successfully." + unlocks: + send_instructions: "You will receive an email with instructions for how to unlock your account in a few minutes." + send_paranoid_instructions: "If your account exists, you will receive an email with instructions for how to unlock it in a few minutes." + unlocked: "Your account has been unlocked successfully. Please sign in to continue." + errors: + messages: + already_confirmed: "was already confirmed, please try signing in" + confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one" + expired: "has expired, please request a new one" + not_found: "not found" + not_locked: "was not locked" + not_saved: + one: "1 error prohibited this %{resource} from being saved:" + other: "%{count} errors prohibited this %{resource} from being saved:" diff --git a/config/routes.rb b/config/routes.rb index 262ffd547..4ea360a23 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,6 +1,9 @@ Rails.application.routes.draw do + devise_for :users # Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html # Defines the root path route ("/") # root "articles#index" + root "photos#index" + devise_for :users end diff --git a/db/migrate/20241112231651_devise_create_users.rb b/db/migrate/20241112231651_devise_create_users.rb new file mode 100644 index 000000000..b99f25ba9 --- /dev/null +++ b/db/migrate/20241112231651_devise_create_users.rb @@ -0,0 +1,44 @@ +# frozen_string_literal: true + +class DeviseCreateUsers < ActiveRecord::Migration[7.1] + def change + create_table :users do |t| + ## Database authenticatable + t.string :email, null: false, default: "" + t.string :encrypted_password, null: false, default: "" + + ## Recoverable + t.string :reset_password_token + t.datetime :reset_password_sent_at + + ## Rememberable + t.datetime :remember_created_at + + ## Trackable + # t.integer :sign_in_count, default: 0, null: false + # t.datetime :current_sign_in_at + # t.datetime :last_sign_in_at + # t.string :current_sign_in_ip + # t.string :last_sign_in_ip + + ## Confirmable + # t.string :confirmation_token + # t.datetime :confirmed_at + # t.datetime :confirmation_sent_at + # t.string :unconfirmed_email # Only if using reconfirmable + + ## Lockable + # t.integer :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts + # t.string :unlock_token # Only if unlock strategy is :email or :both + # t.datetime :locked_at + + + t.timestamps null: false + end + + add_index :users, :email, unique: true + add_index :users, :reset_password_token, unique: true + # add_index :users, :confirmation_token, unique: true + # add_index :users, :unlock_token, unique: true + end +end diff --git a/db/schema.rb b/db/schema.rb index b783f9866..1333eb9d8 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,8 +10,20 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[7.0].define(version: 0) do +ActiveRecord::Schema[7.1].define(version: 2024_11_12_231651) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" + create_table "users", force: :cascade do |t| + t.string "email", default: "", null: false + t.string "encrypted_password", default: "", null: false + t.string "reset_password_token" + t.datetime "reset_password_sent_at" + t.datetime "remember_created_at" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["email"], name: "index_users_on_email", unique: true + t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true + end + end From 58e10e10373f5ba3c67ed34ae4d23c0dc398d2fe Mon Sep 17 00:00:00 2001 From: Brian Kim Date: Sat, 16 Nov 2024 19:01:09 +0000 Subject: [PATCH 02/15] generated users with devise --- app/controllers/photos_controller.rb | 5 ++ .../20241116190022_add_devise_to_users.rb | 55 +++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 app/controllers/photos_controller.rb create mode 100644 db/migrate/20241116190022_add_devise_to_users.rb diff --git a/app/controllers/photos_controller.rb b/app/controllers/photos_controller.rb new file mode 100644 index 000000000..7a435358a --- /dev/null +++ b/app/controllers/photos_controller.rb @@ -0,0 +1,5 @@ +class PhotosController < ApplicationController + def index + render "layouts/application" + end +end diff --git a/db/migrate/20241116190022_add_devise_to_users.rb b/db/migrate/20241116190022_add_devise_to_users.rb new file mode 100644 index 000000000..817590d11 --- /dev/null +++ b/db/migrate/20241116190022_add_devise_to_users.rb @@ -0,0 +1,55 @@ +# frozen_string_literal: true + +class AddDeviseToUsers < ActiveRecord::Migration[7.1] + def self.up + change_table :users do |t| + ## Database authenticatable + t.string :email, null: false, default: "" + t.string :encrypted_password, null: false, default: "" + + ## Recoverable + t.string :reset_password_token + t.datetime :reset_password_sent_at + + ## Rememberable + t.datetime :remember_created_at + + ## Trackable + # t.integer :sign_in_count, default: 0, null: false + # t.datetime :current_sign_in_at + # t.datetime :last_sign_in_at + # t.string :current_sign_in_ip + # t.string :last_sign_in_ip + + ## Confirmable + # t.string :confirmation_token + # t.datetime :confirmed_at + # t.datetime :confirmation_sent_at + # t.string :unconfirmed_email # Only if using reconfirmable + + ## Lockable + # t.integer :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts + # t.string :unlock_token # Only if unlock strategy is :email or :both + # t.datetime :locked_at + + t.string :username + t.boolean :private + t.integer :likes_count + t.integer :comments_count + + # Uncomment below if timestamps were not included in your original model. + # t.timestamps null: false + end + + add_index :users, :email, unique: true + add_index :users, :reset_password_token, unique: true + # add_index :users, :confirmation_token, unique: true + # add_index :users, :unlock_token, unique: true + end + + def self.down + # By default, we don't want to make any assumption about how to roll back a migration when your + # model already existed. Please edit below which fields you would like to remove in this migration. + raise ActiveRecord::IrreversibleMigration + end +end From d64fd73ea21f215604511ac25a11bedb48cb6ee4 Mon Sep 17 00:00:00 2001 From: Brian Kim Date: Sat, 16 Nov 2024 19:06:04 +0000 Subject: [PATCH 03/15] added things --- db/migrate/20241112231651_devise_create_users.rb | 3 ++- db/migrate/20241116190022_add_devise_to_users.rb | 7 ++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/db/migrate/20241112231651_devise_create_users.rb b/db/migrate/20241112231651_devise_create_users.rb index b99f25ba9..1a58ca247 100644 --- a/db/migrate/20241112231651_devise_create_users.rb +++ b/db/migrate/20241112231651_devise_create_users.rb @@ -3,8 +3,9 @@ class DeviseCreateUsers < ActiveRecord::Migration[7.1] def change create_table :users do |t| + enable_extension("citext") ## Database authenticatable - t.string :email, null: false, default: "" + t.citext :email, null: false, default: "" t.string :encrypted_password, null: false, default: "" ## Recoverable diff --git a/db/migrate/20241116190022_add_devise_to_users.rb b/db/migrate/20241116190022_add_devise_to_users.rb index 817590d11..b308700b7 100644 --- a/db/migrate/20241116190022_add_devise_to_users.rb +++ b/db/migrate/20241116190022_add_devise_to_users.rb @@ -32,10 +32,10 @@ def self.up # t.string :unlock_token # Only if unlock strategy is :email or :both # t.datetime :locked_at - t.string :username + t.citext :username t.boolean :private - t.integer :likes_count - t.integer :comments_count + t.integer :likes_count, default: 0 + t.integer :comments_count, default: 0 # Uncomment below if timestamps were not included in your original model. # t.timestamps null: false @@ -45,6 +45,7 @@ def self.up add_index :users, :reset_password_token, unique: true # add_index :users, :confirmation_token, unique: true # add_index :users, :unlock_token, unique: true + add_index :users, :username, unique: true end def self.down From dbe8302b595f0e82036339047626fdae51361402 Mon Sep 17 00:00:00 2001 From: Brian Kim Date: Mon, 18 Nov 2024 10:29:19 +0000 Subject: [PATCH 04/15] Generated comments --- app/controllers/application_controller.rb | 1 + app/controllers/comments_controller.rb | 70 +++++++++++++++++++ app/controllers/follow_requests_controller.rb | 70 +++++++++++++++++++ app/controllers/home_controller.rb | 5 -- app/controllers/likes_controller.rb | 70 +++++++++++++++++++ app/controllers/photos_controller.rb | 68 +++++++++++++++++- app/models/comment.rb | 18 +++++ app/models/follow_request.rb | 17 +++++ app/models/like.rb | 14 ++++ app/models/photo.rb | 25 +++++++ app/models/user.rb | 10 ++- app/views/comments/_comment.html.erb | 22 ++++++ app/views/comments/_comment.json.jbuilder | 2 + app/views/comments/_form.html.erb | 16 +++++ app/views/comments/edit.html.erb | 10 +++ app/views/comments/index.html.erb | 14 ++++ app/views/comments/index.json.jbuilder | 1 + app/views/comments/new.html.erb | 9 +++ app/views/comments/show.html.erb | 10 +++ app/views/comments/show.json.jbuilder | 1 + .../follow_requests/_follow_request.html.erb | 22 ++++++ .../_follow_request.json.jbuilder | 2 + app/views/follow_requests/_form.html.erb | 16 +++++ app/views/follow_requests/edit.html.erb | 10 +++ app/views/follow_requests/index.html.erb | 14 ++++ app/views/follow_requests/index.json.jbuilder | 1 + app/views/follow_requests/new.html.erb | 9 +++ app/views/follow_requests/show.html.erb | 10 +++ app/views/follow_requests/show.json.jbuilder | 1 + app/views/layouts/application.html.erb | 6 +- app/views/likes/_form.html.erb | 15 ++++ app/views/likes/_like.html.erb | 17 +++++ app/views/likes/_like.json.jbuilder | 2 + app/views/likes/edit.html.erb | 10 +++ app/views/likes/index.html.erb | 14 ++++ app/views/likes/index.json.jbuilder | 1 + app/views/likes/new.html.erb | 9 +++ app/views/likes/show.html.erb | 10 +++ app/views/likes/show.json.jbuilder | 1 + app/views/photos/_form.html.erb | 42 +++++++++++ app/views/photos/_photo.html.erb | 27 +++++++ app/views/photos/_photo.json.jbuilder | 2 + app/views/photos/edit.html.erb | 10 +++ app/views/photos/index.html.erb | 14 ++++ app/views/photos/index.json.jbuilder | 1 + app/views/photos/new.html.erb | 9 +++ app/views/photos/show.html.erb | 10 +++ app/views/photos/show.json.jbuilder | 1 + app/views/shared/_cdn_assets.html.erb | 15 ++++ app/views/shared/_navbar.html.erb | 40 +++++++++++ config/routes.rb | 9 ++- .../20241112231651_devise_create_users.rb | 4 +- .../20241116190022_add_devise_to_users.rb | 15 +--- db/migrate/20241116190625_create_photos.rb | 13 ++++ db/migrate/20241117170602_create_comments.rb | 11 +++ .../20241117170653_create_follow_requests.rb | 11 +++ db/migrate/20241117170728_create_likes.rb | 10 +++ db/schema.rb | 45 +++++++++++- 58 files changed, 879 insertions(+), 33 deletions(-) create mode 100644 app/controllers/comments_controller.rb create mode 100644 app/controllers/follow_requests_controller.rb delete mode 100644 app/controllers/home_controller.rb create mode 100644 app/controllers/likes_controller.rb create mode 100644 app/models/comment.rb create mode 100644 app/models/follow_request.rb create mode 100644 app/models/like.rb create mode 100644 app/models/photo.rb create mode 100644 app/views/comments/_comment.html.erb create mode 100644 app/views/comments/_comment.json.jbuilder create mode 100644 app/views/comments/_form.html.erb create mode 100644 app/views/comments/edit.html.erb create mode 100644 app/views/comments/index.html.erb create mode 100644 app/views/comments/index.json.jbuilder create mode 100644 app/views/comments/new.html.erb create mode 100644 app/views/comments/show.html.erb create mode 100644 app/views/comments/show.json.jbuilder create mode 100644 app/views/follow_requests/_follow_request.html.erb create mode 100644 app/views/follow_requests/_follow_request.json.jbuilder create mode 100644 app/views/follow_requests/_form.html.erb create mode 100644 app/views/follow_requests/edit.html.erb create mode 100644 app/views/follow_requests/index.html.erb create mode 100644 app/views/follow_requests/index.json.jbuilder create mode 100644 app/views/follow_requests/new.html.erb create mode 100644 app/views/follow_requests/show.html.erb create mode 100644 app/views/follow_requests/show.json.jbuilder create mode 100644 app/views/likes/_form.html.erb create mode 100644 app/views/likes/_like.html.erb create mode 100644 app/views/likes/_like.json.jbuilder create mode 100644 app/views/likes/edit.html.erb create mode 100644 app/views/likes/index.html.erb create mode 100644 app/views/likes/index.json.jbuilder create mode 100644 app/views/likes/new.html.erb create mode 100644 app/views/likes/show.html.erb create mode 100644 app/views/likes/show.json.jbuilder create mode 100644 app/views/photos/_form.html.erb create mode 100644 app/views/photos/_photo.html.erb create mode 100644 app/views/photos/_photo.json.jbuilder create mode 100644 app/views/photos/edit.html.erb create mode 100644 app/views/photos/index.html.erb create mode 100644 app/views/photos/index.json.jbuilder create mode 100644 app/views/photos/new.html.erb create mode 100644 app/views/photos/show.html.erb create mode 100644 app/views/photos/show.json.jbuilder create mode 100644 app/views/shared/_cdn_assets.html.erb create mode 100644 app/views/shared/_navbar.html.erb create mode 100644 db/migrate/20241116190625_create_photos.rb create mode 100644 db/migrate/20241117170602_create_comments.rb create mode 100644 db/migrate/20241117170653_create_follow_requests.rb create mode 100644 db/migrate/20241117170728_create_likes.rb diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 09705d12a..6b4dcfa85 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -1,2 +1,3 @@ class ApplicationController < ActionController::Base + before_action :authenticate_user! end diff --git a/app/controllers/comments_controller.rb b/app/controllers/comments_controller.rb new file mode 100644 index 000000000..774922b31 --- /dev/null +++ b/app/controllers/comments_controller.rb @@ -0,0 +1,70 @@ +class CommentsController < ApplicationController + before_action :set_comment, only: %i[ show edit update destroy ] + + # GET /comments or /comments.json + def index + @comments = Comment.all + end + + # GET /comments/1 or /comments/1.json + def show + end + + # GET /comments/new + def new + @comment = Comment.new + end + + # GET /comments/1/edit + def edit + end + + # POST /comments or /comments.json + def create + @comment = Comment.new(comment_params) + + respond_to do |format| + if @comment.save + format.html { redirect_to comment_url(@comment), notice: "Comment was successfully created." } + format.json { render :show, status: :created, location: @comment } + else + format.html { render :new, status: :unprocessable_entity } + format.json { render json: @comment.errors, status: :unprocessable_entity } + end + end + end + + # PATCH/PUT /comments/1 or /comments/1.json + def update + respond_to do |format| + if @comment.update(comment_params) + format.html { redirect_to comment_url(@comment), notice: "Comment was successfully updated." } + format.json { render :show, status: :ok, location: @comment } + else + format.html { render :edit, status: :unprocessable_entity } + format.json { render json: @comment.errors, status: :unprocessable_entity } + end + end + end + + # DELETE /comments/1 or /comments/1.json + def destroy + @comment.destroy! + + respond_to do |format| + format.html { redirect_to comments_url, notice: "Comment was successfully destroyed." } + format.json { head :no_content } + end + end + + private + # Use callbacks to share common setup or constraints between actions. + def set_comment + @comment = Comment.find(params[:id]) + end + + # Only allow a list of trusted parameters through. + def comment_params + params.require(:comment).permit(:id, :body, :author_id, :photo_id) + end +end diff --git a/app/controllers/follow_requests_controller.rb b/app/controllers/follow_requests_controller.rb new file mode 100644 index 000000000..528aec1ba --- /dev/null +++ b/app/controllers/follow_requests_controller.rb @@ -0,0 +1,70 @@ +class FollowRequestsController < ApplicationController + before_action :set_follow_request, only: %i[ show edit update destroy ] + + # GET /follow_requests or /follow_requests.json + def index + @follow_requests = FollowRequest.all + end + + # GET /follow_requests/1 or /follow_requests/1.json + def show + end + + # GET /follow_requests/new + def new + @follow_request = FollowRequest.new + end + + # GET /follow_requests/1/edit + def edit + end + + # POST /follow_requests or /follow_requests.json + def create + @follow_request = FollowRequest.new(follow_request_params) + + respond_to do |format| + if @follow_request.save + format.html { redirect_to follow_request_url(@follow_request), notice: "Follow request was successfully created." } + format.json { render :show, status: :created, location: @follow_request } + else + format.html { render :new, status: :unprocessable_entity } + format.json { render json: @follow_request.errors, status: :unprocessable_entity } + end + end + end + + # PATCH/PUT /follow_requests/1 or /follow_requests/1.json + def update + respond_to do |format| + if @follow_request.update(follow_request_params) + format.html { redirect_to follow_request_url(@follow_request), notice: "Follow request was successfully updated." } + format.json { render :show, status: :ok, location: @follow_request } + else + format.html { render :edit, status: :unprocessable_entity } + format.json { render json: @follow_request.errors, status: :unprocessable_entity } + end + end + end + + # DELETE /follow_requests/1 or /follow_requests/1.json + def destroy + @follow_request.destroy! + + respond_to do |format| + format.html { redirect_to follow_requests_url, notice: "Follow request was successfully destroyed." } + format.json { head :no_content } + end + end + + private + # Use callbacks to share common setup or constraints between actions. + def set_follow_request + @follow_request = FollowRequest.find(params[:id]) + end + + # Only allow a list of trusted parameters through. + def follow_request_params + params.require(:follow_request).permit(:id, :status, :recipient_id, :sender_id) + end +end diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb deleted file mode 100644 index 5dd82a893..000000000 --- a/app/controllers/home_controller.rb +++ /dev/null @@ -1,5 +0,0 @@ -class HomeController < ApplicationController - def index - render "layouts/application" - end -end diff --git a/app/controllers/likes_controller.rb b/app/controllers/likes_controller.rb new file mode 100644 index 000000000..24642c196 --- /dev/null +++ b/app/controllers/likes_controller.rb @@ -0,0 +1,70 @@ +class LikesController < ApplicationController + before_action :set_like, only: %i[ show edit update destroy ] + + # GET /likes or /likes.json + def index + @likes = Like.all + end + + # GET /likes/1 or /likes/1.json + def show + end + + # GET /likes/new + def new + @like = Like.new + end + + # GET /likes/1/edit + def edit + end + + # POST /likes or /likes.json + def create + @like = Like.new(like_params) + + respond_to do |format| + if @like.save + format.html { redirect_to like_url(@like), notice: "Like was successfully created." } + format.json { render :show, status: :created, location: @like } + else + format.html { render :new, status: :unprocessable_entity } + format.json { render json: @like.errors, status: :unprocessable_entity } + end + end + end + + # PATCH/PUT /likes/1 or /likes/1.json + def update + respond_to do |format| + if @like.update(like_params) + format.html { redirect_to like_url(@like), notice: "Like was successfully updated." } + format.json { render :show, status: :ok, location: @like } + else + format.html { render :edit, status: :unprocessable_entity } + format.json { render json: @like.errors, status: :unprocessable_entity } + end + end + end + + # DELETE /likes/1 or /likes/1.json + def destroy + @like.destroy! + + respond_to do |format| + format.html { redirect_to likes_url, notice: "Like was successfully destroyed." } + format.json { head :no_content } + end + end + + private + # Use callbacks to share common setup or constraints between actions. + def set_like + @like = Like.find(params[:id]) + end + + # Only allow a list of trusted parameters through. + def like_params + params.require(:like).permit(:id, :fan_id, :photo_id) + end +end diff --git a/app/controllers/photos_controller.rb b/app/controllers/photos_controller.rb index 7a435358a..130423d34 100644 --- a/app/controllers/photos_controller.rb +++ b/app/controllers/photos_controller.rb @@ -1,5 +1,71 @@ class PhotosController < ApplicationController + before_action :authenticate_user! + before_action :set_photo, only: %i[ show edit update destroy ] + + # GET /photos or /photos.json def index - render "layouts/application" + @photos = Photo.all end + + # GET /photos/1 or /photos/1.json + def show + end + + # GET /photos/new + def new + @photo = Photo.new + end + + # GET /photos/1/edit + def edit + end + + # POST /photos or /photos.json + def create + @photo = Photo.new(photo_params) + + respond_to do |format| + if @photo.save + format.html { redirect_to photo_url(@photo), notice: "Photo was successfully created." } + format.json { render :show, status: :created, location: @photo } + else + format.html { render :new, status: :unprocessable_entity } + format.json { render json: @photo.errors, status: :unprocessable_entity } + end + end + end + + # PATCH/PUT /photos/1 or /photos/1.json + def update + respond_to do |format| + if @photo.update(photo_params) + format.html { redirect_to photo_url(@photo), notice: "Photo was successfully updated." } + format.json { render :show, status: :ok, location: @photo } + else + format.html { render :edit, status: :unprocessable_entity } + format.json { render json: @photo.errors, status: :unprocessable_entity } + end + end + end + + # DELETE /photos/1 or /photos/1.json + def destroy + @photo.destroy! + + respond_to do |format| + format.html { redirect_to photos_url, notice: "Photo was successfully destroyed." } + format.json { head :no_content } + end + end + + private + # Use callbacks to share common setup or constraints between actions. + def set_photo + @photo = Photo.find(params[:id]) + end + + # Only allow a list of trusted parameters through. + def photo_params + params.require(:photo).permit(:image, :comments_count, :likes_count, :caption, :owner_id) + end end diff --git a/app/models/comment.rb b/app/models/comment.rb new file mode 100644 index 000000000..89d760150 --- /dev/null +++ b/app/models/comment.rb @@ -0,0 +1,18 @@ +# == Schema Information +# +# Table name: comments +# +# id :bigint not null, primary key +# body :text +# created_at :datetime not null +# updated_at :datetime not null +# author_id :bigint +# photo_id :bigint +# +class Comment < ApplicationRecord + belongs_to :author, class_name: "User", counter_cache: true + belongs_to :photo, counter_cache: true + + + validates :body, presence: true +end diff --git a/app/models/follow_request.rb b/app/models/follow_request.rb new file mode 100644 index 000000000..6fd22ba00 --- /dev/null +++ b/app/models/follow_request.rb @@ -0,0 +1,17 @@ +# == Schema Information +# +# Table name: follow_requests +# +# id :bigint not null, primary key +# status :string +# created_at :datetime not null +# updated_at :datetime not null +# recipient_id :bigint +# sender_id :bigint +# +class FollowRequest < ApplicationRecord + belongs_to :recipient, class_name: "User" + belongs_to :sender, class_name: "User" + + enum status: { pending: "pending", rejected: "rejected", accepted: "accepted" } +end diff --git a/app/models/like.rb b/app/models/like.rb new file mode 100644 index 000000000..a058da99b --- /dev/null +++ b/app/models/like.rb @@ -0,0 +1,14 @@ +# == Schema Information +# +# Table name: likes +# +# id :bigint not null, primary key +# created_at :datetime not null +# updated_at :datetime not null +# fan_id :bigint +# photo_id :bigint +# +class Like < ApplicationRecord + belongs_to :fan, class_name: "User" + belongs_to :photo +end diff --git a/app/models/photo.rb b/app/models/photo.rb new file mode 100644 index 000000000..ceeed17cf --- /dev/null +++ b/app/models/photo.rb @@ -0,0 +1,25 @@ +# == Schema Information +# +# Table name: photos +# +# id :bigint not null, primary key +# caption :text +# comments_count :integer +# image :string +# likes_count :integer +# created_at :datetime not null +# updated_at :datetime not null +# owner_id :bigint not null +# +# Indexes +# +# index_photos_on_owner_id (owner_id) +# +# Foreign Keys +# +# fk_rails_... (owner_id => users.id) +# +class Photo < ApplicationRecord + belongs_to :owner, class_name: "User" + has_many :comments +end diff --git a/app/models/user.rb b/app/models/user.rb index cd6994f46..2197c681f 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -3,22 +3,28 @@ # Table name: users # # id :bigint not null, primary key +# comments_count :integer default(0) # email :string default(""), not null # encrypted_password :string default(""), not null +# likes_count :integer default(0) +# private :boolean # remember_created_at :datetime # reset_password_sent_at :datetime # reset_password_token :string +# username :string # created_at :datetime not null # updated_at :datetime not null # # Indexes # -# index_users_on_email (email) UNIQUE -# index_users_on_reset_password_token (reset_password_token) UNIQUE +# index_users_on_username (username) UNIQUE # class User < ApplicationRecord # Include default devise modules. Others available are: # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable devise :database_authenticatable, :registerable, :recoverable, :rememberable, :validatable + + has_many :own_photos, class_name: "Photo", foreign_key: "owner_id" + has_many :comments, foreign_key: "author_id" end diff --git a/app/views/comments/_comment.html.erb b/app/views/comments/_comment.html.erb new file mode 100644 index 000000000..4ff37406f --- /dev/null +++ b/app/views/comments/_comment.html.erb @@ -0,0 +1,22 @@ +
+

+ Id: + <%= comment.id %> +

+ +

+ Body: + <%= comment.body %> +

+ +

+ Author: + <%= comment.author_id %> +

+ +

+ Photo: + <%= comment.photo_id %> +

+ +
diff --git a/app/views/comments/_comment.json.jbuilder b/app/views/comments/_comment.json.jbuilder new file mode 100644 index 000000000..f9cc1c7e3 --- /dev/null +++ b/app/views/comments/_comment.json.jbuilder @@ -0,0 +1,2 @@ +json.extract! comment, :id, :id, :body, :author_id, :photo_id, :created_at, :updated_at +json.url comment_url(comment, format: :json) diff --git a/app/views/comments/_form.html.erb b/app/views/comments/_form.html.erb new file mode 100644 index 000000000..9d5fe78be --- /dev/null +++ b/app/views/comments/_form.html.erb @@ -0,0 +1,16 @@ + +<%= simple_form_for(@comment) do |f| %> + <%= f.error_notification %> + <%= f.error_notification message: f.object.errors[:base].to_sentence if f.object.errors[:base].present? %> + +
+ <%= f.input :id %> + <%= f.input :body %> + <%= f.input :author_id %> + <%= f.input :photo_id %> +
+ +
+ <%= f.button :submit %> +
+<% end %> diff --git a/app/views/comments/edit.html.erb b/app/views/comments/edit.html.erb new file mode 100644 index 000000000..9720435b0 --- /dev/null +++ b/app/views/comments/edit.html.erb @@ -0,0 +1,10 @@ +

Editing comment

+ +<%= render "form", comment: @comment %> + +
+ +
+ <%= link_to "Show this comment", @comment %> | + <%= link_to "Back to comments", comments_path %> +
diff --git a/app/views/comments/index.html.erb b/app/views/comments/index.html.erb new file mode 100644 index 000000000..c4935157a --- /dev/null +++ b/app/views/comments/index.html.erb @@ -0,0 +1,14 @@ +

<%= notice %>

+ +

Comments

+ +
+ <% @comments.each do |comment| %> + <%= render comment %> +

+ <%= link_to "Show this comment", comment %> +

+ <% end %> +
+ +<%= link_to "New comment", new_comment_path %> diff --git a/app/views/comments/index.json.jbuilder b/app/views/comments/index.json.jbuilder new file mode 100644 index 000000000..e3322af65 --- /dev/null +++ b/app/views/comments/index.json.jbuilder @@ -0,0 +1 @@ +json.array! @comments, partial: "comments/comment", as: :comment diff --git a/app/views/comments/new.html.erb b/app/views/comments/new.html.erb new file mode 100644 index 000000000..6ba6dd8a4 --- /dev/null +++ b/app/views/comments/new.html.erb @@ -0,0 +1,9 @@ +

New comment

+ +<%= render "form", comment: @comment %> + +
+ +
+ <%= link_to "Back to comments", comments_path %> +
diff --git a/app/views/comments/show.html.erb b/app/views/comments/show.html.erb new file mode 100644 index 000000000..b90af0a6f --- /dev/null +++ b/app/views/comments/show.html.erb @@ -0,0 +1,10 @@ +

<%= notice %>

+ +<%= render @comment %> + +
+ <%= link_to "Edit this comment", edit_comment_path(@comment) %> | + <%= link_to "Back to comments", comments_path %> + + <%= button_to "Destroy this comment", @comment, method: :delete %> +
diff --git a/app/views/comments/show.json.jbuilder b/app/views/comments/show.json.jbuilder new file mode 100644 index 000000000..78a9099a3 --- /dev/null +++ b/app/views/comments/show.json.jbuilder @@ -0,0 +1 @@ +json.partial! "comments/comment", comment: @comment diff --git a/app/views/follow_requests/_follow_request.html.erb b/app/views/follow_requests/_follow_request.html.erb new file mode 100644 index 000000000..21122b585 --- /dev/null +++ b/app/views/follow_requests/_follow_request.html.erb @@ -0,0 +1,22 @@ +
+

+ Id: + <%= follow_request.id %> +

+ +

+ Status: + <%= follow_request.status %> +

+ +

+ Recipient: + <%= follow_request.recipient_id %> +

+ +

+ Sender: + <%= follow_request.sender_id %> +

+ +
diff --git a/app/views/follow_requests/_follow_request.json.jbuilder b/app/views/follow_requests/_follow_request.json.jbuilder new file mode 100644 index 000000000..ebe2481ef --- /dev/null +++ b/app/views/follow_requests/_follow_request.json.jbuilder @@ -0,0 +1,2 @@ +json.extract! follow_request, :id, :id, :status, :recipient_id, :sender_id, :created_at, :updated_at +json.url follow_request_url(follow_request, format: :json) diff --git a/app/views/follow_requests/_form.html.erb b/app/views/follow_requests/_form.html.erb new file mode 100644 index 000000000..33eede844 --- /dev/null +++ b/app/views/follow_requests/_form.html.erb @@ -0,0 +1,16 @@ + +<%= simple_form_for(@follow_request) do |f| %> + <%= f.error_notification %> + <%= f.error_notification message: f.object.errors[:base].to_sentence if f.object.errors[:base].present? %> + +
+ <%= f.input :id %> + <%= f.input :status %> + <%= f.input :recipient_id %> + <%= f.input :sender_id %> +
+ +
+ <%= f.button :submit %> +
+<% end %> diff --git a/app/views/follow_requests/edit.html.erb b/app/views/follow_requests/edit.html.erb new file mode 100644 index 000000000..7c42ec88d --- /dev/null +++ b/app/views/follow_requests/edit.html.erb @@ -0,0 +1,10 @@ +

Editing follow request

+ +<%= render "form", follow_request: @follow_request %> + +
+ +
+ <%= link_to "Show this follow request", @follow_request %> | + <%= link_to "Back to follow requests", follow_requests_path %> +
diff --git a/app/views/follow_requests/index.html.erb b/app/views/follow_requests/index.html.erb new file mode 100644 index 000000000..20fd53284 --- /dev/null +++ b/app/views/follow_requests/index.html.erb @@ -0,0 +1,14 @@ +

<%= notice %>

+ +

Follow requests

+ +
+ <% @follow_requests.each do |follow_request| %> + <%= render follow_request %> +

+ <%= link_to "Show this follow request", follow_request %> +

+ <% end %> +
+ +<%= link_to "New follow request", new_follow_request_path %> diff --git a/app/views/follow_requests/index.json.jbuilder b/app/views/follow_requests/index.json.jbuilder new file mode 100644 index 000000000..b45255d0f --- /dev/null +++ b/app/views/follow_requests/index.json.jbuilder @@ -0,0 +1 @@ +json.array! @follow_requests, partial: "follow_requests/follow_request", as: :follow_request diff --git a/app/views/follow_requests/new.html.erb b/app/views/follow_requests/new.html.erb new file mode 100644 index 000000000..f13075ef6 --- /dev/null +++ b/app/views/follow_requests/new.html.erb @@ -0,0 +1,9 @@ +

New follow request

+ +<%= render "form", follow_request: @follow_request %> + +
+ +
+ <%= link_to "Back to follow requests", follow_requests_path %> +
diff --git a/app/views/follow_requests/show.html.erb b/app/views/follow_requests/show.html.erb new file mode 100644 index 000000000..6db53cce2 --- /dev/null +++ b/app/views/follow_requests/show.html.erb @@ -0,0 +1,10 @@ +

<%= notice %>

+ +<%= render @follow_request %> + +
+ <%= link_to "Edit this follow request", edit_follow_request_path(@follow_request) %> | + <%= link_to "Back to follow requests", follow_requests_path %> + + <%= button_to "Destroy this follow request", @follow_request, method: :delete %> +
diff --git a/app/views/follow_requests/show.json.jbuilder b/app/views/follow_requests/show.json.jbuilder new file mode 100644 index 000000000..3fb15c16d --- /dev/null +++ b/app/views/follow_requests/show.json.jbuilder @@ -0,0 +1 @@ +json.partial! "follow_requests/follow_request", follow_request: @follow_request diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index ee9d05449..b5337013e 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -8,11 +8,13 @@ <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> <%= javascript_importmap_tags %> + + <%= render partial: "shared/cdn_assets"%> -

<%= notice %>

-

<%= alert %>

+ <%= render partial: "shared/navbar" %> + <%= yield %> diff --git a/app/views/likes/_form.html.erb b/app/views/likes/_form.html.erb new file mode 100644 index 000000000..9e8a22812 --- /dev/null +++ b/app/views/likes/_form.html.erb @@ -0,0 +1,15 @@ + +<%= simple_form_for(@like) do |f| %> + <%= f.error_notification %> + <%= f.error_notification message: f.object.errors[:base].to_sentence if f.object.errors[:base].present? %> + +
+ <%= f.input :id %> + <%= f.input :fan_id %> + <%= f.input :photo_id %> +
+ +
+ <%= f.button :submit %> +
+<% end %> diff --git a/app/views/likes/_like.html.erb b/app/views/likes/_like.html.erb new file mode 100644 index 000000000..aa1191178 --- /dev/null +++ b/app/views/likes/_like.html.erb @@ -0,0 +1,17 @@ +
+

+ Id: + <%= like.id %> +

+ +

+ Fan: + <%= like.fan_id %> +

+ +

+ Photo: + <%= like.photo_id %> +

+ +
diff --git a/app/views/likes/_like.json.jbuilder b/app/views/likes/_like.json.jbuilder new file mode 100644 index 000000000..a8d734b74 --- /dev/null +++ b/app/views/likes/_like.json.jbuilder @@ -0,0 +1,2 @@ +json.extract! like, :id, :id, :fan_id, :photo_id, :created_at, :updated_at +json.url like_url(like, format: :json) diff --git a/app/views/likes/edit.html.erb b/app/views/likes/edit.html.erb new file mode 100644 index 000000000..39beff900 --- /dev/null +++ b/app/views/likes/edit.html.erb @@ -0,0 +1,10 @@ +

Editing like

+ +<%= render "form", like: @like %> + +
+ +
+ <%= link_to "Show this like", @like %> | + <%= link_to "Back to likes", likes_path %> +
diff --git a/app/views/likes/index.html.erb b/app/views/likes/index.html.erb new file mode 100644 index 000000000..3032ac648 --- /dev/null +++ b/app/views/likes/index.html.erb @@ -0,0 +1,14 @@ +

<%= notice %>

+ +

Likes

+ +
+ <% @likes.each do |like| %> + <%= render like %> +

+ <%= link_to "Show this like", like %> +

+ <% end %> +
+ +<%= link_to "New like", new_like_path %> diff --git a/app/views/likes/index.json.jbuilder b/app/views/likes/index.json.jbuilder new file mode 100644 index 000000000..721d47627 --- /dev/null +++ b/app/views/likes/index.json.jbuilder @@ -0,0 +1 @@ +json.array! @likes, partial: "likes/like", as: :like diff --git a/app/views/likes/new.html.erb b/app/views/likes/new.html.erb new file mode 100644 index 000000000..706f8f9d8 --- /dev/null +++ b/app/views/likes/new.html.erb @@ -0,0 +1,9 @@ +

New like

+ +<%= render "form", like: @like %> + +
+ +
+ <%= link_to "Back to likes", likes_path %> +
diff --git a/app/views/likes/show.html.erb b/app/views/likes/show.html.erb new file mode 100644 index 000000000..b635317e8 --- /dev/null +++ b/app/views/likes/show.html.erb @@ -0,0 +1,10 @@ +

<%= notice %>

+ +<%= render @like %> + +
+ <%= link_to "Edit this like", edit_like_path(@like) %> | + <%= link_to "Back to likes", likes_path %> + + <%= button_to "Destroy this like", @like, method: :delete %> +
diff --git a/app/views/likes/show.json.jbuilder b/app/views/likes/show.json.jbuilder new file mode 100644 index 000000000..587277f0d --- /dev/null +++ b/app/views/likes/show.json.jbuilder @@ -0,0 +1 @@ +json.partial! "likes/like", like: @like diff --git a/app/views/photos/_form.html.erb b/app/views/photos/_form.html.erb new file mode 100644 index 000000000..2524df8e1 --- /dev/null +++ b/app/views/photos/_form.html.erb @@ -0,0 +1,42 @@ +<%= form_with(model: photo) do |form| %> + <% if photo.errors.any? %> +
+

<%= pluralize(photo.errors.count, "error") %> prohibited this photo from being saved:

+ +
    + <% photo.errors.each do |error| %> +
  • <%= error.full_message %>
  • + <% end %> +
+
+ <% end %> + +
+ <%= form.label :image, style: "display: block" %> + <%= form.text_field :image %> +
+ +
+ <%= form.label :comments_count, style: "display: block" %> + <%= form.number_field :comments_count %> +
+ +
+ <%= form.label :likes_count, style: "display: block" %> + <%= form.number_field :likes_count %> +
+ +
+ <%= form.label :caption, style: "display: block" %> + <%= form.text_area :caption %> +
+ +
+ <%= form.label :owner_id, style: "display: block" %> + <%= form.text_field :owner_id %> +
+ +
+ <%= form.submit %> +
+<% end %> diff --git a/app/views/photos/_photo.html.erb b/app/views/photos/_photo.html.erb new file mode 100644 index 000000000..163412972 --- /dev/null +++ b/app/views/photos/_photo.html.erb @@ -0,0 +1,27 @@ +
+

+ Image: + <%= photo.image %> +

+ +

+ Comments count: + <%= photo.comments_count %> +

+ +

+ Likes count: + <%= photo.likes_count %> +

+ +

+ Caption: + <%= photo.caption %> +

+ +

+ Owner: + <%= photo.owner_id %> +

+ +
diff --git a/app/views/photos/_photo.json.jbuilder b/app/views/photos/_photo.json.jbuilder new file mode 100644 index 000000000..fad93a0a9 --- /dev/null +++ b/app/views/photos/_photo.json.jbuilder @@ -0,0 +1,2 @@ +json.extract! photo, :id, :image, :comments_count, :likes_count, :caption, :owner_id, :created_at, :updated_at +json.url photo_url(photo, format: :json) diff --git a/app/views/photos/edit.html.erb b/app/views/photos/edit.html.erb new file mode 100644 index 000000000..334e57176 --- /dev/null +++ b/app/views/photos/edit.html.erb @@ -0,0 +1,10 @@ +

Editing photo

+ +<%= render "form", photo: @photo %> + +
+ +
+ <%= link_to "Show this photo", @photo %> | + <%= link_to "Back to photos", photos_path %> +
diff --git a/app/views/photos/index.html.erb b/app/views/photos/index.html.erb new file mode 100644 index 000000000..bfcfea758 --- /dev/null +++ b/app/views/photos/index.html.erb @@ -0,0 +1,14 @@ +

<%= notice %>

+ +

Photos

+ +
+ <% @photos.each do |photo| %> + <%= render photo %> +

+ <%= link_to "Show this photo", photo %> +

+ <% end %> +
+ +<%= link_to "New photo", new_photo_path %> diff --git a/app/views/photos/index.json.jbuilder b/app/views/photos/index.json.jbuilder new file mode 100644 index 000000000..24d84b804 --- /dev/null +++ b/app/views/photos/index.json.jbuilder @@ -0,0 +1 @@ +json.array! @photos, partial: "photos/photo", as: :photo diff --git a/app/views/photos/new.html.erb b/app/views/photos/new.html.erb new file mode 100644 index 000000000..4649e7ad5 --- /dev/null +++ b/app/views/photos/new.html.erb @@ -0,0 +1,9 @@ +

New photo

+ +<%= render "form", photo: @photo %> + +
+ +
+ <%= link_to "Back to photos", photos_path %> +
diff --git a/app/views/photos/show.html.erb b/app/views/photos/show.html.erb new file mode 100644 index 000000000..2d4f05255 --- /dev/null +++ b/app/views/photos/show.html.erb @@ -0,0 +1,10 @@ +

<%= notice %>

+ +<%= render @photo %> + +
+ <%= link_to "Edit this photo", edit_photo_path(@photo) %> | + <%= link_to "Back to photos", photos_path %> + + <%= button_to "Destroy this photo", @photo, method: :delete %> +
diff --git a/app/views/photos/show.json.jbuilder b/app/views/photos/show.json.jbuilder new file mode 100644 index 000000000..5c0f6ffc9 --- /dev/null +++ b/app/views/photos/show.json.jbuilder @@ -0,0 +1 @@ +json.partial! "photos/photo", photo: @photo diff --git a/app/views/shared/_cdn_assets.html.erb b/app/views/shared/_cdn_assets.html.erb new file mode 100644 index 000000000..241bd32ea --- /dev/null +++ b/app/views/shared/_cdn_assets.html.erb @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/app/views/shared/_navbar.html.erb b/app/views/shared/_navbar.html.erb new file mode 100644 index 000000000..73ebeeca1 --- /dev/null +++ b/app/views/shared/_navbar.html.erb @@ -0,0 +1,40 @@ + diff --git a/config/routes.rb b/config/routes.rb index 4ea360a23..175930190 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,9 +1,12 @@ Rails.application.routes.draw do + resources :likes + resources :follow_requests + resources :comments + resources :photos devise_for :users # Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html # Defines the root path route ("/") - # root "articles#index" - root "photos#index" - devise_for :users + + root 'photos#index' end diff --git a/db/migrate/20241112231651_devise_create_users.rb b/db/migrate/20241112231651_devise_create_users.rb index 1a58ca247..21ce6cce8 100644 --- a/db/migrate/20241112231651_devise_create_users.rb +++ b/db/migrate/20241112231651_devise_create_users.rb @@ -5,7 +5,7 @@ def change create_table :users do |t| enable_extension("citext") ## Database authenticatable - t.citext :email, null: false, default: "" + t.string :email, null: false, default: "" t.string :encrypted_password, null: false, default: "" ## Recoverable @@ -37,8 +37,6 @@ def change t.timestamps null: false end - add_index :users, :email, unique: true - add_index :users, :reset_password_token, unique: true # add_index :users, :confirmation_token, unique: true # add_index :users, :unlock_token, unique: true end diff --git a/db/migrate/20241116190022_add_devise_to_users.rb b/db/migrate/20241116190022_add_devise_to_users.rb index b308700b7..30eb35674 100644 --- a/db/migrate/20241116190022_add_devise_to_users.rb +++ b/db/migrate/20241116190022_add_devise_to_users.rb @@ -3,16 +3,6 @@ class AddDeviseToUsers < ActiveRecord::Migration[7.1] def self.up change_table :users do |t| - ## Database authenticatable - t.string :email, null: false, default: "" - t.string :encrypted_password, null: false, default: "" - - ## Recoverable - t.string :reset_password_token - t.datetime :reset_password_sent_at - - ## Rememberable - t.datetime :remember_created_at ## Trackable # t.integer :sign_in_count, default: 0, null: false @@ -32,7 +22,7 @@ def self.up # t.string :unlock_token # Only if unlock strategy is :email or :both # t.datetime :locked_at - t.citext :username + t.string :username t.boolean :private t.integer :likes_count, default: 0 t.integer :comments_count, default: 0 @@ -40,9 +30,6 @@ def self.up # Uncomment below if timestamps were not included in your original model. # t.timestamps null: false end - - add_index :users, :email, unique: true - add_index :users, :reset_password_token, unique: true # add_index :users, :confirmation_token, unique: true # add_index :users, :unlock_token, unique: true add_index :users, :username, unique: true diff --git a/db/migrate/20241116190625_create_photos.rb b/db/migrate/20241116190625_create_photos.rb new file mode 100644 index 000000000..3225f3489 --- /dev/null +++ b/db/migrate/20241116190625_create_photos.rb @@ -0,0 +1,13 @@ +class CreatePhotos < ActiveRecord::Migration[7.1] + def change + create_table :photos do |t| + t.string :image + t.integer :comments_count + t.integer :likes_count + t.text :caption + t.references :owner, null: false, foreign_key: { to_table: :users } + + t.timestamps + end + end +end diff --git a/db/migrate/20241117170602_create_comments.rb b/db/migrate/20241117170602_create_comments.rb new file mode 100644 index 000000000..c024edd3f --- /dev/null +++ b/db/migrate/20241117170602_create_comments.rb @@ -0,0 +1,11 @@ +class CreateComments < ActiveRecord::Migration[7.1] + def change + create_table :comments do |t| + t.references :author, null: false, foreign_key: { to_table: :users }, index: false + t.references :photo, null: false, foreign_key: true + t.text :body, null: false + + t.timestamps + end + end +end diff --git a/db/migrate/20241117170653_create_follow_requests.rb b/db/migrate/20241117170653_create_follow_requests.rb new file mode 100644 index 000000000..d748ebafd --- /dev/null +++ b/db/migrate/20241117170653_create_follow_requests.rb @@ -0,0 +1,11 @@ +class CreateFollowRequests < ActiveRecord::Migration[7.1] + def change + create_table :follow_requests do |t| + t.string :status + t.bigint :recipient_id + t.bigint :sender_id + + t.timestamps + end + end +end diff --git a/db/migrate/20241117170728_create_likes.rb b/db/migrate/20241117170728_create_likes.rb new file mode 100644 index 000000000..edeae6943 --- /dev/null +++ b/db/migrate/20241117170728_create_likes.rb @@ -0,0 +1,10 @@ +class CreateLikes < ActiveRecord::Migration[7.1] + def change + create_table :likes do |t| + t.bigint :fan_id + t.bigint :photo_id + + t.timestamps + end + end +end diff --git a/db/schema.rb b/db/schema.rb index 1333eb9d8..d70cefce1 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,10 +10,45 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[7.1].define(version: 2024_11_12_231651) do +ActiveRecord::Schema[7.1].define(version: 2024_11_17_170728) do # These are extensions that must be enabled in order to support this database + enable_extension "citext" enable_extension "plpgsql" + create_table "comments", force: :cascade do |t| + t.text "body" + t.bigint "author_id" + t.bigint "photo_id" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "follow_requests", force: :cascade do |t| + t.string "status" + t.bigint "recipient_id" + t.bigint "sender_id" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "likes", force: :cascade do |t| + t.bigint "fan_id" + t.bigint "photo_id" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "photos", force: :cascade do |t| + t.string "image" + t.integer "comments_count" + t.integer "likes_count" + t.text "caption" + t.bigint "owner_id", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["owner_id"], name: "index_photos_on_owner_id" + end + create_table "users", force: :cascade do |t| t.string "email", default: "", null: false t.string "encrypted_password", default: "", null: false @@ -22,8 +57,12 @@ t.datetime "remember_created_at" t.datetime "created_at", null: false t.datetime "updated_at", null: false - t.index ["email"], name: "index_users_on_email", unique: true - t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true + t.string "username" + t.boolean "private" + t.integer "likes_count", default: 0 + t.integer "comments_count", default: 0 + t.index ["username"], name: "index_users_on_username", unique: true end + add_foreign_key "photos", "users", column: "owner_id" end From 30824de6eb4ceab68793334fc3115505c0cdefc4 Mon Sep 17 00:00:00 2001 From: Brian Kim Date: Mon, 18 Nov 2024 10:31:27 +0000 Subject: [PATCH 05/15] Generated follow requests --- app/models/follow_request.rb | 1 + db/migrate/20241117170653_create_follow_requests.rb | 7 +++---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/models/follow_request.rb b/app/models/follow_request.rb index 6fd22ba00..4083845cf 100644 --- a/app/models/follow_request.rb +++ b/app/models/follow_request.rb @@ -12,6 +12,7 @@ class FollowRequest < ApplicationRecord belongs_to :recipient, class_name: "User" belongs_to :sender, class_name: "User" + enum status: { pending: "pending", rejected: "rejected", accepted: "accepted" } end diff --git a/db/migrate/20241117170653_create_follow_requests.rb b/db/migrate/20241117170653_create_follow_requests.rb index d748ebafd..39e83c9c6 100644 --- a/db/migrate/20241117170653_create_follow_requests.rb +++ b/db/migrate/20241117170653_create_follow_requests.rb @@ -1,10 +1,9 @@ class CreateFollowRequests < ActiveRecord::Migration[7.1] def change create_table :follow_requests do |t| - t.string :status - t.bigint :recipient_id - t.bigint :sender_id - + t.references :recipient, null: false, foreign_key: { to_table: :users } + t.references :sender, null: false, foreign_key: { to_table: :users } + t.string :status, default: "pending" t.timestamps end end From b11e12d61f4c4cf245c851d5b36cf2e787276849 Mon Sep 17 00:00:00 2001 From: Brian Kim Date: Mon, 18 Nov 2024 10:47:36 +0000 Subject: [PATCH 06/15] photogram industrial part 2 --- app/models/like.rb | 5 +++-- app/models/photo.rb | 8 +++++++- app/models/user.rb | 18 +++++++++++++++--- db/migrate/20241117170728_create_likes.rb | 4 ++-- ...20241118103443_add_photos_count_to_users.rb | 5 +++++ .../20241118104233_add_default_to_private.rb | 9 +++++++++ db/schema.rb | 5 +++-- 7 files changed, 44 insertions(+), 10 deletions(-) create mode 100644 db/migrate/20241118103443_add_photos_count_to_users.rb create mode 100644 db/migrate/20241118104233_add_default_to_private.rb diff --git a/app/models/like.rb b/app/models/like.rb index a058da99b..c07a1b85a 100644 --- a/app/models/like.rb +++ b/app/models/like.rb @@ -9,6 +9,7 @@ # photo_id :bigint # class Like < ApplicationRecord - belongs_to :fan, class_name: "User" - belongs_to :photo + belongs_to :fan, class_name: "User", counter_cache: true + belongs_to :photo, counter_cache: true + end diff --git a/app/models/photo.rb b/app/models/photo.rb index ceeed17cf..6b1a08664 100644 --- a/app/models/photo.rb +++ b/app/models/photo.rb @@ -20,6 +20,12 @@ # fk_rails_... (owner_id => users.id) # class Photo < ApplicationRecord - belongs_to :owner, class_name: "User" + belongs_to :owner, class_name: "User", counter_cache: true has_many :comments + has_many :likes + has_many :fans, through: :likes + validates :caption, presence: true + validates :image, presence: true + scope :past_week, -> { where(created_at: 1.week.ago...) } + scope :by_likes, -> { order(likes_count: :desc) } end diff --git a/app/models/user.rb b/app/models/user.rb index 2197c681f..b3eb71128 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -7,7 +7,8 @@ # email :string default(""), not null # encrypted_password :string default(""), not null # likes_count :integer default(0) -# private :boolean +# photos_count :integer +# private :boolean default(TRUE) # remember_created_at :datetime # reset_password_sent_at :datetime # reset_password_token :string @@ -25,6 +26,17 @@ class User < ApplicationRecord devise :database_authenticatable, :registerable, :recoverable, :rememberable, :validatable - has_many :own_photos, class_name: "Photo", foreign_key: "owner_id" - has_many :comments, foreign_key: "author_id" + has_many :accepted_received_follow_requests, -> { accepted }, foreign_key: :recipient_id, class_name: "FollowRequest" + has_many :accepted_sent_follow_requests, -> { accepted }, foreign_key: :sender_id, class_name: "FollowRequest" + has_many :own_photos, foreign_key: :owner_id, class_name: "Photo" + has_many :comments, foreign_key: :author_id + has_many :likes, foreign_key: :fan_id + has_many :sent_follow_requests, foreign_key: :sender_id, class_name: "FollowRequest" + has_many :received_follow_requests, foreign_key: :recipient_id, class_name: "FollowRequest" + has_many :liked_photos, through: :likes, source: :photo + has_many :leaders, through: :accepted_sent_follow_requests, source: :recipient + has_many :followers, through: :accepted_received_follow_requests, source: :sender + has_many :feed, through: :leaders, source: :own_photos + has_many :discover, through: :leaders, source: :liked_photos + validates :username, presence: true, uniqueness: true end diff --git a/db/migrate/20241117170728_create_likes.rb b/db/migrate/20241117170728_create_likes.rb index edeae6943..165b7c07c 100644 --- a/db/migrate/20241117170728_create_likes.rb +++ b/db/migrate/20241117170728_create_likes.rb @@ -1,8 +1,8 @@ class CreateLikes < ActiveRecord::Migration[7.1] def change create_table :likes do |t| - t.bigint :fan_id - t.bigint :photo_id + t.references :fan, null: false, foreign_key: { to_table: :users } + t.references :photo, null: false, foreign_key: true t.timestamps end diff --git a/db/migrate/20241118103443_add_photos_count_to_users.rb b/db/migrate/20241118103443_add_photos_count_to_users.rb new file mode 100644 index 000000000..4b3501b81 --- /dev/null +++ b/db/migrate/20241118103443_add_photos_count_to_users.rb @@ -0,0 +1,5 @@ +class AddPhotosCountToUsers < ActiveRecord::Migration[7.1] + def change + add_column :users, :photos_count, :integer + end +end diff --git a/db/migrate/20241118104233_add_default_to_private.rb b/db/migrate/20241118104233_add_default_to_private.rb new file mode 100644 index 000000000..a3127e446 --- /dev/null +++ b/db/migrate/20241118104233_add_default_to_private.rb @@ -0,0 +1,9 @@ +class AddDefaultToPrivate < ActiveRecord::Migration[7.1] + def change + change_column_default( + :users, + :private, + true + ) + end +end diff --git a/db/schema.rb b/db/schema.rb index d70cefce1..03cfd3f31 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[7.1].define(version: 2024_11_17_170728) do +ActiveRecord::Schema[7.1].define(version: 2024_11_18_104233) do # These are extensions that must be enabled in order to support this database enable_extension "citext" enable_extension "plpgsql" @@ -58,9 +58,10 @@ t.datetime "created_at", null: false t.datetime "updated_at", null: false t.string "username" - t.boolean "private" + t.boolean "private", default: true t.integer "likes_count", default: 0 t.integer "comments_count", default: 0 + t.integer "photos_count" t.index ["username"], name: "index_users_on_username", unique: true end From 2e2b25408f7ebf02d1f090eddd7f57b9561a99bb Mon Sep 17 00:00:00 2001 From: Brian Kim Date: Tue, 19 Nov 2024 17:41:23 +0000 Subject: [PATCH 07/15] Better sample data --- app/views/layouts/application.html.erb | 4 +++- app/views/shared/_navbar.html.erb | 9 ++++++--- config/routes.rb | 3 ++- lib/tasks/dev.rake | 14 ++++++++++++++ 4 files changed, 25 insertions(+), 5 deletions(-) diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index b5337013e..ba13eb3a0 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -15,6 +15,8 @@ <%= render partial: "shared/navbar" %> - <%= yield %> +
+ <%= yield %> +
diff --git a/app/views/shared/_navbar.html.erb b/app/views/shared/_navbar.html.erb index 73ebeeca1..766c3440f 100644 --- a/app/views/shared/_navbar.html.erb +++ b/app/views/shared/_navbar.html.erb @@ -1,4 +1,5 @@