Class: AttributionsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- AttributionsController
- Defined in:
- app/controllers/attributions_controller.rb
Constant Summary
Constants included from ProjectsHelper
ProjectsHelper::CLASSIFIER, ProjectsHelper::CLASSIFIER_ANNOTATION
Instance Method Summary collapse
- #attribution_params ⇒ Object private
-
#create ⇒ Object
POST /attribution POST /attribution.json.
-
#destroy ⇒ Object
DELETE /attributions/1 DELETE /attributions/1.json.
-
#edit ⇒ Object
GET /attributions/1/edit.
-
#index ⇒ Object
GET /attributions GET /attributions.json.
- #licenses ⇒ Object
- #list ⇒ Object
- #role_types ⇒ Object
- #set_attribution ⇒ Object private
-
#show ⇒ Object
GET /attributions/1 GET /attributions/1.json.
-
#update ⇒ Object
PATCH/PUT /attributions/1 PATCH/PUT /attributions/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
#cumulative_gb_per_year, #document_cumulative_gb_per_year, #document_gb_per_year, #gb_per_year, #image_cumulative_gb_per_year, #image_gb_per_year, #invalid_object, #project_classification, #project_link, #project_matches, #project_tag, #projects_list, #projects_search_form, #taxonworks_classification, #week_in_review_graphs
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
#attribution_params ⇒ Object (private)
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'app/controllers/attributions_controller.rb', line 94 def attribution_params params.require(:attribution).permit( :copyright_year, :license, :attribution_object_type, :attribution_object_id, :annotated_global_entity, :_destroy, roles_attributes: [ :id, :_destroy, :type, :person_id, :organization_id, :position, person_attributes: [ :last_name, :first_name, :suffix, :prefix ]]) end |
#create ⇒ Object
POST /attribution POST /attribution.json
42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'app/controllers/attributions_controller.rb', line 42 def create @attribution = Attribution.new(attribution_params) respond_to do |format| if @attribution.save format.html { redirect_to @attribution, notice: 'Attribution was successfully created.' } format.json { render :show, status: :created, location: @attribution } else format.html { render :new } format.json { render json: @attribution.errors, status: :unprocessable_entity } end end end |
#destroy ⇒ Object
DELETE /attributions/1 DELETE /attributions/1.json
72 73 74 75 76 77 78 |
# File 'app/controllers/attributions_controller.rb', line 72 def destroy @attribution.destroy respond_to do |format| format.html { redirect_to attributions_url, notice: 'Attribution was successfully destroyed.' } format.json { head :no_content } end end |
#edit ⇒ Object
GET /attributions/1/edit
33 34 |
# File 'app/controllers/attributions_controller.rb', line 33 def edit end |
#index ⇒ Object
GET /attributions GET /attributions.json
9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'app/controllers/attributions_controller.rb', line 9 def index respond_to do |format| format.html do @recent_objects = Attribution.recent_from_project_id(sessions_current_project_id).order(updated_at: :desc).limit(10) render '/shared/data/all/index' end format.json { @attributions = ::Queries::Attribution::Filter.new(params).all.where(project_id: sessions_current_project_id). page(params[:page]).per(params[:per] || 500) } end end |
#licenses ⇒ Object
80 81 82 |
# File 'app/controllers/attributions_controller.rb', line 80 def licenses render json: CREATIVE_COMMONS_LICENSES end |
#list ⇒ Object
36 37 38 |
# File 'app/controllers/attributions_controller.rb', line 36 def list @attributions = Attribution.with_project_id(sessions_current_project_id).page(params[:page]) end |
#role_types ⇒ Object
84 85 86 |
# File 'app/controllers/attributions_controller.rb', line 84 def role_types render json: ['AttributionCreator', 'AttributionOwner', 'AttributionEditor', 'AttributionCopyrightHolder'] end |
#set_attribution ⇒ Object (private)
90 91 92 |
# File 'app/controllers/attributions_controller.rb', line 90 def set_attribution @attribution = Attribution.where(project_id: sessions_current_project_id).find(params[:id]) end |
#show ⇒ Object
GET /attributions/1 GET /attributions/1.json
24 25 |
# File 'app/controllers/attributions_controller.rb', line 24 def show end |
#update ⇒ Object
PATCH/PUT /attributions/1 PATCH/PUT /attributions/1.json
58 59 60 61 62 63 64 65 66 67 68 |
# File 'app/controllers/attributions_controller.rb', line 58 def update respond_to do |format| if @attribution.update(attribution_params) format.html { redirect_to @attribution, notice: 'Attribution was successfully updated.' } format.json { render :show, status: :ok, location: @attribution } else format.html { render :edit } format.json { render json: @attribution.errors, status: :unprocessable_entity } end end end |