forked from authelia/oauth2-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthorize_response.go
49 lines (38 loc) · 949 Bytes
/
authorize_response.go
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
// Copyright © 2023 Ory Corp
// SPDX-License-Identifier: Apache-2.0
package oauth2
import (
"net/http"
"net/url"
"authelia.com/provider/oauth2/internal/consts"
)
// AuthorizeResponse is an implementation of AuthorizeResponder
type AuthorizeResponse struct {
Header http.Header
Parameters url.Values
code string
}
func NewAuthorizeResponse() *AuthorizeResponse {
return &AuthorizeResponse{
Header: http.Header{},
Parameters: url.Values{},
}
}
func (a *AuthorizeResponse) GetCode() string {
return a.code
}
func (a *AuthorizeResponse) GetHeader() http.Header {
return a.Header
}
func (a *AuthorizeResponse) AddHeader(key, value string) {
a.Header.Add(key, value)
}
func (a *AuthorizeResponse) GetParameters() url.Values {
return a.Parameters
}
func (a *AuthorizeResponse) AddParameter(key, value string) {
if key == consts.FormParameterAuthorizationCode {
a.code = value
}
a.Parameters.Add(key, value)
}