-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrequest.go
153 lines (127 loc) · 5.54 KB
/
request.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
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
package encore
import (
"net/http"
"reflect"
"time"
)
// APIDesc describes the API endpoint being called.
type APIDesc struct {
// RequestType specifies the type of the request payload,
// or nil if the endpoint has no request payload or is Raw.
RequestType reflect.Type
// ResponseType specifies the type of the response payload,
// or nil if the endpoint has no response payload or is Raw.
ResponseType reflect.Type
// Raw specifies whether the endpoint is a Raw endpoint.
Raw bool
// Tags describes what tags are attached to the endpoint.
Tags Tags
}
// Request provides metadata about how and why the currently running code was started.
//
// The current request can be returned by calling CurrentRequest()
type Request struct {
Type RequestType // What caused this request to start
Started time.Time // What time the trigger occurred
// Trace contains the trace information for the current request.
Trace *TraceData
// APICall specific parameters.
// These will be empty for operations with a type not APICall
API *APIDesc // Metadata about the API endpoint being called
Service string // Which service is processing this request
Endpoint string // Which API endpoint is being called
Path string // What was the path made to the API server
PathParams PathParams // If there are path parameters, what are they?
// Headers contains the request headers sent with the request, if any.
//
// It is currently empty for service-to-service API calls when the caller
// and callee are both running within the same process.
// This behavior may change in the future.
Headers http.Header
// PubSubMessage specific parameters.
// Message contains information about the PubSub message,
Message *MessageData
// Payload is the decoded request payload or Pub/Sub message payload,
// or nil if the API endpoint has no request payload or the endpoint is raw.
Payload any
// CronIdempotencyKey contains a unique id for a particular cron job execution
// if this request was triggered by a Cron Job.
//
// It can be used to uniquely identify a particular Cron Job execution event,
// and also serves as a way to distinguish between Cron Job-triggered requests
// and other requests.
//
// If the request was not triggered by a Cron Job the value is the empty string.
CronIdempotencyKey string
}
// TraceData describes the trace information for a request.
type TraceData struct {
TraceID string
SpanID string
ParentTraceID string // empty if no parent trace
ParentSpanID string // empty if no parent span
ExtCorrelationID string // empty if no correlation id
Recorded bool // true if this trace is being recorded
}
// MessageData describes the request data for a Pub/Sub message.
type MessageData struct {
// Service is the name of the service with the subscription.
Service string
// Topic is the name of the topic the message was published to.
Topic string
// Subscription is the name of the subscription the message was received on.
Subscription string
// ID is the unique ID of the message assigned by the messaging service.
// It is the same value returned by topic.Publish() and is the same
// across delivery attempts.
ID string
// Published is the time the message was first published.
Published time.Time
// DeliveryAttempt is a counter for how many times the messages
// has been attempted to be delivered.
DeliveryAttempt int
}
// RequestType describes how the currently running code was triggered
type RequestType string
const (
None RequestType = "none" // There was no external trigger which caused this code to run. Most likely it was triggered by a package level init function.
APICall RequestType = "api-call" // The code was triggered via an API call to a service
PubSubMessage RequestType = "pubsub-message" // The code was triggered by a PubSub subscriber
)
// PathParams contains the path parameters parsed from the request path.
// The ordering of the parameters in the path will be maintained from the URL.
type PathParams []PathParam
// PathParam represents a parsed path parameter.
type PathParam struct {
Name string // the name of the path parameter, without leading ':' or '*'.
Value string // the parsed path parameter value.
}
// Get returns the value of the path parameter with the given name.
// If no such parameter exists it reports "".
func (PathParams) Get(name string) (_ string) {
// Encore will provide an implementation to this function at runtime, we do not expose
// the implementation in the API contract as it is an implementation detail, which may change
// between releases.
//
// The current implementation of this function can be found here:
// https://github.com/encoredev/encore/blob/v1.46.1/runtimes/go/request.go#L130-L138
doPanic("encore apps must be run using the encore command")
return
}
// Tags describes a set of tags an endpoint is tagged with,
// without the "tag:" prefix.
//
// The ordering is unspecified.
type Tags []string
// Has reports whether the set contains the given tag.
// The provided value should not contain the "tag:" prefix.
func (Tags) Has(tag string) (_ bool) {
// Encore will provide an implementation to this function at runtime, we do not expose
// the implementation in the API contract as it is an implementation detail, which may change
// between releases.
//
// The current implementation of this function can be found here:
// https://github.com/encoredev/encore/blob/v1.46.1/runtimes/go/request.go#L215-L217
doPanic("encore apps must be run using the encore command")
return
}