Class: Dcm4chee::Api::V1::StudiesController

Inherits:
BaseController show all
Defined in:
app/controllers/dcm4chee/api/v1/studies_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject

Restore a study from the trash.

Examples:

# Request
POST /api/studies HTTP/1.1
Accept: application/vnd.menglifang.org; version=1
Content-Type: application/json

{ "trashed_studies_id": ... }

# Response
HTTP/1.1 201 Created


60
61
62
63
64
65
# File 'app/controllers/dcm4chee/api/v1/studies_controller.rb', line 60

def create
  trashed_studies = TrashedStudy.get!(params[:trashed_study_id])
  trashed_studies.restore_from_trash

  head :created
end

#indexObject

Search for studies. Suppported querying conditions:

patient_id

Check DataMapper::Searcher::ClassMethods for supported querying operators.

Examples:

# Request
GET /api/studies?q[patient_id]=... HTTP/1.1
Accept: application/vnd.menglifang.org; version=1

# Response
HTTP/1.1 200 OK
{
  "studies": [{
    "id": ...,
    "patient_id": ...,
    "study_iuid": ...,
    "sid": ...,
    "study_at": ...,
    "accession_no": ...,
    "description": ...,
    "num_series": ...,
    "num_instances": ...,
    "availability": ...,
    "dcm_elements": [{
      "name": ...,
      "value": ...,
      "tag": ...,
      "value_representation": ...,
      "length": ...
    }, ...]
  }, ...]
}


42
43
44
45
46
# File 'app/controllers/dcm4chee/api/v1/studies_controller.rb', line 42

def index
  studies = Study.search(params[:q])

  respond_with studies: studies
end