1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
{
"swagger": "2.0",
"info": {
"description": "User's credentials",
"title": "Simple Pastebin API",
"contact": {
"name": "Mitchell Riedstra",
"url": "https://riedstra.dev",
"email": "mitch@riedstra.dev"
},
"license": {
"name": "ISC"
},
"version": "1.0"
},
"basePath": "/api",
"paths": {
"/v0/del/{id}": {
"delete": {
"description": "Remove a paste from the filesystem",
"produces": [
"text/plain"
],
"tags": [
"v0"
],
"summary": "Deletes a paste for a given ID",
"parameters": [
{
"type": "string",
"description": "Paste ID",
"name": "id",
"in": "path",
"required": true
}
],
"responses": {}
}
},
"/v0/view/{id}": {
"get": {
"description": "Fetches the contents of a paste if given an ID",
"produces": [
"text/plain"
],
"tags": [
"v0"
],
"summary": "View a paste for a given ID",
"parameters": [
{
"type": "string",
"description": "Paste ID",
"name": "id",
"in": "path",
"required": true
}
],
"responses": {}
}
},
"/v1/del/{id}": {
"delete": {
"description": "Remove a paste from the filesystem",
"produces": [
"application/json"
],
"tags": [
"v1"
],
"summary": "Deletes a paste for a given ID",
"parameters": [
{
"type": "string",
"description": "Paste ID",
"name": "id",
"in": "path",
"required": true
}
],
"responses": {}
}
},
"/v1/getToken": {
"post": {
"description": "Returns an API key that's valid for a pre-determined amount of hours",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"v1"
],
"summary": "Get an API key with valid credentials",
"parameters": [
{
"description": "User Credentials",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/main.Credentials"
}
}
],
"responses": {}
}
},
"/v1/view/{id}": {
"get": {
"description": "Fetches the contents of a paste if given an ID",
"produces": [
"application/json"
],
"tags": [
"v1"
],
"summary": "View a paste for a given ID",
"parameters": [
{
"type": "string",
"description": "Paste ID",
"name": "id",
"in": "path",
"required": true
}
],
"responses": {}
}
}
},
"definitions": {
"main.Credentials": {
"description": "User's credentials",
"type": "object",
"properties": {
"Password": {
"type": "string"
},
"Username": {
"type": "string"
}
}
}
},
"securityDefinitions": {
"": {
"type": "apiKey",
"name": "Authorization",
"in": "header"
},
"BasicAuth": {
"type": "basic"
}
}
}
|