2013-03-24 18:17:03 -04:00
|
|
|
class SnippetsController < ApplicationController
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :snippet, only: [:show, :edit, :destroy, :update, :raw]
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2015-10-29 16:42:29 -04:00
|
|
|
# Allow read snippet
|
2015-11-25 14:24:07 -05:00
|
|
|
before_action :authorize_read_snippet!, only: [:show, :raw]
|
2015-10-29 16:42:29 -04:00
|
|
|
|
2011-12-15 16:57:46 -05:00
|
|
|
# Allow modify snippet
|
2015-06-26 10:44:21 -04:00
|
|
|
before_action :authorize_update_snippet!, only: [:edit, :update]
|
2013-06-18 10:43:49 -04:00
|
|
|
|
2011-12-15 16:57:46 -05:00
|
|
|
# Allow destroy snippet
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :authorize_admin_snippet!, only: [:destroy]
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2015-04-16 08:03:37 -04:00
|
|
|
skip_before_action :authenticate_user!, only: [:index, :user_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
|
|
|
respond_to :html
|
|
|
|
|
|
|
|
def index
|
2015-04-02 21:22:54 -04:00
|
|
|
if params[:username].present?
|
|
|
|
@user = User.find_by(username: params[:username])
|
|
|
|
|
|
|
|
render_404 and return unless @user
|
|
|
|
|
|
|
|
@snippets = SnippetsFinder.new.execute(current_user, {
|
|
|
|
filter: :by_user,
|
|
|
|
user: @user,
|
|
|
|
scope: params[:scope] }).
|
|
|
|
page(params[:page]).per(PER_PAGE)
|
|
|
|
|
2015-09-08 09:49:20 -04:00
|
|
|
render 'index'
|
2013-06-05 15:25:27 -04:00
|
|
|
else
|
2015-09-08 10:14:14 -04:00
|
|
|
redirect_to(current_user ? dashboard_snippets_path : explore_snippets_path)
|
2013-06-05 15:25:27 -04:00
|
|
|
end
|
2011-10-16 17:07:10 -04:00
|
|
|
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
|
|
|
|
|
|
|
|
def create
|
2015-03-07 14:47:06 -05:00
|
|
|
@snippet = CreateSnippetService.new(nil, current_user,
|
|
|
|
snippet_params).execute
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2015-03-07 14:47:06 -05:00
|
|
|
respond_with @snippet.becomes(Snippet)
|
2011-10-16 17:07:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2015-03-07 14:47:06 -05:00
|
|
|
UpdateSnippetService.new(nil, current_user, @snippet,
|
|
|
|
snippet_params).execute
|
|
|
|
respond_with @snippet.becomes(Snippet)
|
2011-10-16 17:07:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2013-03-24 18:17:03 -04:00
|
|
|
return access_denied! unless can?(current_user, :admin_personal_snippet, @snippet)
|
2011-10-16 17:07:10 -04:00
|
|
|
|
|
|
|
@snippet.destroy
|
|
|
|
|
2013-03-24 18:17:03 -04:00
|
|
|
redirect_to snippets_path
|
2011-10-16 17:07:10 -04:00
|
|
|
end
|
2011-12-15 16:57:46 -05:00
|
|
|
|
2012-12-14 00:14:05 -05:00
|
|
|
def raw
|
2012-06-12 14:41:46 -04:00
|
|
|
send_data(
|
|
|
|
@snippet.content,
|
2014-08-16 08:55:36 -04:00
|
|
|
type: 'text/plain; charset=utf-8',
|
2012-08-10 18:07:50 -04:00
|
|
|
disposition: 'inline',
|
2014-12-12 06:28:48 -05:00
|
|
|
filename: @snippet.sanitized_file_name
|
2012-06-12 14:41:46 -04:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2011-12-15 16:57:46 -05:00
|
|
|
protected
|
2012-06-12 14:41:46 -04:00
|
|
|
|
2012-02-21 17:31:18 -05:00
|
|
|
def snippet
|
2014-10-08 09:44:25 -04:00
|
|
|
@snippet ||= if current_user
|
|
|
|
PersonalSnippet.where("author_id = ? OR visibility_level IN (?)",
|
|
|
|
current_user.id,
|
|
|
|
[Snippet::PUBLIC, Snippet::INTERNAL]).
|
|
|
|
find(params[:id])
|
|
|
|
else
|
2015-10-29 16:42:29 -04:00
|
|
|
PersonalSnippet.find(params[:id])
|
2014-10-08 09:44:25 -04:00
|
|
|
end
|
2012-02-21 17:31:18 -05:00
|
|
|
end
|
2011-12-15 16:57:46 -05:00
|
|
|
|
2015-11-02 11:03:42 -05:00
|
|
|
def authorize_read_snippet!
|
2015-10-29 16:42:29 -04:00
|
|
|
authenticate_user! unless can?(current_user, :read_personal_snippet, @snippet)
|
|
|
|
end
|
|
|
|
|
2015-06-26 10:44:21 -04:00
|
|
|
def authorize_update_snippet!
|
2015-06-26 09:55:56 -04:00
|
|
|
return render_404 unless can?(current_user, :update_personal_snippet, @snippet)
|
2011-12-15 16:57:46 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_admin_snippet!
|
2013-03-24 18:17:03 -04:00
|
|
|
return render_404 unless can?(current_user, :admin_personal_snippet, @snippet)
|
2013-03-18 17:33:41 -04:00
|
|
|
end
|
2013-06-18 10:43:49 -04:00
|
|
|
|
2014-06-26 11:51:11 -04:00
|
|
|
def snippet_params
|
2014-10-08 09:44:25 -04:00
|
|
|
params.require(:personal_snippet).permit(:title, :content, :file_name, :private, :visibility_level)
|
|
|
|
end
|
2011-10-16 17:07:10 -04:00
|
|
|
end
|