2013-06-23 12:47:22 -04:00
|
|
|
class Projects::WikisController < Projects::ApplicationController
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :authorize_read_wiki!
|
2015-06-26 10:44:21 -04:00
|
|
|
before_action :authorize_create_wiki!, only: [:edit, :create, :history]
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :authorize_admin_wiki!, only: :destroy
|
|
|
|
before_action :load_project_wiki
|
2013-01-11 14:04:14 -05:00
|
|
|
|
2012-08-09 00:34:29 -04:00
|
|
|
def pages
|
2016-03-19 17:37:54 -04:00
|
|
|
@wiki_pages = Kaminari.paginate_array(@project_wiki.pages).page(params[:page])
|
2016-12-26 20:54:36 -05:00
|
|
|
@wiki_entries = WikiPage.group_by_directory(@wiki_pages)
|
2012-08-09 00:34:29 -04:00
|
|
|
end
|
|
|
|
|
2012-02-19 09:35:31 -05:00
|
|
|
def show
|
2014-04-09 07:35:01 -04:00
|
|
|
@page = @project_wiki.find_page(params[:id], params[:version_id])
|
2012-02-21 17:31:18 -05:00
|
|
|
|
2014-04-09 07:35:01 -04:00
|
|
|
if @page
|
2012-07-26 07:45:17 -04:00
|
|
|
render 'show'
|
2014-03-28 16:15:25 -04:00
|
|
|
elsif file = @project_wiki.find_file(params[:id], params[:version_id])
|
2016-06-08 10:09:12 -04:00
|
|
|
response.headers['Content-Security-Policy'] = "default-src 'none'"
|
|
|
|
response.headers['X-Content-Security-Policy'] = "default-src 'none'"
|
|
|
|
|
2015-02-03 00:59:28 -05:00
|
|
|
if file.on_disk?
|
|
|
|
send_file file.on_disk_path, disposition: 'inline'
|
|
|
|
else
|
|
|
|
send_data(
|
|
|
|
file.raw_data,
|
|
|
|
type: file.mime_type,
|
|
|
|
disposition: 'inline',
|
|
|
|
filename: file.name
|
|
|
|
)
|
|
|
|
end
|
2012-07-26 07:45:17 -04:00
|
|
|
else
|
2015-06-26 09:55:56 -04:00
|
|
|
return render('empty') unless can?(current_user, :create_wiki, @project)
|
2014-04-09 07:35:01 -04:00
|
|
|
@page = WikiPage.new(@project_wiki)
|
|
|
|
@page.title = params[:id]
|
2013-03-03 22:43:52 -05:00
|
|
|
|
|
|
|
render 'edit'
|
2012-02-19 09:35:31 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
2014-04-09 07:35:01 -04:00
|
|
|
@page = @project_wiki.find_page(params[:id])
|
2013-03-03 22:43:52 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2015-06-26 09:55:56 -04:00
|
|
|
return render('empty') unless can?(current_user, :create_wiki, @project)
|
2013-03-03 22:43:52 -05:00
|
|
|
|
2016-04-26 06:54:49 -04:00
|
|
|
@page = @project_wiki.find_page(params[:id])
|
2017-03-20 09:53:23 -04:00
|
|
|
@page = WikiPages::UpdateService.new(@project, current_user, wiki_params).execute(@page)
|
2016-04-26 06:54:49 -04:00
|
|
|
|
2017-03-20 09:53:23 -04:00
|
|
|
if @page.valid?
|
2015-04-07 11:58:12 -04:00
|
|
|
redirect_to(
|
|
|
|
namespace_project_wiki_path(@project.namespace, @project, @page),
|
|
|
|
notice: 'Wiki was successfully updated.'
|
|
|
|
)
|
2013-03-03 22:43:52 -05:00
|
|
|
else
|
|
|
|
render 'edit'
|
|
|
|
end
|
2012-02-19 09:35:31 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2016-02-28 02:26:52 -05:00
|
|
|
@page = WikiPages::CreateService.new(@project, current_user, wiki_params).execute
|
2013-03-03 22:43:52 -05:00
|
|
|
|
2016-04-04 23:36:43 -04:00
|
|
|
if @page.persisted?
|
2015-01-24 13:02:58 -05:00
|
|
|
redirect_to(
|
|
|
|
namespace_project_wiki_path(@project.namespace, @project, @page),
|
|
|
|
notice: 'Wiki was successfully updated.'
|
|
|
|
)
|
2013-03-03 22:43:52 -05:00
|
|
|
else
|
|
|
|
render action: "edit"
|
2012-02-19 09:35:31 -05:00
|
|
|
end
|
|
|
|
end
|
2012-02-19 14:52:05 -05:00
|
|
|
|
|
|
|
def history
|
2014-04-09 07:35:01 -04:00
|
|
|
@page = @project_wiki.find_page(params[:id])
|
2013-04-03 14:05:10 -04:00
|
|
|
|
2014-04-09 07:35:01 -04:00
|
|
|
unless @page
|
2015-01-24 13:02:58 -05:00
|
|
|
redirect_to(
|
|
|
|
namespace_project_wiki_path(@project.namespace, @project, :home),
|
|
|
|
notice: "Page not found"
|
|
|
|
)
|
2014-04-09 07:35:01 -04:00
|
|
|
end
|
2012-02-19 14:52:05 -05:00
|
|
|
end
|
2013-01-11 14:04:14 -05:00
|
|
|
|
2012-02-19 09:35:31 -05:00
|
|
|
def destroy
|
2014-04-09 07:35:01 -04:00
|
|
|
@page = @project_wiki.find_page(params[:id])
|
2016-12-20 08:32:43 -05:00
|
|
|
WikiPages::DestroyService.new(@project, current_user).execute(@page)
|
2014-04-09 07:35:01 -04:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
redirect_to(
|
|
|
|
namespace_project_wiki_path(@project.namespace, @project, :home),
|
|
|
|
notice: "Page was successfully deleted"
|
|
|
|
)
|
2013-03-03 22:43:52 -05:00
|
|
|
end
|
2012-02-19 09:35:31 -05:00
|
|
|
|
2016-04-13 08:17:42 -04:00
|
|
|
def preview_markdown
|
2016-03-30 14:04:58 -04:00
|
|
|
text = params[:text]
|
|
|
|
|
2016-05-26 07:16:43 -04:00
|
|
|
ext = Gitlab::ReferenceExtractor.new(@project, current_user)
|
|
|
|
ext.analyze(text, author: current_user)
|
2016-03-30 14:04:58 -04:00
|
|
|
|
|
|
|
render json: {
|
2016-06-08 01:02:50 -04:00
|
|
|
body: view_context.markdown(text, pipeline: :wiki, project_wiki: @project_wiki, page_slug: params[:id]),
|
2016-03-30 14:04:58 -04:00
|
|
|
references: {
|
|
|
|
users: ext.users.map(&:username)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2013-03-03 22:43:52 -05:00
|
|
|
def git_access
|
2012-02-19 09:35:31 -05:00
|
|
|
end
|
2013-03-03 22:43:52 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2014-04-09 07:35:01 -04:00
|
|
|
def load_project_wiki
|
|
|
|
@project_wiki = ProjectWiki.new(@project, current_user)
|
2013-03-03 22:43:52 -05:00
|
|
|
|
|
|
|
# Call #wiki to make sure the Wiki Repo is initialized
|
2014-04-09 07:35:01 -04:00
|
|
|
@project_wiki.wiki
|
2016-11-16 13:10:16 -05:00
|
|
|
|
2016-12-26 20:54:36 -05:00
|
|
|
@sidebar_wiki_entries = WikiPage.group_by_directory(@project_wiki.pages.first(15))
|
2015-10-03 01:56:37 -04:00
|
|
|
rescue ProjectWiki::CouldNotCreateWikiError
|
2013-03-03 22:43:52 -05:00
|
|
|
flash[:notice] = "Could not create Wiki Repository at this time. Please try again later."
|
2015-03-02 21:11:50 -05:00
|
|
|
redirect_to project_path(@project)
|
2013-03-03 22:43:52 -05:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
def wiki_params
|
2017-03-25 21:47:10 -04:00
|
|
|
params.require(:wiki).permit(:title, :content, :format, :message)
|
2013-03-03 22:43:52 -05:00
|
|
|
end
|
2012-02-19 09:35:31 -05:00
|
|
|
end
|