* Initial automatic cleanup with rubocop * Fix syntax error introduced by rubocop * Cleanup seeds file * Cleanup lib folder * Exclude bin folder because it contains auto generated files * Make Rubocop a little bit more chatty * Block length should not include comments in the count * Cleanup config folder * Cleanup specs * Updated Rubocop version and generated a todo file * Fix broken ArticlesApi spec * Fix tests * Restored rubocop pre-commit hook
73 lines
2.4 KiB
Ruby
73 lines
2.4 KiB
Ruby
module Api
|
|
module V0
|
|
class ArticlesController < ApiController
|
|
before_action :set_cache_control_headers, only: [:index]
|
|
caches_action :show,
|
|
cache_path: Proc.new { |c| c.params.permit! },
|
|
expires_in: 5.minutes
|
|
respond_to :json
|
|
|
|
before_action :cors_preflight_check
|
|
after_action :cors_set_access_control_headers
|
|
|
|
def index
|
|
@articles = ArticleApiIndexService.new(params).get
|
|
set_surrogate_key_header "articles_api_#{params[:tag]}_#{params[:page]}_#{params[:userame]}_#{params[:signature]}_#{params[:state]}"
|
|
end
|
|
|
|
def show
|
|
@article = if params[:id] == "by_path"
|
|
Article.includes(:user).find_by_path(params[:url])&.decorate
|
|
else
|
|
Article.includes(:user).find(params[:id])&.decorate
|
|
end
|
|
not_found unless @article&.published
|
|
end
|
|
|
|
def onboarding
|
|
tag_list = if params[:tag_list].present?
|
|
params[:tag_list].split(",")
|
|
else
|
|
["career", "discuss", "productivity"]
|
|
end
|
|
@articles = []
|
|
4.times do
|
|
@articles << Suggester::Articles::Classic.new.get(tag_list)
|
|
end
|
|
Article.tagged_with(tag_list, any: true).
|
|
order("published_at DESC").
|
|
where("positive_reactions_count > ? OR comments_count > ? AND published = ?", 10, 3, true).
|
|
limit(15).each do |article|
|
|
@articles << article
|
|
end
|
|
@articles = @articles.uniq.sample(6)
|
|
end
|
|
|
|
def create
|
|
@article = ArticleCreationService.new(current_user, article_params, {}).create!
|
|
render json: if @article.persisted?
|
|
@article.to_json(only: [:id], methods: [:current_state_path])
|
|
else
|
|
@article.errors.to_json
|
|
end
|
|
end
|
|
|
|
def update
|
|
@article = Article.find(params[:id])
|
|
render json: if @article.update(article_params)
|
|
@article.to_json(only: [:id], methods: [:current_state_path])
|
|
else
|
|
@article.errors.to_json
|
|
end
|
|
end
|
|
|
|
def article_params
|
|
params["article"].transform_keys!(&:underscore)
|
|
params.require(:article).permit(
|
|
:title, :body_markdown, :user_id, :main_image, :published, :description,
|
|
:tag_list
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|