Class: ContentsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- ContentsController
- Defined in:
- app/controllers/contents_controller.rb
Instance Method Summary collapse
-
#api_index ⇒ Object
GET /api/v1/content.
- #api_params ⇒ Object private
-
#api_show ⇒ Object
GET /api/v1/content/:id.
- #autocomplete ⇒ Object
- #content_params ⇒ Object private
-
#create ⇒ Object
POST /contents POST /contents.json.
-
#destroy ⇒ Object
DELETE /contents/1 DELETE /contents/1.json.
-
#download ⇒ Object
GET /contents/download.
-
#edit ⇒ Object
GET /contents/1/edit.
- #filter_params ⇒ Object private
-
#index ⇒ Object
GET /contents GET /contents.json.
- #list ⇒ Object
-
#new ⇒ Object
GET /contents/new.
- #search ⇒ Object
- #set_content ⇒ Object private
-
#show ⇒ Object
GET /contents/1 GET /contents/1.json.
-
#update ⇒ Object
PATCH/PUT /contents/1 PATCH/PUT /contents/1.json.
Methods included from DataControllerConfiguration::ProjectDataControllerConfiguration
Methods included from RequestType
Methods included from LogRecent
Methods included from Cookies
#digest_cookie, #digested_cookie_exists?
Methods included from Whitelist
Methods included from ProjectsHelper
#invalid_object, #project_link, #project_matches, #project_tag, #projects_list, #projects_search_form
Methods included from Api::Intercept
Methods included from TokenAuthentication
#intercept_project, #intercept_user, #intercept_user_or_project, #project_token_authenticate, #token_authenticate
Instance Method Details
#api_index ⇒ Object
GET /api/v1/content
111 112 113 114 115 116 117 |
# File 'app/controllers/contents_controller.rb', line 111 def api_index @contents = Queries::Content::Filter.new(api_params).all .includes(:topic) .order('otus.id, controlled_vocabulary_terms.name') .page(params[:page]).per(params[:per]) render '/contents/api/v1/index' end |
#api_params ⇒ Object (private)
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'app/controllers/contents_controller.rb', line 126 def api_params params.permit( :otu_id, :topic_id, :text, :exact, :citations, :depictions, :user_date_end, :user_date_start, :user_id, :user_target, topic_id: [], otu_id: [] ).to_h.merge(project_id: sessions_current_project_id) end |
#api_show ⇒ Object
GET /api/v1/content/:id
120 121 122 |
# File 'app/controllers/contents_controller.rb', line 120 def api_show render '/contents/api/v1/show' end |
#autocomplete ⇒ Object
87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'app/controllers/contents_controller.rb', line 87 def autocomplete @contents = Content.find_for_autocomplete(params.merge(project_id: sessions_current_project_id)) data = @contents.collect do |t| {id: t.id, label: ApplicationController.helpers.taxon_works_content_tag(t), response_values: { params[:method] => t.id }, label_html: ApplicationController.helpers.taxon_works_content_tag(t) } end render json: data end |
#content_params ⇒ Object (private)
165 166 167 |
# File 'app/controllers/contents_controller.rb', line 165 def content_params params.require(:content).permit(:text, :otu_id, :topic_id) end |
#create ⇒ Object
POST /contents POST /contents.json
36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'app/controllers/contents_controller.rb', line 36 def create @content = Content.new(content_params) respond_to do |format| if @content.save format.html { redirect_to url_for(@content), notice: 'Content was successfully created.' } format.json { render :show, status: :created, location: @content } else format.html { render :new } format.json { render json: @content.errors, status: :unprocessable_entity } end end end |
#destroy ⇒ Object
DELETE /contents/1 DELETE /contents/1.json
66 67 68 69 70 71 72 |
# File 'app/controllers/contents_controller.rb', line 66 def destroy @content.destroy! respond_to do |format| format.html { redirect_to contents_url } format.json { head :no_content } end end |
#download ⇒ Object
GET /contents/download
103 104 105 106 107 108 |
# File 'app/controllers/contents_controller.rb', line 103 def download send_data( Export::Download.generate_csv(Content.where(project_id: sessions_current_project_id)), type: 'text', filename: "contents_#{DateTime.now}.csv") end |
#edit ⇒ Object
GET /contents/1/edit
31 32 |
# File 'app/controllers/contents_controller.rb', line 31 def edit end |
#filter_params ⇒ Object (private)
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
# File 'app/controllers/contents_controller.rb', line 143 def filter_params params.permit( :otu_id, :topic_id, :text, :exact, :citations, :depictions, :user_date_end, :user_date_start, :user_id, :user_target, topic_id: [], otu_id: [] ).to_h.merge(project_id: sessions_current_project_id) end |
#index ⇒ Object
GET /contents GET /contents.json
8 9 10 11 12 13 14 15 16 17 18 |
# File 'app/controllers/contents_controller.rb', line 8 def index respond_to do |format| format.html do @recent_objects = Content.where(project_id: sessions_current_project_id).recently_updated.limit(10) render '/shared/data/all/index' end format.json { @contents = Queries::Content::Filter.new(filter_params).all.page(params[:page]).per(params[:per]) } end end |
#list ⇒ Object
74 75 76 |
# File 'app/controllers/contents_controller.rb', line 74 def list @contents = Content.with_project_id(sessions_current_project_id).order(:id).page(params[:page]) end |
#new ⇒ Object
GET /contents/new
26 27 28 |
# File 'app/controllers/contents_controller.rb', line 26 def new @content = Content.new end |
#search ⇒ Object
78 79 80 81 82 83 84 85 |
# File 'app/controllers/contents_controller.rb', line 78 def search if params[:id].blank? redirect_to content_path, notice: 'You must select an item from the list with a click or tab press before clicking show.' else redirect_to content_path(params[:id]) end end |
#set_content ⇒ Object (private)
160 161 162 163 |
# File 'app/controllers/contents_controller.rb', line 160 def set_content @content = Content.with_project_id(sessions_current_project_id).find(params[:id]) @recent_object = @content end |
#show ⇒ Object
GET /contents/1 GET /contents/1.json
22 23 |
# File 'app/controllers/contents_controller.rb', line 22 def show end |
#update ⇒ Object
PATCH/PUT /contents/1 PATCH/PUT /contents/1.json
52 53 54 55 56 57 58 59 60 61 62 |
# File 'app/controllers/contents_controller.rb', line 52 def update respond_to do |format| if @content.update(content_params) format.html { redirect_to url_for(@content), notice: 'Content was successfully updated.' } format.json { render :show, status: :ok, location: @content } else format.html { render :edit } format.json { render json: @content.errors, status: :unprocessable_entity } end end end |