2018-04-30 21:17:27 +00:00
|
|
|
require 'swagger/blocks'
|
|
|
|
|
|
|
|
module SessionApiDoc
|
|
|
|
include Swagger::Blocks
|
|
|
|
|
|
|
|
# Swagger documentation for sessions model
|
|
|
|
swagger_schema :Session do
|
|
|
|
key :required, [:id]
|
|
|
|
property :id, type: :integer, format: :int32
|
|
|
|
property :stype, type: :string
|
|
|
|
property :via_exploit, type: :string
|
|
|
|
property :via_payload, type: :string
|
|
|
|
property :desc, type: :string
|
|
|
|
property :port, type: :integer, format: :int32
|
|
|
|
property :platform, type: :string
|
|
|
|
property :opened_at, type: :string, format: :date_time
|
|
|
|
property :closed_at, type: :string, format: :date_time
|
|
|
|
property :closed_reason, type: :string
|
|
|
|
property :local_id, type: :integer, format: :int32
|
|
|
|
property :last_seen, type: :string, format: :date_time
|
|
|
|
property :module_run_id, type: :integer, format: :int32
|
|
|
|
end
|
|
|
|
|
|
|
|
swagger_path '/api/v1/sessions' do
|
2018-05-02 19:47:17 +00:00
|
|
|
# Swagger documentation for /api/v1/sessions GET
|
2018-04-30 21:17:27 +00:00
|
|
|
operation :get do
|
|
|
|
key :description, 'Return sessions that are stored in the database.'
|
2018-04-30 21:40:07 +00:00
|
|
|
key :tags, [ 'session' ]
|
2018-04-30 21:17:27 +00:00
|
|
|
|
|
|
|
parameter :workspace
|
|
|
|
|
|
|
|
response 200 do
|
2018-05-17 21:56:22 +00:00
|
|
|
key :description, 'Returns session data.'
|
2018-04-30 21:17:27 +00:00
|
|
|
schema do
|
2018-07-25 23:01:05 +00:00
|
|
|
property :data do
|
|
|
|
key :type, :array
|
|
|
|
items do
|
|
|
|
key :'$ref', :Session
|
|
|
|
end
|
2018-04-30 21:17:27 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-07-26 02:46:33 +00:00
|
|
|
|
2018-08-14 18:35:59 +00:00
|
|
|
response 401 do
|
2018-08-15 20:26:35 +00:00
|
|
|
key :description, RootApiDoc::DEFAULT_RESPONSE_401
|
2018-08-14 18:35:59 +00:00
|
|
|
schema do
|
|
|
|
key :'$ref', :AuthErrorModel
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-07-26 02:46:33 +00:00
|
|
|
response 500 do
|
2018-08-15 20:26:35 +00:00
|
|
|
key :description, RootApiDoc::DEFAULT_RESPONSE_500
|
2018-07-26 02:46:33 +00:00
|
|
|
schema do
|
|
|
|
key :'$ref', :ErrorModel
|
|
|
|
end
|
|
|
|
end
|
2018-04-30 21:17:27 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Swagger documentation for /api/v1/sessions POST
|
|
|
|
|
2018-05-29 17:24:53 +00:00
|
|
|
# API based creation of session objects is not yet supported from a user-facing perspective.
|
|
|
|
# Once this is implemented in a sensible way we will need to uncomment and update the below doc code.
|
2018-04-30 21:17:27 +00:00
|
|
|
|
2018-05-29 17:24:53 +00:00
|
|
|
# operation :post do
|
|
|
|
# key :description, 'Create a session entry.'
|
|
|
|
# key :tags, [ 'session' ]
|
|
|
|
#
|
|
|
|
# parameter do
|
|
|
|
# key :in, :body
|
|
|
|
# key :name, :body
|
|
|
|
# key :description, 'The attributes to assign to the session.'
|
|
|
|
# key :required, true
|
|
|
|
# schema do
|
|
|
|
# key :'$ref', :Session
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# response 200 do
|
2018-08-15 20:26:35 +00:00
|
|
|
# key :description, RootApiDoc::DEFAULT_RESPONSE_200
|
2018-05-29 17:24:53 +00:00
|
|
|
# schema do
|
|
|
|
# key :type, :object
|
|
|
|
# key :'$ref', :Session
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
# end
|
2018-04-30 21:17:27 +00:00
|
|
|
end
|
2018-07-18 21:01:12 +00:00
|
|
|
|
|
|
|
swagger_path '/api/v1/sessions/{id}' do
|
2019-01-11 18:19:15 +00:00
|
|
|
# Swagger documentation for /api/v1/sessions/:id GET
|
2018-07-18 21:01:12 +00:00
|
|
|
operation :get do
|
|
|
|
key :description, 'Return a specific session that is stored in the database.'
|
|
|
|
key :tags, [ 'session' ]
|
|
|
|
|
|
|
|
parameter do
|
|
|
|
key :name, :id
|
|
|
|
key :in, :path
|
|
|
|
key :description, 'ID of session to retrieve.'
|
|
|
|
key :required, true
|
|
|
|
key :type, :integer
|
|
|
|
key :format, :int32
|
|
|
|
end
|
|
|
|
|
|
|
|
response 200 do
|
|
|
|
key :description, 'Returns session data.'
|
|
|
|
schema do
|
2018-07-25 23:01:05 +00:00
|
|
|
property :data do
|
2018-07-31 20:43:57 +00:00
|
|
|
key :'$ref', :Session
|
2018-07-18 21:01:12 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-07-26 02:46:33 +00:00
|
|
|
|
2018-08-14 18:35:59 +00:00
|
|
|
response 401 do
|
2018-08-15 20:26:35 +00:00
|
|
|
key :description, RootApiDoc::DEFAULT_RESPONSE_401
|
2018-08-14 18:35:59 +00:00
|
|
|
schema do
|
|
|
|
key :'$ref', :AuthErrorModel
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-07-26 02:46:33 +00:00
|
|
|
response 500 do
|
2018-08-15 20:26:35 +00:00
|
|
|
key :description, RootApiDoc::DEFAULT_RESPONSE_500
|
2018-07-26 02:46:33 +00:00
|
|
|
schema do
|
|
|
|
key :'$ref', :ErrorModel
|
|
|
|
end
|
|
|
|
end
|
2018-07-18 21:01:12 +00:00
|
|
|
end
|
|
|
|
end
|
2018-04-30 21:17:27 +00:00
|
|
|
end
|