Class: CommonNamesController

Inherits:
ApplicationController show all
Includes:
DataControllerConfiguration::ProjectDataControllerConfiguration
Defined in:
app/controllers/common_names_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

#api_indexObject

GET /api/v1/common_names.csv GET /api/v1/common_names



86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# File 'app/controllers/common_names_controller.rb', line 86

def api_index
  q = ::Queries::CommonName::Filter.new(params.merge!(api: true)).all
    .where(project_id: sessions_current_project_id)
    .order('common_names.id')
    .page(params[:page])
    .per(params[:per])

  respond_to do |format|
    format.json {
      @common_names = q.page(params[:page]).per(params[:per])
      render '/common_names/api/v1/index'
    }
    format.csv {
      @common_names = q
      send_data Export::CSV.generate_csv(
        @common_names,
        exclude_columns: %w{updated_by_id created_by_id project_id},
      ), type: 'text', filename: "common_names_#{DateTime.now}.tsv"
    }
  end
end

#api_showObject

GET /api/v1/common_names/:id



109
110
111
# File 'app/controllers/common_names_controller.rb', line 109

def api_show
  render '/common_names/api/v1/show'
end

#common_name_paramsObject (private)



119
120
121
# File 'app/controllers/common_names_controller.rb', line 119

def common_name_params
  params.require(:common_name).permit(:name, :geographic_area_id, :otu_id, :language_id, :start_year, :end_year)
end

#createObject

POST /common_names POST /common_names.json



46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'app/controllers/common_names_controller.rb', line 46

def create
  @common_name = CommonName.new(common_name_params)

  respond_to do |format|
    if @common_name.save
      format.html { redirect_to @common_name, notice: 'Common name was successfully created.' }
      format.json { render :show, status: :created, location: @common_name }
    else
      format.html { render :new }
      format.json { render json: @common_name.errors, status: :unprocessable_entity }
    end
  end
end

#destroyObject

DELETE /common_names/1 DELETE /common_names/1.json



76
77
78
79
80
81
82
# File 'app/controllers/common_names_controller.rb', line 76

def destroy
  @common_name.destroy
  respond_to do |format|
    format.html { redirect_to common_names_url, notice: 'Common name was successfully destroyed.' }
    format.json { head :no_content }
  end
end

#editObject

GET /common_names/1/edit



37
38
# File 'app/controllers/common_names_controller.rb', line 37

def edit
end

#indexObject

GET /common_names GET /common_names.json



9
10
# File 'app/controllers/common_names_controller.rb', line 9

def index
end

#listObject



40
41
42
# File 'app/controllers/common_names_controller.rb', line 40

def list
  @common_names = CommonName.with_project_id(sessions_current_project_id).page(params[:page]) #.per(10)
end

#newObject

GET /common_names/new



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

def new
  @common_name = CommonName.new
end

#set_common_nameObject (private)



115
116
117
# File 'app/controllers/common_names_controller.rb', line 115

def set_common_name
  @common_name = CommonName.with_project_id(sessions_current_project_id).find(params[:id])
end

#showObject

GET /common_names/1 GET /common_names/1.json



28
29
# File 'app/controllers/common_names_controller.rb', line 28

def show
end

#updateObject

PATCH/PUT /common_names/1 PATCH/PUT /common_names/1.json



62
63
64
65
66
67
68
69
70
71
72
# File 'app/controllers/common_names_controller.rb', line 62

def update
  respond_to do |format|
    if @common_name.update(common_name_params)
      format.html { redirect_to @common_name, notice: 'Common name was successfully updated.' }
      format.json { render :show, status: :ok, location: @common_name }
    else
      format.html { render :edit }
      format.json { render json: @common_name.errors, status: :unprocessable_entity }
    end
  end
end