This repository was archived by the owner on Sep 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathDogController.scala
More file actions
188 lines (167 loc) · 5.73 KB
/
DogController.scala
File metadata and controls
188 lines (167 loc) · 5.73 KB
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
package testdata
import javax.inject.Inject
import io.swagger.annotations._
import play.api.mvc.{Action, Controller, InjectedController}
import scala.concurrent.Future
// todo - test for these
@Api(value = "/apitest/dogs", description = "look after the dogs",
basePath = "xx",
position = 2,
produces = "application/json, application/xml",
consumes = "application/json, application/xml",
protocols = "http, https",
authorizations = Array(new Authorization(value="oauth2",
scopes = Array(
new AuthorizationScope(scope = "vet", description = "vet access"),
new AuthorizationScope(scope = "owner", description = "owner access")
))
)
)
class DogController @Inject() () extends InjectedController {
@ApiOperation(value="addDog0")
def add0(id:String) = Action {
request => Ok("test case")
}
@ApiOperation(value = "addDog1",
httpMethod = "PUT")
@ApiImplicitParams(Array(
new ApiImplicitParam(name = "dog", value = "Dog object to add", required = true, dataType = "testdata.Dog", paramType = "body")))
def add1 = Action {
request => Ok("test case")
}
@ApiOperation(value = "addDog2",
notes = "Adds a dogs better",
httpMethod = "PUT",
nickname = "addDog2_nickname",
authorizations = Array(new Authorization(value="oauth2",
scopes = Array(
new AuthorizationScope(scope = "vet", description = "vet access"),
new AuthorizationScope(scope = "owner", description = "owner access")
))
),
consumes = " application/json ",
protocols = "http",
position = 2)
@ApiResponses(Array())
@ApiImplicitParams(Array(
new ApiImplicitParam(name = "dog", value = "Dog object to add", required = true, dataType = "testdata.Dog", paramType = "body")))
def add2 = Action {
request => Ok("test case")
}
@ApiOperation(value = "Add a new Dog",
notes = "Adds a dogs nicely",
httpMethod = "PUT",
authorizations = Array(new Authorization(value="oauth2",
scopes = Array(
new AuthorizationScope(scope = "vet", description = "vet access"),
new AuthorizationScope(scope = "owner", description = "owner access")
)),
new Authorization(value="api_key")
),
consumes = " application/json, text/yaml ",
protocols = "http, https"
)
@ApiResponses(Array(
new ApiResponse(code = 405, message = "Invalid input"),
new ApiResponse(code = 666, message = "Big Problem")))
@ApiImplicitParams(Array(
new ApiImplicitParam(name = "dog", value = "Dog object to add", required = true, dataType = "testdata.Dog", paramType = "body")))
def add3 = Action {
request => Ok("test case")
}
@ApiOperation(value = "Updates a new Dog",
notes = "Updates dogs nicely",
httpMethod = "POST")
@ApiResponses(Array(
new ApiResponse(code = 405, message = "Invalid input")))
@ApiImplicitParams(Array(
new ApiImplicitParam(name = "dog", value = "Dog object to update", required = true, dataType = "testdata.Dog", paramType = "body")))
def update = Action {
request => Ok("test case")
}
@ApiOperation(value = "Get Dog by Id",
notes = "Returns a dog",
response = classOf[Dog],
httpMethod = "GET",
produces = "")
@ApiResponses(Array(
new ApiResponse(code = 405, message = "Invalid input"),
new ApiResponse(code = 404, message = "Dog not found")))
def get1(@ApiParam(value = "ID of dog to fetch", required = true) id: Long) = Action {
request => Ok("test case")
}
@ApiOperation(value = "Get Dog by Id",
notes = "Returns a dog",
response = classOf[Dog],
httpMethod = "GET",
produces = "application/json")
@ApiResponses(Array(
new ApiResponse(code = 405, message = "Invalid input"),
new ApiResponse(code = 404, message = "Dog not found")))
def get2(@ApiParam(value = "ID of dog to fetch", required = true) id: Long) = Action {
request => Ok("test case")
}
@ApiOperation(value = "Get Dog by Id",
notes = "Returns a dog",
response = classOf[Dog],
httpMethod = "GET",
produces = "application/json, application/xml")
@ApiResponses(Array(
new ApiResponse(code = 405, message = "Invalid input"),
new ApiResponse(code = 404, message = "Dog not found")))
def get3(@ApiParam(value = "ID of dog to fetch", required = true) id: Long) = Action {
request => Ok("test case")
}
/* Not Supported....routing is done elsewhere...
- although could use this with a custom routing module
-- one day..
@GET
@Path("/{petId}")
*/
@ApiOperation(value = "List Dogs",
nickname = "listDogs",
notes = "Returns all dogs",
response = classOf[Dog],
responseContainer = "List",
httpMethod = "GET")
@Deprecated
def list = Action {
request => Ok("test case")
}
@ApiOperation(value = "Method with numeric chars in name",
notes = "get a Dog with id 33",
httpMethod = "GET")
@ApiResponses(Array(
new ApiResponse(code = 404, message = "Dog not found")))
def get33 = Action {
request => Ok("test case")
}
// use the Jax.ws annotations
// Delete a Dog
@ApiOperation(value = "Delete", notes = "Deletes a user", httpMethod = "DELETE")
def delete(
@ApiParam(name = "dogId", value = "dogId") userId: String)
= Action.async {
implicit request => Future.successful(Ok)
}
@ApiOperation(value = "valueStr", notes = "notesStr", httpMethod = "GET")
@Deprecated
def deprecated = Action {
request => Ok("test case")
}
def no_annotations = Action {
request => Ok("test case")
}
def no_route = Action {
request => Ok("test case")
}
@ApiOperation(value = "unknown method name",
httpMethod = "UNKNOWN")
def unknown_method() = Action {
request => Ok("test case")
}
@ApiOperation(value = "undefined method name")
def undefined_method() = Action {
request => Ok("test case")
}
}