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
- #select_options ⇒ 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 RedirectHelper
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
120 121 122 123 124 125 |
# File 'app/controllers/contents_controller.rb', line 120 def api_index @contents = ::Queries::Content::Filter.new(api_params).all .order('contents.otu_id, contents.topic_id') .page(params[:page]).per(params[:per]) render '/contents/api/v1/index' end |
#api_params ⇒ Object (private)
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
# File 'app/controllers/contents_controller.rb', line 134 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
128 129 130 |
# File 'app/controllers/contents_controller.rb', line 128 def api_show render '/contents/api/v1/show' end |
#autocomplete ⇒ Object
96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
# File 'app/controllers/contents_controller.rb', line 96 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)
173 174 175 |
# File 'app/controllers/contents_controller.rb', line 173 def content_params params.require(:content).permit(:text, :otu_id, :topic_id, :is_public) 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 73 74 75 76 77 |
# File 'app/controllers/contents_controller.rb', line 66 def destroy @content.destroy respond_to do |format| if @content.destroyed? format.html { destroy_redirect @content, notice: 'Content was successfully destroyed.' } format.json { head :no_content} else format.html { destroy_redirect @content, notice: 'Content was not destroyed, ' + @content.errors..join('; ') } format.json { render json: @content.errors, status: :unprocessable_entity } end end end |
#download ⇒ Object
GET /contents/download
112 113 114 115 116 117 |
# File 'app/controllers/contents_controller.rb', line 112 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)
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
# File 'app/controllers/contents_controller.rb', line 151 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
79 80 81 |
# File 'app/controllers/contents_controller.rb', line 79 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
83 84 85 86 87 88 89 90 |
# File 'app/controllers/contents_controller.rb', line 83 def search if params[:id].blank? redirect_to content_path, alert: '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 |
#select_options ⇒ Object
92 93 94 |
# File 'app/controllers/contents_controller.rb', line 92 def @contents = Content.select_optimized(sessions_current_user_id, sessions_current_project_id) end |
#set_content ⇒ Object (private)
168 169 170 171 |
# File 'app/controllers/contents_controller.rb', line 168 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 |