ペーパークリップを使用したRails 7でのサイズとコンテンツタイプの検証が機能しない

概要

私は現在、rails 3とruby-1.9.3で構築された古いシステムをrails 7.1.3.2とruby-3.3.0に改修しています。古いアプリではすべての添付ファイルにペーパークリップを使用していたため、新しいアプリでもペーパークリップを使用します。私の古いアプリでは、すべての検証はコンテンツタイプとサイズのように機能しますが、新しいアプリが使用しているRails 7での検証の作業に問題があります。

これは私のモデルコードです。

class User < ApplicationRecord
  base_url = "/home/muhammadans41/Downloads/paperclip/comments/:id/:style/:basename.:extension"
  base_path = "/home/muhammadans41/Downloads/paperclip/comments/:id/:style/:basename.:extension"
  has_attached_file :avatar, storage: :filesystem, styles: { small: "264x204>", large: "800x800>"}, path: "#{base_path}", url: "#{base_url}"
  validates_attachment_content_type :avatar, content_type: ["image/jpeg", "image/jpg", "application/pdf"]
  validates_attachment_size :avatar, :less_than => 2.megabytes
end

これが私のスキーマです

create_table "users", force: :cascade do |t|
  t.string "username"
  t.datetime "created_at", null: false
  t.datetime "updated_at", null: false
  t.string "avatar_file_name"
  t.integer "avatar_file_size"
  t.string "avatar_content_type"
  t.datetime "avatar_updated_at"
end

これが私のフォームです

<%= form_with(model: user) do |form| %>
  <% if user.errors.any? %>
    <div style="color: red">
      <h2><%= pluralize(user.errors.count, "error") %> prohibited this user from being saved:</h2>
      <ul>
        <% user.errors.each do |error| %>
          <li><%= error.full_message %></li>
        <% end %>
      </ul>
    </div>
  <% end %>
  <div>
    <%= form.label :username, style: "display: block" %>
    <%= form.text_field :username %>
  </div>
   <div>
    <%= form.file_field :avatar %>
  </div>
  <div>
    <%= form.submit %>
  </div>
<% end %>

これは私のコントローラーです

class UsersController < ApplicationController
  before_action :set_user, only: %i[ show edit update destroy ]

  # GET /users or /users.json
  def index
    @users = User.all
  end

  # GET /users/1 or /users/1.json
  def show
  end

  # GET /users/new
  def new
    @user = User.new
  end

  # GET /users/1/edit
  def edit
  end

  # POST /users or /users.json
  def create
    @user = User.new(user_params)

    respond_to do |format|
      if @user.save
        format.html { redirect_to user_url(@user), notice: "User was successfully created." }
        format.json { render :show, status: :created, location: @user }
      else
        format.html { render :new, status: :unprocessable_entity }
        format.json { render json: @user.errors, status: :unprocessable_entity }
      end
    end
  end

  # PATCH/PUT /users/1 or /users/1.json
  def update
    respond_to do |format|
      if @user.update(user_params)
        format.html { redirect_to user_url(@user), notice: "User was successfully updated." }
        format.json { render :show, status: :ok, location: @user }
      else
        format.html { render :edit, status: :unprocessable_entity }
        format.json { render json: @user.errors, status: :unprocessable_entity }
      end
    end
  end

  # DELETE /users/1 or /users/1.json
  def destroy
    @user.destroy!

    respond_to do |format|
      format.html { redirect_to users_url, notice: "User was successfully destroyed." }
      format.json { head :no_content }
    end
  end

  private
    # Use callbacks to share common setup or constraints between actions.
    def set_user
      @user = User.find(params[:id])
    end

    # Only allow a list of trusted parameters through.
    def user_params
      params.require(:user).permit(:username, :avatar)
    end
end

問題の説明

  1. Ruby 3.3.0 Rails 7.1.3.2 ペーパークリップ 6.1

解決策

これは、Paperclip が現在使用している Ruby のバージョンと互換性がないように見えます。引数の数に関するエラーは、Ruby の名前付き引数構文の変更に関連している可能性があります。

Paperclip は現在メンテナンスされていませんが、メンテナンスされているフォーク kt-paperclip があります。それに切り替えて、問題が解決するかどうかを確認することをお勧めします。