-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tsp
240 lines (202 loc) · 4.48 KB
/
main.tsp
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
import "@typespec/http";
import "@typespec/rest";
import "@typespec/openapi3";
import "@typespec/versioning";
import "./models.tsp";
import "./utils.tsp";
using TypeSpec.Http;
using TypeSpec.Rest;
using TypeSpec.Versioning;
/**
* Aroundy 앱 및 어드민 페이지 공용 API
*/
@service({
title: "Aroundy",
})
@server("https://api.aroundy.teambigbox.com", "엔드포인트")
@versioned(Aroundy.Versions)
namespace Aroundy;
enum Versions {
v0_1_0: "v0.1.0",
v1_0_0: "v1.0.0",
}
@route("/posts")
namespace Posts {
/** 검색 옵션 */
model QueryOption extends SearchByName {
/** 한정할 카테고리 */
@query category?: string;
/** 추천 기준 */
@query sort?: SortOption;
/** 브랜드 한정 필터 */
@query({
format: "csv",
})
companies?: string[];
/**
* 지역 필터
*
* 아무 값도 없을 때는 지역 무관
*
* 지역은 여러 개 선택 가능
*/
@query({
format: "csv",
})
location?: Location[];
/** 태그 한정 필터 */
@query({
format: "csv",
})
tags?: id[];
/**
* 이벤트 상태 필터
*
* - `undefined`: 상태 무관
* - `true`: 종료된 이벤트만
* - `false`: 진행 중인 이벤트만
*/
@query ended?: boolean;
}
/** Post 목록을 추천 기준에 따라 조회 및 검색한다. */
@summary("Post 조회 및 검색")
@tag("App")
@tag("Admin")
op fetchPosts(...QueryOption): Paginate<Post>;
@summary("새 Post 등록")
@tag("Admin")
@useAuth(BearerAuth)
op createPost(...CreatePost): {
@statusCode _: 201;
...Post;
};
@summary("Post 수정")
@tag("Admin")
@useAuth(BearerAuth)
@patch
op updatePost(...ById, ...UpdatePost): Post;
@tag("App")
@useAuth(BearerAuth)
@post
op set<T = ById>(...T): void;
@tag("App")
@useAuth(BearerAuth)
@delete
op unset<T = ById>(...T): void;
@route("/{id}/like")
namespace Like {
@summary("좋아요 추가")
op like is set;
@summary("좋아요 해제")
op unlike is unset;
}
@route("/{id}/save")
namespace Save {
@summary("마이페이지에 저장")
op save is set;
@summary("마이페이지에서 저장 취소")
op unsave is unset;
}
@summary("조회수 증가")
@tag("App")
@route("/{id}/view")
@patch
op view(...ById): void;
@summary("Post 삭제")
@tag("Admin")
@useAuth(BearerAuth)
@delete
op deletePost(...ById): Post;
}
@tag("Admin")
@route("/companies")
namespace Companies {
/** 기업 목록을 추천 기준에 따라 조회 및 검색한다. */
@summary("기업 조회 및 검색")
@tag("App")
op fetchCompanies(...SearchByName): Paginate<Company>;
@summary("새 기업 등록")
@useAuth(BearerAuth)
op createCompany(...BaseCompany): {
@statusCode _: 201;
...Company;
};
@summary("기업정보 수정")
@useAuth(BearerAuth)
@patch
op updateCompany(...ById, ...UpdateCompany): Company;
@summary("기업정보 삭제")
@useAuth(BearerAuth)
@delete
op deleteCompany(...ById): Company;
}
@summary("이미지 업로드")
@tag("Admin")
@useAuth(BearerAuth)
@route("/images/upload")
op uploadImage(
@header contentType: "multipart/form-data",
/** 업로드할 이미지 정보 배열 */
images: Image[],
): {
@statusCode _: 201;
/** 업로드된 이미지 URL 배열 */
urls: url[];
};
@tag("App")
@route("/login")
namespace Login {
@summary("카카오 로그인")
@route("/kakao")
op kakao(): {};
}
@route("/users")
namespace Users {
@summary("회원 조회 및 검색")
@useAuth(BearerAuth)
@tag("Admin")
op fetchUsers(...SearchByName): Paginate<User>;
@summary("단일 회원정보 조회")
@tag("App")
@useAuth(BearerAuth)
op fetchUser(...ById): User;
@summary("회원 프로필 정보 조회")
@tag("App")
@useAuth(BearerAuth)
@route("/{id}/profile")
op profile(...ById): UserProfile;
@summary("회원 개인정보 수정")
@tag("App")
@useAuth(BearerAuth)
@patch
op updateUser(...ById, ...UpdateUser): User;
@summary("회원 탈퇴")
@tag("App")
@useAuth(BearerAuth)
@delete
op deleteUser(...ById): void;
}
@route("/categories")
namespace Categories {
@summary("카테고리 생성")
@tag("Admin")
@useAuth(BearerAuth)
op createCategory(...Category.Create): void;
@summary("카테고리 조회 및 검색")
@tag("App")
@tag("Admin")
op fetchCategories(
...SearchByName,
): Paginate<Category.Base>;
}
@route("/tags")
namespace Tags {
@summary("태그 생성")
@tag("Admin")
@useAuth(BearerAuth)
op createTag(...Tag.Create): void;
@summary("태그 조회 및 검색")
@tag("App")
@tag("Admin")
op fetchTags(...SearchByName): Paginate<Tag.Base>;
}