diff --git a/src/endpoints/session.tsp b/src/endpoints/session.tsp new file mode 100644 index 0000000..164e49a --- /dev/null +++ b/src/endpoints/session.tsp @@ -0,0 +1,41 @@ +import "@typespec/http"; +import "@typespec/rest"; +import "../models/errors.tsp"; +import "../models/user.tsp"; + +using TypeSpec.Http; +using TypeSpec.Rest; + +namespace SeichiPortalApiSchema; + +@tag("Sessions") +@route("/session") +namespace Session { + @post + @summary("セッションを開始する") + op create(): { + @statusCode statusCode: 200; + + /** + * `SEICHI_PORTAL__SESSION_ID` という名前の Cookie に30分間有効なセッション ID を設定します。 + */ + @header SetCookie: string; + } | { + @statusCode statusCode: 401 | 500; + @body body: Error; + }; + + @delete + @summary("セッションを終了する") + op delete(): { + @statusCode statusCode: 200; + + /** + * `SEICHI_PORTAL__SESSION_ID` という名前の Cookie に30分間有効なセッション ID を削除します。 + */ + @header SetCookie: string; + } | { + @statusCode statusCode: 401 | 500; + @body body: Error; + }; +} diff --git a/src/main.tsp b/src/main.tsp index 35cb9d5..84533fb 100644 --- a/src/main.tsp +++ b/src/main.tsp @@ -1,5 +1,6 @@ import "./endpoints/forms.tsp"; import "./endpoints/users.tsp"; +import "./endpoints/session.tsp"; import "@typespec/openapi"; using TypeSpec.Http;