Class: AttributionsController

Inherits:
ApplicationController show all
Includes:
DataControllerConfiguration::ProjectDataControllerConfiguration
Defined in:
app/controllers/attributions_controller.rb

Constant Summary

Constants included from ProjectsHelper

ProjectsHelper::CLASSIFIER, ProjectsHelper::CLASSIFIER_ANNOTATION

Instance Method Summary collapse

Methods included from DataControllerConfiguration::ProjectDataControllerConfiguration

#annotator_params

Methods included from RedirectHelper

#destroy_redirect

Methods included from RequestType

#json_request?

Methods included from LogRecent

#log_user_recent_route

Methods included from Cookies

#digest_cookie, #digested_cookie_exists?

Methods included from Whitelist

#whitelist_constantize

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

#intercept_api

Methods included from TokenAuthentication

#intercept_project, #intercept_user, #intercept_user_or_project, #project_token_authenticate, #token_authenticate

Instance Method Details

#attribution_paramsObject (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

#createObject

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

#destroyObject

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

#editObject

GET /attributions/1/edit



33
34
# File 'app/controllers/attributions_controller.rb', line 33

def edit
end

#indexObject

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

#licensesObject



80
81
82
# File 'app/controllers/attributions_controller.rb', line 80

def licenses
  render json: CREATIVE_COMMONS_LICENSES
end

#listObject



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_typesObject



84
85
86
# File 'app/controllers/attributions_controller.rb', line 84

def role_types
  render json: ['AttributionCreator', 'AttributionOwner', 'AttributionEditor', 'AttributionCopyrightHolder']
end

#set_attributionObject (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

#showObject

GET /attributions/1 GET /attributions/1.json



24
25
# File 'app/controllers/attributions_controller.rb', line 24

def show
end

#updateObject

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