This commit is contained in:
2026-04-06 22:13:54 +00:00
commit a0d0b9b7d7
116 changed files with 2572 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
class ApplicationController < ActionController::Base
# Only allow modern browsers supporting webp images, web push, badges, import maps, CSS nesting, and CSS :has.
allow_browser versions: :modern
skip_forgery_protection
end

View File

@@ -0,0 +1,51 @@
class AsociadoController < ApplicationController
before_action :set_asociado, only: [:show, :update, :destroy]
# GET /asociado
def index
@asociados = Asociado.all
render json: @asociados
end
# GET /asociado/1
def show
render json: @asociado
end
# POST /asociado
def create
@asociado = Asociado.new(asociado_params)
if @asociado.save
render json: @asociado, status: :created, location: @asociado
else
render json: @asociado.errors, status: :unprocessable_entity
end
end
# PATCH/PUT /asociado/1
def update
if @asociado.update(asociado_params)
render json: @asociado
else
render json: @asociado.errors, status: :unprocessable_entity
end
end
# DELETE /asociado/1
def destroy
@asociado.destroy
end
private
# Use callbacks to share common setup or constraints between actions.
def set_asociado
@asociado = Asociado.find(params[:id])
end
# Only allow a trusted parameter "white list" through.
def asociado_params
params.permit(:nombre, :email, :ciudad, :estado, :direccion, :detalles, :ejemplo_de_precios, :tiempo_de_entregas, :telefono, :contacto_de_preferencia_id, :categoria_id, :status_id, :notas, :verificado)
end
end

View File

@@ -0,0 +1,5 @@
class CategoriaController < ApplicationController
def index
render json: Categoria.all
end
end

View File

View File

@@ -0,0 +1,6 @@
class ContactoDePreferenciaController < ApplicationController
def index
@contactos_de_preferencia = ContactoDePreferencia.all
render :json => @contactos_de_preferencia
end
end

View File

@@ -0,0 +1,14 @@
class NotificationController < ApplicationController
# POST /api/notification
def create
puts "Se ha creado una notificación, se va a crear una solicitud"
# se recibe: {"id" => 1, "user_id" => 2, "book_id" => 1, "returned" => 1, "created_at" => "2025-12-30T23:43:23.170Z", "updated_at" => "2026-03-23T21:43:39.950Z", "notification" => {"id" => 1, "user_id" => 2, "book_id" => 1, "returned" => 1, "created_at" => "2025-12-30T23:43:23.170Z", "updated_at" => "2026-03-23T21:43:39.950Z"}}
Solicitud.new(nombre: "User_id #{params["user_id"]}", email: "draft@draft.com", ciudad: "remota", estado: "remoto", direccion: "127.0.0.1", detalles: "Lend", presupuesto: "1.00", tiempo_de_entrega: "inmediato", telefono: "ninguno", contacto_de_preferencia_id: 1, categoria_id: 1, status_id: 1, notas: "Remote call", verificado: "" ).save
render json: {message: "created"}, status: :created
end
end

View File

@@ -0,0 +1,50 @@
class SolicitudController < ApplicationController
before_action :set_solicitud, only: [:show, :update, :destroy]
# GET /solicitud
def index
@solicitudes = Solicitud.all
render :json => @solicitudes
end
# GET /solicitud/1
def show
render :json => @solicitud
end
# POST /solicitud
def create
@solicitud = Solicitud.new(solicitud_params)
if @solicitud.save
render json: @solicitud, status: :created, location: @solicitud
else
render json: @solicitud.errors, status: :unprocessable_entity
end
end
# PATCH/PUT /solicitud/1
def update
if @solicitud.update(solicitud_params)
render json: @solicitud
else
render json: @solicitud.errors, status: :unprocessable_entity
end
end
# DELETE /solicitud/1
def destroy
@solicitud.destroy
end
private
# Use callbacks to share common setup or constraints between actions.
def set_solicitud
@solicitud = Solicitud.find(params[:id])
end
# Only allow a trusted parameter "white list" through.
def solicitud_params
params.permit(:nombre, :email, :ciudad, :estado, :direccion, :detalles, :presupuesto, :tiempo_de_entrega, :telefono, :contacto_de_preferencia_id, :categoria_id, :status_id, :notas, :verificado)
end
end

View File

@@ -0,0 +1,5 @@
class StaticController < ActionController::Base
def index
render file: "#{Rails.root}/public/index.html", layout: false
end
end

View File

@@ -0,0 +1,6 @@
class StatusController < ApplicationController
def index
@status = Status.all
render :json => @status
end
end