Files
bit/app/controllers/links_controller.rb
T
Juan Rodriguez 54bff064d1 feat: Fecth link click_counter on come back to site
LinksController counter route, tests updated, render link created_by field, order user links by desc
2021-06-14 17:03:11 -05:00

45 lines
963 B
Ruby

# frozen_string_literal: true
class LinksController < ApplicationController
before_action :authenticate, only: [:create]
def redirect
@link = Link.find_by_slug(params[:slug])
if @link.nil?
render file: "#{Rails.root}/public/404", status: :not_found
else
@link.update(click_counter: @link.click_counter + 1)
redirect_to @link.url
end
end
def counter
@link = Link.find_by_slug(params[:slug])
if @link
render json: @link.click_counter
else
render json: nil, status: :not_found
end
end
def create
@link = Link.find_or_create_by(url: link_params[:url]) do |link|
link.user = @current_user if @current_user
end
if @link.errors.any?
render json: @link.errors, status: :unprocessable_entity
else
render partial: 'links/show', locals: { link: @link }, status: :ok
end
end
private
def link_params
params.require(:link).permit(:url)
end
end