Class: NotesController

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



111
112
113
114
115
116
117
# File 'app/controllers/notes_controller.rb', line 111

def api_index
  @notes = Queries::Note::Filter.new(params.merge!(api: true)).all
    .order('notes.id')
    .page(params[:page])
    .per(params[:per])
  render '/notes/api/v1/index'
end

#api_showObject

GET /api/v1/notes/:id



120
121
122
# File 'app/controllers/notes_controller.rb', line 120

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

#autocompleteObject



98
99
100
101
# File 'app/controllers/notes_controller.rb', line 98

def autocomplete
  render json: {} and return if params[:term].blank?
  @notes = Queries::Note::Autocomplete.new(params.require(:term), project_id: sessions_current_project_id).autocomplete
end

#createObject

POST /notes POST /notes.json



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'app/controllers/notes_controller.rb', line 37

def create
  @note = Note.new(note_params)

  respond_to do |format|
    if @note.save
      format.html { redirect_to url_for(@note.note_object.metamorphosize),
                    notice: 'Note was successfully created.' }
      format.json { render json: @note, status: :created, location: @note }
    else
      format.html { redirect_back(fallback_location: (request.referer || root_path),
                                  notice: 'Note was NOT successfully created.') }
      format.json { render json: @note.errors, status: :unprocessable_entity }
    end
  end
end

#destroyObject

DELETE /notes/1 DELETE /notes/1.json



71
72
73
74
75
76
77
78
# File 'app/controllers/notes_controller.rb', line 71

def destroy
  @note.destroy
  respond_to do |format|
    # TODO: probably needs to be changed
    format.html { destroy_redirect @note, notice: 'Note was successfully destroyed.' }
    format.json { head :no_content }
  end
end

#downloadObject

GET /notes/download



104
105
106
107
108
# File 'app/controllers/notes_controller.rb', line 104

def download
  send_data Export::CSV.generate_csv(Note.where(project_id: sessions_current_project_id)),
    type: 'text',
    filename: "notes_#{DateTime.now}.tsv"
end

#editObject



31
32
33
# File 'app/controllers/notes_controller.rb', line 31

def edit
  @note = Note.find_by_id(params[:id]).metamorphosize
end

#indexObject

GET /notes GET /notes.json GET /<model>/:id/notes.json



12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'app/controllers/notes_controller.rb', line 12

def index
  respond_to do |format|
    format.html {
      @recent_objects = Note.where(project_id: sessions_current_project_id).order(updated_at: :desc).limit(10)
      render '/shared/data/all/index'
    }
    format.json {
      @notes = Queries::Note::Filter.new(params)
        .all
        .page(params[:page])
        .per(params[:per])
    }
  end
end

#listObject



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

def list
  @notes = Note.where(project_id: sessions_current_project_id).order(:note_object_type).page(params[:page])
end

#newObject



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

def new
  @note = Note.new(note_params)
end

#note_paramsObject (private)



130
131
132
133
134
# File 'app/controllers/notes_controller.rb', line 130

def note_params
  params.require(:note).permit(
    :text, :note_object_id, :note_object_type,
    :note_object_attribute, :annotated_global_entity)
end

#searchObject

GET /notes/search



85
86
87
88
89
90
91
92
93
94
95
96
# File 'app/controllers/notes_controller.rb', line 85

def search
  if params[:id].blank?
    redirect_to note_path, notice: 'You must select an item from the list with a click or' \
      ' tab press before clicking show.'
  else
    if @note = Note.find(params[:id])
      redirect_to url_for(@note.note_object.metamorphosize)
    else
      redirect_to note_path, alert: 'You must select an item from the list with a click or tab press before clicking show.'
    end
  end
end

#set_noteObject (private)



126
127
128
# File 'app/controllers/notes_controller.rb', line 126

def set_note
  @note = Note.where(project_id: sessions_current_project_id).find(params[:id])
end

#updateObject

PATCH/PUT /notes/1 PATCH/PUT /notes/1.json



55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'app/controllers/notes_controller.rb', line 55

def update
  respond_to do |format|
    if @note.update(note_params)
      format.html { redirect_to url_for(@note.note_object.metamorphosize),
                    notice: 'Note was successfully created.' }
      format.json { render action: 'show', status: :created, location: @note }
    else
      format.html { redirect_back(fallback_location: (request.referer || root_path),
                                  notice:            'Note was NOT successfully updated.') }
      format.json { render json: @note.errors, status: :unprocessable_entity }
    end
  end
end