wiki pages: use names instead of ids in urls.

Switching to using wiki names in URLs instead of IDs:

* https://danbooru.donami.us/wiki_pages/vocaloid
* https://danbooru.donami.us/wiki_pages/hatsune_miku

ID numbers can still be used, but they redirect to the name instead:

* https://danbooru.donami.us/wiki_pages/11 (redirects to /wiki_pages/touhou).

Numeric tags are prefixed with '~' to distinguish them from IDs:

* https://danbooru.donami.us/wiki_pages/2019 (the wiki with id 2019)
* https://danbooru.donami.us/wiki_pages/~2019 (the wiki for the tag named 2019)

The tag names 'new' and 'search' are disallowed to prevent conflicts
with existing routes:

* https://danbooru.donami.us/wiki_pages/new
* https://danbooru.donami.us/wiki_pages/search
This commit is contained in:
evazion
2019-10-31 04:07:21 -05:00
parent 0ccfb3f5f6
commit 3a908f84bb
14 changed files with 76 additions and 38 deletions

View File

@@ -11,7 +11,7 @@ class WikiPagesController < ApplicationController
end
def edit
@wiki_page = WikiPage.find(params[:id])
@wiki_page, _ = WikiPage.find_by_id_or_title(params[:id])
respond_with(@wiki_page)
end
@@ -30,18 +30,16 @@ class WikiPagesController < ApplicationController
end
def show
if params[:id] =~ /\A\d+\z/
@wiki_page = WikiPage.find(params[:id])
else
@wiki_page = WikiPage.titled(params[:id]).first
end
@wiki_page, found_by = WikiPage.find_by_id_or_title(params[:id])
if @wiki_page.present?
respond_with(@wiki_page)
elsif request.format.html?
if request.format.html? && @wiki_page.blank? && found_by == :title
redirect_to show_or_new_wiki_pages_path(title: params[:id])
else
elsif request.format.html? && @wiki_page.present? && found_by == :id
redirect_to @wiki_page
elsif @wiki_page.blank?
raise ActiveRecord::RecordNotFound
else
respond_with(@wiki_page)
end
end
@@ -51,19 +49,19 @@ class WikiPagesController < ApplicationController
end
def update
@wiki_page = WikiPage.find(params[:id])
@wiki_page, _ = WikiPage.find_by_id_or_title(params[:id])
@wiki_page.update(wiki_page_params(:update))
respond_with(@wiki_page)
end
def destroy
@wiki_page = WikiPage.find(params[:id])
@wiki_page, _ = WikiPage.find_by_id_or_title(params[:id])
@wiki_page.update(is_deleted: true)
respond_with(@wiki_page)
end
def revert
@wiki_page = WikiPage.find(params[:id])
@wiki_page, _ = WikiPage.find_by_id_or_title(params[:id])
@version = @wiki_page.versions.find(params[:version_id])
@wiki_page.revert_to!(@version)
flash[:notice] = "Page was reverted"