2018-09-14 01:42:05 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-06-16 11:08:32 -04:00
|
|
|
class SnippetsController < Snippets::ApplicationController
|
2017-02-06 10:04:00 -05:00
|
|
|
include SnippetsActions
|
2017-10-11 05:03:19 -04:00
|
|
|
include PreviewMarkdown
|
2020-06-16 11:08:32 -04:00
|
|
|
include ToggleAwardEmoji
|
2021-08-11 02:10:02 -04:00
|
|
|
include SpammableActions::AkismetMarkAsSpamAction
|
2018-02-06 08:33:18 -05:00
|
|
|
|
2020-10-12 11:08:32 -04:00
|
|
|
before_action :snippet, only: [:show, :edit, :raw, :toggle_award_emoji, :mark_as_spam]
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2020-10-12 11:08:32 -04:00
|
|
|
before_action :authorize_create_snippet!, only: :new
|
2017-04-30 13:15:20 -04:00
|
|
|
before_action :authorize_read_snippet!, only: [:show, :raw]
|
2020-10-12 11:08:32 -04:00
|
|
|
before_action :authorize_update_snippet!, only: :edit
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2017-04-30 13:15:20 -04:00
|
|
|
skip_before_action :authenticate_user!, only: [:index, :show, :raw]
|
2014-10-08 09:44:25 -04:00
|
|
|
|
2015-05-01 04:39:11 -04:00
|
|
|
layout 'snippets'
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2016-05-08 04:27:33 -04:00
|
|
|
def index
|
|
|
|
if params[:username].present?
|
2018-10-18 05:06:44 -04:00
|
|
|
@user = UserFinder.new(params[:username]).find_by_username!
|
2016-05-08 04:27:33 -04:00
|
|
|
|
2020-07-10 14:09:45 -04:00
|
|
|
@snippets = SnippetsFinder.new(current_user, author: @user, scope: params[:scope], sort: sort_param)
|
2019-09-02 07:12:20 -04:00
|
|
|
.execute
|
|
|
|
.page(params[:page])
|
|
|
|
.inc_author
|
2021-03-15 20:09:44 -04:00
|
|
|
.inc_statistics
|
2019-09-02 07:12:20 -04:00
|
|
|
|
2019-09-03 13:45:00 -04:00
|
|
|
return if redirect_out_of_range(@snippets)
|
|
|
|
|
2019-09-02 07:12:20 -04:00
|
|
|
@noteable_meta_data = noteable_meta_data(@snippets, 'Snippet')
|
2016-05-08 04:27:33 -04:00
|
|
|
|
|
|
|
render 'index'
|
|
|
|
else
|
|
|
|
redirect_to(current_user ? dashboard_snippets_path : explore_snippets_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
def new
|
2013-03-25 12:32:10 -04:00
|
|
|
@snippet = PersonalSnippet.new
|
2011-10-16 17:07:10 -04:00
|
|
|
end
|
|
|
|
|
2011-12-15 16:57:46 -05:00
|
|
|
protected
|
2012-06-12 14:41:46 -04:00
|
|
|
|
2016-06-03 05:44:04 -04:00
|
|
|
alias_method :awardable, :snippet
|
2017-02-01 13:15:59 -05:00
|
|
|
alias_method :spammable, :snippet
|
2011-12-15 16:57:46 -05:00
|
|
|
|
2017-06-29 13:06:35 -04:00
|
|
|
def spammable_path
|
|
|
|
snippet_path(@snippet)
|
|
|
|
end
|
2011-10-16 17:07:10 -04:00
|
|
|
end
|