aboutsummaryrefslogtreecommitdiff
path: root/cmd/mimi/modules
diff options
context:
space:
mode:
authorXe Iaso <me@xeiaso.net>2025-04-26 19:47:00 -0400
committerXe Iaso <me@xeiaso.net>2025-04-26 19:47:00 -0400
commitb02d2ba479446de6f38fce1e25cec8564ef9010a (patch)
treea60d001dda18187552591f70224bea38cc2000de /cmd/mimi/modules
parent4d27a5e7c416e2a6cab039684037681cdac63a19 (diff)
downloadx-b02d2ba479446de6f38fce1e25cec8564ef9010a.tar.xz
x-b02d2ba479446de6f38fce1e25cec8564ef9010a.zip
chore(templ): fix go generate commands
Signed-off-by: Xe Iaso <me@xeiaso.net>
Diffstat (limited to 'cmd/mimi/modules')
-rw-r--r--cmd/mimi/modules/scheduling/scheduling.pb.go308
-rw-r--r--cmd/mimi/modules/scheduling/scheduling.twirp.go1115
-rw-r--r--cmd/mimi/modules/scheduling/scheduling_grpc.pb.go121
3 files changed, 1544 insertions, 0 deletions
diff --git a/cmd/mimi/modules/scheduling/scheduling.pb.go b/cmd/mimi/modules/scheduling/scheduling.pb.go
new file mode 100644
index 0000000..ece77b2
--- /dev/null
+++ b/cmd/mimi/modules/scheduling/scheduling.pb.go
@@ -0,0 +1,308 @@
+// Code generated by protoc-gen-go. DO NOT EDIT.
+// versions:
+// protoc-gen-go v1.36.6
+// protoc v5.29.3
+// source: scheduling.proto
+
+package scheduling
+
+import (
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
+ _ "google.golang.org/protobuf/types/known/durationpb"
+ _ "google.golang.org/protobuf/types/known/timestamppb"
+ reflect "reflect"
+ sync "sync"
+ unsafe "unsafe"
+)
+
+const (
+ // Verify that this generated code is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
+ // Verify that runtime/protoimpl is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
+)
+
+type ConversationMember struct {
+ state protoimpl.MessageState `protogen:"open.v1"`
+ Role string `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"`
+ Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
+ Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
+ unknownFields protoimpl.UnknownFields
+ sizeCache protoimpl.SizeCache
+}
+
+func (x *ConversationMember) Reset() {
+ *x = ConversationMember{}
+ mi := &file_scheduling_proto_msgTypes[0]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+}
+
+func (x *ConversationMember) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ConversationMember) ProtoMessage() {}
+
+func (x *ConversationMember) ProtoReflect() protoreflect.Message {
+ mi := &file_scheduling_proto_msgTypes[0]
+ if x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use ConversationMember.ProtoReflect.Descriptor instead.
+func (*ConversationMember) Descriptor() ([]byte, []int) {
+ return file_scheduling_proto_rawDescGZIP(), []int{0}
+}
+
+func (x *ConversationMember) GetRole() string {
+ if x != nil {
+ return x.Role
+ }
+ return ""
+}
+
+func (x *ConversationMember) GetName() string {
+ if x != nil {
+ return x.Name
+ }
+ return ""
+}
+
+func (x *ConversationMember) GetEmail() string {
+ if x != nil {
+ return x.Email
+ }
+ return ""
+}
+
+type ParseReq struct {
+ state protoimpl.MessageState `protogen:"open.v1"`
+ Month string `protobuf:"bytes,1,opt,name=month,proto3" json:"month,omitempty"`
+ ConversationMembers []*ConversationMember `protobuf:"bytes,2,rep,name=conversation_members,json=conversationMembers,proto3" json:"conversation_members,omitempty"`
+ Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
+ Date string `protobuf:"bytes,4,opt,name=date,proto3" json:"date,omitempty"`
+ unknownFields protoimpl.UnknownFields
+ sizeCache protoimpl.SizeCache
+}
+
+func (x *ParseReq) Reset() {
+ *x = ParseReq{}
+ mi := &file_scheduling_proto_msgTypes[1]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+}
+
+func (x *ParseReq) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ParseReq) ProtoMessage() {}
+
+func (x *ParseReq) ProtoReflect() protoreflect.Message {
+ mi := &file_scheduling_proto_msgTypes[1]
+ if x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use ParseReq.ProtoReflect.Descriptor instead.
+func (*ParseReq) Descriptor() ([]byte, []int) {
+ return file_scheduling_proto_rawDescGZIP(), []int{1}
+}
+
+func (x *ParseReq) GetMonth() string {
+ if x != nil {
+ return x.Month
+ }
+ return ""
+}
+
+func (x *ParseReq) GetConversationMembers() []*ConversationMember {
+ if x != nil {
+ return x.ConversationMembers
+ }
+ return nil
+}
+
+func (x *ParseReq) GetMessage() string {
+ if x != nil {
+ return x.Message
+ }
+ return ""
+}
+
+func (x *ParseReq) GetDate() string {
+ if x != nil {
+ return x.Date
+ }
+ return ""
+}
+
+type ParseResp struct {
+ state protoimpl.MessageState `protogen:"open.v1"`
+ StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
+ Duration string `protobuf:"bytes,2,opt,name=duration,proto3" json:"duration,omitempty"`
+ Summary string `protobuf:"bytes,3,opt,name=summary,proto3" json:"summary,omitempty"`
+ Attendees []*ConversationMember `protobuf:"bytes,4,rep,name=attendees,proto3" json:"attendees,omitempty"`
+ Location string `protobuf:"bytes,5,opt,name=location,proto3" json:"location,omitempty"`
+ unknownFields protoimpl.UnknownFields
+ sizeCache protoimpl.SizeCache
+}
+
+func (x *ParseResp) Reset() {
+ *x = ParseResp{}
+ mi := &file_scheduling_proto_msgTypes[2]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+}
+
+func (x *ParseResp) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ParseResp) ProtoMessage() {}
+
+func (x *ParseResp) ProtoReflect() protoreflect.Message {
+ mi := &file_scheduling_proto_msgTypes[2]
+ if x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use ParseResp.ProtoReflect.Descriptor instead.
+func (*ParseResp) Descriptor() ([]byte, []int) {
+ return file_scheduling_proto_rawDescGZIP(), []int{2}
+}
+
+func (x *ParseResp) GetStartTime() string {
+ if x != nil {
+ return x.StartTime
+ }
+ return ""
+}
+
+func (x *ParseResp) GetDuration() string {
+ if x != nil {
+ return x.Duration
+ }
+ return ""
+}
+
+func (x *ParseResp) GetSummary() string {
+ if x != nil {
+ return x.Summary
+ }
+ return ""
+}
+
+func (x *ParseResp) GetAttendees() []*ConversationMember {
+ if x != nil {
+ return x.Attendees
+ }
+ return nil
+}
+
+func (x *ParseResp) GetLocation() string {
+ if x != nil {
+ return x.Location
+ }
+ return ""
+}
+
+var File_scheduling_proto protoreflect.FileDescriptor
+
+const file_scheduling_proto_rawDesc = "" +
+ "\n" +
+ "\x10scheduling.proto\x12 within.website.x.mimi.scheduling\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"R\n" +
+ "\x12ConversationMember\x12\x12\n" +
+ "\x04role\x18\x01 \x01(\tR\x04role\x12\x12\n" +
+ "\x04name\x18\x02 \x01(\tR\x04name\x12\x14\n" +
+ "\x05email\x18\x03 \x01(\tR\x05email\"\xb7\x01\n" +
+ "\bParseReq\x12\x14\n" +
+ "\x05month\x18\x01 \x01(\tR\x05month\x12g\n" +
+ "\x14conversation_members\x18\x02 \x03(\v24.within.website.x.mimi.scheduling.ConversationMemberR\x13conversationMembers\x12\x18\n" +
+ "\amessage\x18\x03 \x01(\tR\amessage\x12\x12\n" +
+ "\x04date\x18\x04 \x01(\tR\x04date\"\xd0\x01\n" +
+ "\tParseResp\x12\x1d\n" +
+ "\n" +
+ "start_time\x18\x01 \x01(\tR\tstartTime\x12\x1a\n" +
+ "\bduration\x18\x02 \x01(\tR\bduration\x12\x18\n" +
+ "\asummary\x18\x03 \x01(\tR\asummary\x12R\n" +
+ "\tattendees\x18\x04 \x03(\v24.within.website.x.mimi.scheduling.ConversationMemberR\tattendees\x12\x1a\n" +
+ "\blocation\x18\x05 \x01(\tR\blocation2s\n" +
+ "\n" +
+ "Scheduling\x12e\n" +
+ "\n" +
+ "ParseEmail\x12*.within.website.x.mimi.scheduling.ParseReq\x1a+.within.website.x.mimi.scheduling.ParseRespB.Z,within.website/x/cmd/mimi/modules/schedulingb\x06proto3"
+
+var (
+ file_scheduling_proto_rawDescOnce sync.Once
+ file_scheduling_proto_rawDescData []byte
+)
+
+func file_scheduling_proto_rawDescGZIP() []byte {
+ file_scheduling_proto_rawDescOnce.Do(func() {
+ file_scheduling_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_scheduling_proto_rawDesc), len(file_scheduling_proto_rawDesc)))
+ })
+ return file_scheduling_proto_rawDescData
+}
+
+var file_scheduling_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
+var file_scheduling_proto_goTypes = []any{
+ (*ConversationMember)(nil), // 0: within.website.x.mimi.scheduling.ConversationMember
+ (*ParseReq)(nil), // 1: within.website.x.mimi.scheduling.ParseReq
+ (*ParseResp)(nil), // 2: within.website.x.mimi.scheduling.ParseResp
+}
+var file_scheduling_proto_depIdxs = []int32{
+ 0, // 0: within.website.x.mimi.scheduling.ParseReq.conversation_members:type_name -> within.website.x.mimi.scheduling.ConversationMember
+ 0, // 1: within.website.x.mimi.scheduling.ParseResp.attendees:type_name -> within.website.x.mimi.scheduling.ConversationMember
+ 1, // 2: within.website.x.mimi.scheduling.Scheduling.ParseEmail:input_type -> within.website.x.mimi.scheduling.ParseReq
+ 2, // 3: within.website.x.mimi.scheduling.Scheduling.ParseEmail:output_type -> within.website.x.mimi.scheduling.ParseResp
+ 3, // [3:4] is the sub-list for method output_type
+ 2, // [2:3] is the sub-list for method input_type
+ 2, // [2:2] is the sub-list for extension type_name
+ 2, // [2:2] is the sub-list for extension extendee
+ 0, // [0:2] is the sub-list for field type_name
+}
+
+func init() { file_scheduling_proto_init() }
+func file_scheduling_proto_init() {
+ if File_scheduling_proto != nil {
+ return
+ }
+ type x struct{}
+ out := protoimpl.TypeBuilder{
+ File: protoimpl.DescBuilder{
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
+ RawDescriptor: unsafe.Slice(unsafe.StringData(file_scheduling_proto_rawDesc), len(file_scheduling_proto_rawDesc)),
+ NumEnums: 0,
+ NumMessages: 3,
+ NumExtensions: 0,
+ NumServices: 1,
+ },
+ GoTypes: file_scheduling_proto_goTypes,
+ DependencyIndexes: file_scheduling_proto_depIdxs,
+ MessageInfos: file_scheduling_proto_msgTypes,
+ }.Build()
+ File_scheduling_proto = out.File
+ file_scheduling_proto_goTypes = nil
+ file_scheduling_proto_depIdxs = nil
+}
diff --git a/cmd/mimi/modules/scheduling/scheduling.twirp.go b/cmd/mimi/modules/scheduling/scheduling.twirp.go
new file mode 100644
index 0000000..bbe329d
--- /dev/null
+++ b/cmd/mimi/modules/scheduling/scheduling.twirp.go
@@ -0,0 +1,1115 @@
+// Code generated by protoc-gen-twirp v8.1.3, DO NOT EDIT.
+// source: scheduling.proto
+
+package scheduling
+
+import context "context"
+import fmt "fmt"
+import http "net/http"
+import io "io"
+import json "encoding/json"
+import strconv "strconv"
+import strings "strings"
+
+import protojson "google.golang.org/protobuf/encoding/protojson"
+import proto "google.golang.org/protobuf/proto"
+import twirp "github.com/twitchtv/twirp"
+import ctxsetters "github.com/twitchtv/twirp/ctxsetters"
+
+import bytes "bytes"
+import errors "errors"
+import path "path"
+import url "net/url"
+
+// Version compatibility assertion.
+// If the constant is not defined in the package, that likely means
+// the package needs to be updated to work with this generated code.
+// See https://twitchtv.github.io/twirp/docs/version_matrix.html
+const _ = twirp.TwirpPackageMinVersion_8_1_0
+
+// ====================
+// Scheduling Interface
+// ====================
+
+type Scheduling interface {
+ ParseEmail(context.Context, *ParseReq) (*ParseResp, error)
+}
+
+// ==========================
+// Scheduling Protobuf Client
+// ==========================
+
+type schedulingProtobufClient struct {
+ client HTTPClient
+ urls [1]string
+ interceptor twirp.Interceptor
+ opts twirp.ClientOptions
+}
+
+// NewSchedulingProtobufClient creates a Protobuf client that implements the Scheduling interface.
+// It communicates using Protobuf and can be configured with a custom HTTPClient.
+func NewSchedulingProtobufClient(baseURL string, client HTTPClient, opts ...twirp.ClientOption) Scheduling {
+ if c, ok := client.(*http.Client); ok {
+ client = withoutRedirects(c)
+ }
+
+ clientOpts := twirp.ClientOptions{}
+ for _, o := range opts {
+ o(&clientOpts)
+ }
+
+ // Using ReadOpt allows backwards and forwards compatibility with new options in the future
+ literalURLs := false
+ _ = clientOpts.ReadOpt("literalURLs", &literalURLs)
+ var pathPrefix string
+ if ok := clientOpts.ReadOpt("pathPrefix", &pathPrefix); !ok {
+ pathPrefix = "/twirp" // default prefix
+ }
+
+ // Build method URLs: <baseURL>[<prefix>]/<package>.<Service>/<Method>
+ serviceURL := sanitizeBaseURL(baseURL)
+ serviceURL += baseServicePath(pathPrefix, "within.website.x.mimi.scheduling", "Scheduling")
+ urls := [1]string{
+ serviceURL + "ParseEmail",
+ }
+
+ return &schedulingProtobufClient{
+ client: client,
+ urls: urls,
+ interceptor: twirp.ChainInterceptors(clientOpts.Interceptors...),
+ opts: clientOpts,
+ }
+}
+
+func (c *schedulingProtobufClient) ParseEmail(ctx context.Context, in *ParseReq) (*ParseResp, error) {
+ ctx = ctxsetters.WithPackageName(ctx, "within.website.x.mimi.scheduling")
+ ctx = ctxsetters.WithServiceName(ctx, "Scheduling")
+ ctx = ctxsetters.WithMethodName(ctx, "ParseEmail")
+ caller := c.callParseEmail
+ if c.interceptor != nil {
+ caller = func(ctx context.Context, req *ParseReq) (*ParseResp, error) {
+ resp, err := c.interceptor(
+ func(ctx context.Context, req interface{}) (interface{}, error) {
+ typedReq, ok := req.(*ParseReq)
+ if !ok {
+ return nil, twirp.InternalError("failed type assertion req.(*ParseReq) when calling interceptor")
+ }
+ return c.callParseEmail(ctx, typedReq)
+ },
+ )(ctx, req)
+ if resp != nil {
+ typedResp, ok := resp.(*ParseResp)
+ if !ok {
+ return nil, twirp.InternalError("failed type assertion resp.(*ParseResp) when calling interceptor")
+ }
+ return typedResp, err
+ }
+ return nil, err
+ }
+ }
+ return caller(ctx, in)
+}
+
+func (c *schedulingProtobufClient) callParseEmail(ctx context.Context, in *ParseReq) (*ParseResp, error) {
+ out := new(ParseResp)
+ ctx, err := doProtobufRequest(ctx, c.client, c.opts.Hooks, c.urls[0], in, out)
+ if err != nil {
+ twerr, ok := err.(twirp.Error)
+ if !ok {
+ twerr = twirp.InternalErrorWith(err)
+ }
+ callClientError(ctx, c.opts.Hooks, twerr)
+ return nil, err
+ }
+
+ callClientResponseReceived(ctx, c.opts.Hooks)
+
+ return out, nil
+}
+
+// ======================
+// Scheduling JSON Client
+// ======================
+
+type schedulingJSONClient struct {
+ client HTTPClient
+ urls [1]string
+ interceptor twirp.Interceptor
+ opts twirp.ClientOptions
+}
+
+// NewSchedulingJSONClient creates a JSON client that implements the Scheduling interface.
+// It communicates using JSON and can be configured with a custom HTTPClient.
+func NewSchedulingJSONClient(baseURL string, client HTTPClient, opts ...twirp.ClientOption) Scheduling {
+ if c, ok := client.(*http.Client); ok {
+ client = withoutRedirects(c)
+ }
+
+ clientOpts := twirp.ClientOptions{}
+ for _, o := range opts {
+ o(&clientOpts)
+ }
+
+ // Using ReadOpt allows backwards and forwards compatibility with new options in the future
+ literalURLs := false
+ _ = clientOpts.ReadOpt("literalURLs", &literalURLs)
+ var pathPrefix string
+ if ok := clientOpts.ReadOpt("pathPrefix", &pathPrefix); !ok {
+ pathPrefix = "/twirp" // default prefix
+ }
+
+ // Build method URLs: <baseURL>[<prefix>]/<package>.<Service>/<Method>
+ serviceURL := sanitizeBaseURL(baseURL)
+ serviceURL += baseServicePath(pathPrefix, "within.website.x.mimi.scheduling", "Scheduling")
+ urls := [1]string{
+ serviceURL + "ParseEmail",
+ }
+
+ return &schedulingJSONClient{
+ client: client,
+ urls: urls,
+ interceptor: twirp.ChainInterceptors(clientOpts.Interceptors...),
+ opts: clientOpts,
+ }
+}
+
+func (c *schedulingJSONClient) ParseEmail(ctx context.Context, in *ParseReq) (*ParseResp, error) {
+ ctx = ctxsetters.WithPackageName(ctx, "within.website.x.mimi.scheduling")
+ ctx = ctxsetters.WithServiceName(ctx, "Scheduling")
+ ctx = ctxsetters.WithMethodName(ctx, "ParseEmail")
+ caller := c.callParseEmail
+ if c.interceptor != nil {
+ caller = func(ctx context.Context, req *ParseReq) (*ParseResp, error) {
+ resp, err := c.interceptor(
+ func(ctx context.Context, req interface{}) (interface{}, error) {
+ typedReq, ok := req.(*ParseReq)
+ if !ok {
+ return nil, twirp.InternalError("failed type assertion req.(*ParseReq) when calling interceptor")
+ }
+ return c.callParseEmail(ctx, typedReq)
+ },
+ )(ctx, req)
+ if resp != nil {
+ typedResp, ok := resp.(*ParseResp)
+ if !ok {
+ return nil, twirp.InternalError("failed type assertion resp.(*ParseResp) when calling interceptor")
+ }
+ return typedResp, err
+ }
+ return nil, err
+ }
+ }
+ return caller(ctx, in)
+}
+
+func (c *schedulingJSONClient) callParseEmail(ctx context.Context, in *ParseReq) (*ParseResp, error) {
+ out := new(ParseResp)
+ ctx, err := doJSONRequest(ctx, c.client, c.opts.Hooks, c.urls[0], in, out)
+ if err != nil {
+ twerr, ok := err.(twirp.Error)
+ if !ok {
+ twerr = twirp.InternalErrorWith(err)
+ }
+ callClientError(ctx, c.opts.Hooks, twerr)
+ return nil, err
+ }
+
+ callClientResponseReceived(ctx, c.opts.Hooks)
+
+ return out, nil
+}
+
+// =========================
+// Scheduling Server Handler
+// =========================
+
+type schedulingServer struct {
+ Scheduling
+ interceptor twirp.Interceptor
+ hooks *twirp.ServerHooks
+ pathPrefix string // prefix for routing
+ jsonSkipDefaults bool // do not include unpopulated fields (default values) in the response
+ jsonCamelCase bool // JSON fields are serialized as lowerCamelCase rather than keeping the original proto names
+}
+
+// NewSchedulingServer builds a TwirpServer that can be used as an http.Handler to handle
+// HTTP requests that are routed to the right method in the provided svc implementation.
+// The opts are twirp.ServerOption modifiers, for example twirp.WithServerHooks(hooks).
+func NewSchedulingServer(svc Scheduling, opts ...interface{}) TwirpServer {
+ serverOpts := newServerOpts(opts)
+
+ // Using ReadOpt allows backwards and forwards compatibility with new options in the future
+ jsonSkipDefaults := false
+ _ = serverOpts.ReadOpt("jsonSkipDefaults", &jsonSkipDefaults)
+ jsonCamelCase := false
+ _ = serverOpts.ReadOpt("jsonCamelCase", &jsonCamelCase)
+ var pathPrefix string
+ if ok := serverOpts.ReadOpt("pathPrefix", &pathPrefix); !ok {
+ pathPrefix = "/twirp" // default prefix
+ }
+
+ return &schedulingServer{
+ Scheduling: svc,
+ hooks: serverOpts.Hooks,
+ interceptor: twirp.ChainInterceptors(serverOpts.Interceptors...),
+ pathPrefix: pathPrefix,
+ jsonSkipDefaults: jsonSkipDefaults,
+ jsonCamelCase: jsonCamelCase,
+ }
+}
+
+// writeError writes an HTTP response with a valid Twirp error format, and triggers hooks.
+// If err is not a twirp.Error, it will get wrapped with twirp.InternalErrorWith(err)
+func (s *schedulingServer) writeError(ctx context.Context, resp http.ResponseWriter, err error) {
+ writeError(ctx, resp, err, s.hooks)
+}
+
+// handleRequestBodyError is used to handle error when the twirp server cannot read request
+func (s *schedulingServer) handleRequestBodyError(ctx context.Context, resp http.ResponseWriter, msg string, err error) {
+ if context.Canceled == ctx.Err() {
+ s.writeError(ctx, resp, twirp.NewError(twirp.Canceled, "failed to read request: context canceled"))
+ return
+ }
+ if context.DeadlineExceeded == ctx.Err() {
+ s.writeError(ctx, resp, twirp.NewError(twirp.DeadlineExceeded, "failed to read request: deadline exceeded"))
+ return
+ }
+ s.writeError(ctx, resp, twirp.WrapError(malformedRequestError(msg), err))
+}
+
+// SchedulingPathPrefix is a convenience constant that may identify URL paths.
+// Should be used with caution, it only matches routes generated by Twirp Go clients,
+// with the default "/twirp" prefix and default CamelCase service and method names.
+// More info: https://twitchtv.github.io/twirp/docs/routing.html
+const SchedulingPathPrefix = "/twirp/within.website.x.mimi.scheduling.Scheduling/"
+
+func (s *schedulingServer) ServeHTTP(resp http.ResponseWriter, req *http.Request) {
+ ctx := req.Context()
+ ctx = ctxsetters.WithPackageName(ctx, "within.website.x.mimi.scheduling")
+ ctx = ctxsetters.WithServiceName(ctx, "Scheduling")
+ ctx = ctxsetters.WithResponseWriter(ctx, resp)
+
+ var err error
+ ctx, err = callRequestReceived(ctx, s.hooks)
+ if err != nil {
+ s.writeError(ctx, resp, err)
+ return
+ }
+
+ if req.Method != "POST" {
+ msg := fmt.Sprintf("unsupported method %q (only POST is allowed)", req.Method)
+ s.writeError(ctx, resp, badRouteError(msg, req.Method, req.URL.Path))
+ return
+ }
+
+ // Verify path format: [<prefix>]/<package>.<Service>/<Method>
+ prefix, pkgService, method := parseTwirpPath(req.URL.Path)
+ if pkgService != "within.website.x.mimi.scheduling.Scheduling" {
+ msg := fmt.Sprintf("no handler for path %q", req.URL.Path)
+ s.writeError(ctx, resp, badRouteError(msg, req.Method, req.URL.Path))
+ return
+ }
+ if prefix != s.pathPrefix {
+ msg := fmt.Sprintf("invalid path prefix %q, expected %q, on path %q", prefix, s.pathPrefix, req.URL.Path)
+ s.writeError(ctx, resp, badRouteError(msg, req.Method, req.URL.Path))
+ return
+ }
+
+ switch method {
+ case "ParseEmail":
+ s.serveParseEmail(ctx, resp, req)
+ return
+ default:
+ msg := fmt.Sprintf("no handler for path %q", req.URL.Path)
+ s.writeError(ctx, resp, badRouteError(msg, req.Method, req.URL.Path))
+ return
+ }
+}
+
+func (s *schedulingServer) serveParseEmail(ctx context.Context, resp http.ResponseWriter, req *http.Request) {
+ header := req.Header.Get("Content-Type")
+ i := strings.Index(header, ";")
+ if i == -1 {
+ i = len(header)
+ }
+ switch strings.TrimSpace(strings.ToLower(header[:i])) {
+ case "application/json":
+ s.serveParseEmailJSON(ctx, resp, req)
+ case "application/protobuf":
+ s.serveParseEmailProtobuf(ctx, resp, req)
+ default:
+ msg := fmt.Sprintf("unexpected Content-Type: %q", req.Header.Get("Content-Type"))
+ twerr := badRouteError(msg, req.Method, req.URL.Path)
+ s.writeError(ctx, resp, twerr)
+ }
+}
+
+func (s *schedulingServer) serveParseEmailJSON(ctx context.Context, resp http.ResponseWriter, req *http.Request) {
+ var err error
+ ctx = ctxsetters.WithMethodName(ctx, "ParseEmail")
+ ctx, err = callRequestRouted(ctx, s.hooks)
+ if err != nil {
+ s.writeError(ctx, resp, err)
+ return
+ }
+
+ d := json.NewDecoder(req.Body)
+ rawReqBody := json.RawMessage{}
+ if err := d.Decode(&rawReqBody); err != nil {
+ s.handleRequestBodyError(ctx, resp, "the json request could not be decoded", err)
+ return
+ }
+ reqContent := new(ParseReq)
+ unmarshaler := protojson.UnmarshalOptions{DiscardUnknown: true}
+ if err = unmarshaler.Unmarshal(rawReqBody, reqContent); err != nil {
+ s.handleRequestBodyError(ctx, resp, "the json request could not be decoded", err)
+ return
+ }
+
+ handler := s.Scheduling.ParseEmail
+ if s.interceptor != nil {
+ handler = func(ctx context.Context, req *ParseReq) (*ParseResp, error) {
+ resp, err := s.interceptor(
+ func(ctx context.Context, req interface{}) (interface{}, error) {
+ typedReq, ok := req.(*ParseReq)
+ if !ok {
+ return nil, twirp.InternalError("failed type assertion req.(*ParseReq) when calling interceptor")
+ }
+ return s.Scheduling.ParseEmail(ctx, typedReq)
+ },
+ )(ctx, req)
+ if resp != nil {
+ typedResp, ok := resp.(*ParseResp)
+ if !ok {
+ return nil, twirp.InternalError("failed type assertion resp.(*ParseResp) when calling interceptor")
+ }
+ return typedResp, err
+ }
+ return nil, err
+ }
+ }
+
+ // Call service method
+ var respContent *ParseResp
+ func() {
+ defer ensurePanicResponses(ctx, resp, s.hooks)
+ respContent, err = handler(ctx, reqContent)
+ }()
+
+ if err != nil {
+ s.writeError(ctx, resp, err)
+ return
+ }
+ if respContent == nil {
+ s.writeError(ctx, resp, twirp.InternalError("received a nil *ParseResp and nil error while calling ParseEmail. nil responses are not supported"))
+ return
+ }
+
+ ctx = callResponsePrepared(ctx, s.hooks)
+
+ marshaler := &protojson.MarshalOptions{UseProtoNames: !s.jsonCamelCase, EmitUnpopulated: !s.jsonSkipDefaults}
+ respBytes, err := marshaler.Marshal(respContent)
+ if err != nil {
+ s.writeError(ctx, resp, wrapInternal(err, "failed to marshal json response"))
+ return
+ }
+
+ ctx = ctxsetters.WithStatusCode(ctx, http.StatusOK)
+ resp.Header().Set("Content-Type", "application/json")
+ resp.Header().Set("Content-Length", strconv.Itoa(len(respBytes)))
+ resp.WriteHeader(http.StatusOK)
+
+ if n, err := resp.Write(respBytes); err != nil {
+ msg := fmt.Sprintf("failed to write response, %d of %d bytes written: %s", n, len(respBytes), err.Error())
+ twerr := twirp.NewError(twirp.Unknown, msg)
+ ctx = callError(ctx, s.hooks, twerr)
+ }
+ callResponseSent(ctx, s.hooks)
+}
+
+func (s *schedulingServer) serveParseEmailProtobuf(ctx context.Context, resp http.ResponseWriter, req *http.Request) {
+ var err error
+ ctx = ctxsetters.WithMethodName(ctx, "ParseEmail")
+ ctx, err = callRequestRouted(ctx, s.hooks)
+ if err != nil {
+ s.writeError(ctx, resp, err)
+ return
+ }
+
+ buf, err := io.ReadAll(req.Body)
+ if err != nil {
+ s.handleRequestBodyError(ctx, resp, "failed to read request body", err)
+ return
+ }
+ reqContent := new(ParseReq)
+ if err = proto.Unmarshal(buf, reqContent); err != nil {
+ s.writeError(ctx, resp, malformedRequestError("the protobuf request could not be decoded"))
+ return
+ }
+
+ handler := s.Scheduling.ParseEmail
+ if s.interceptor != nil {
+ handler = func(ctx context.Context, req *ParseReq) (*ParseResp, error) {
+ resp, err := s.interceptor(
+ func(ctx context.Context, req interface{}) (interface{}, error) {
+ typedReq, ok := req.(*ParseReq)
+ if !ok {
+ return nil, twirp.InternalError("failed type assertion req.(*ParseReq) when calling interceptor")
+ }
+ return s.Scheduling.ParseEmail(ctx, typedReq)
+ },
+ )(ctx, req)
+ if resp != nil {
+ typedResp, ok := resp.(*ParseResp)
+ if !ok {
+ return nil, twirp.InternalError("failed type assertion resp.(*ParseResp) when calling interceptor")
+ }
+ return typedResp, err
+ }
+ return nil, err
+ }
+ }
+
+ // Call service method
+ var respContent *ParseResp
+ func() {
+ defer ensurePanicResponses(ctx, resp, s.hooks)
+ respContent, err = handler(ctx, reqContent)
+ }()
+
+ if err != nil {
+ s.writeError(ctx, resp, err)
+ return
+ }
+ if respContent == nil {
+ s.writeError(ctx, resp, twirp.InternalError("received a nil *ParseResp and nil error while calling ParseEmail. nil responses are not supported"))
+ return
+ }
+
+ ctx = callResponsePrepared(ctx, s.hooks)
+
+ respBytes, err := proto.Marshal(respContent)
+ if err != nil {
+ s.writeError(ctx, resp, wrapInternal(err, "failed to marshal proto response"))
+ return
+ }
+
+ ctx = ctxsetters.WithStatusCode(ctx, http.StatusOK)
+ resp.Header().Set("Content-Type", "application/protobuf")
+ resp.Header().Set("Content-Length", strconv.Itoa(len(respBytes)))
+ resp.WriteHeader(http.StatusOK)
+ if n, err := resp.Write(respBytes); err != nil {
+ msg := fmt.Sprintf("failed to write response, %d of %d bytes written: %s", n, len(respBytes), err.Error())
+ twerr := twirp.NewError(twirp.Unknown, msg)
+ ctx = callError(ctx, s.hooks, twerr)
+ }
+ callResponseSent(ctx, s.hooks)
+}
+
+func (s *schedulingServer) ServiceDescriptor() ([]byte, int) {
+ return twirpFileDescriptor0, 0
+}
+
+func (s *schedulingServer) ProtocGenTwirpVersion() string {
+ return "v8.1.3"
+}
+
+// PathPrefix returns the base service path, in the form: "/<prefix>/<package>.<Service>/"
+// that is everything in a Twirp route except for the <Method>. This can be used for routing,
+// for example to identify the requests that are targeted to this service in a mux.
+func (s *schedulingServer) PathPrefix() string {
+ return baseServicePath(s.pathPrefix, "within.website.x.mimi.scheduling", "Scheduling")
+}
+
+// =====
+// Utils
+// =====
+
+// HTTPClient is the interface used by generated clients to send HTTP requests.
+// It is fulfilled by *(net/http).Client, which is sufficient for most users.
+// Users can provide their own implementation for special retry policies.
+//
+// HTTPClient implementations should not follow redirects. Redirects are
+// automatically disabled if *(net/http).Client is passed to client
+// constructors. See the withoutRedirects function in this file for more
+// details.
+type HTTPClient interface {
+ Do(req *http.Request) (*http.Response, error)
+}
+
+// TwirpServer is the interface generated server structs will support: they're
+// HTTP handlers with additional methods for accessing metadata about the
+// service. Those accessors are a low-level API for building reflection tools.
+// Most people can think of TwirpServers as just http.Handlers.
+type TwirpServer interface {
+ http.Handler
+
+ // ServiceDescriptor returns gzipped bytes describing the .proto file that
+ // this service was generated from. Once unzipped, the bytes can be
+ // unmarshalled as a
+ // google.golang.org/protobuf/types/descriptorpb.FileDescriptorProto.
+ //
+ // The returned integer is the index of this particular service within that
+ // FileDescriptorProto's 'Service' slice of ServiceDescriptorProtos. This is a
+ // low-level field, expected to be used for reflection.
+ ServiceDescriptor() ([]byte, int)
+
+ // ProtocGenTwirpVersion is the semantic version string of the version of
+ // twirp used to generate this file.
+ ProtocGenTwirpVersion() string
+
+ // PathPrefix returns the HTTP URL path prefix for all methods handled by this
+ // service. This can be used with an HTTP mux to route Twirp requests.
+ // The path prefix is in the form: "/<prefix>/<package>.<Service>/"
+ // that is, everything in a Twirp route except for the <Method> at the end.
+ PathPrefix() string
+}
+
+func newServerOpts(opts []interface{}) *twirp.ServerOptions {
+ serverOpts := &twirp.ServerOptions{}
+ for _, opt := range opts {
+ switch o := opt.(type) {
+ case twirp.ServerOption:
+ o(serverOpts)
+ case *twirp.ServerHooks: // backwards compatibility, allow to specify hooks as an argument
+ twirp.WithServerHooks(o)(serverOpts)
+ case nil: // backwards compatibility, allow nil value for the argument
+ continue
+ default:
+ panic(fmt.Sprintf("Invalid option type %T, please use a twirp.ServerOption", o))
+ }
+ }
+ return serverOpts
+}
+
+// WriteError writes an HTTP response with a valid Twirp error format (code, msg, meta).
+// Useful outside of the Twirp server (e.g. http middleware), but does not trigger hooks.
+// If err is not a twirp.Error, it will get wrapped with twirp.InternalErrorWith(err)
+func WriteError(resp http.ResponseWriter, err error) {
+ writeError(context.Background(), resp, err, nil)
+}
+
+// writeError writes Twirp errors in the response and triggers hooks.
+func writeError(ctx context.Context, resp http.ResponseWriter, err error, hooks *twirp.ServerHooks) {
+ // Convert to a twirp.Error. Non-twirp errors are converted to internal errors.
+ var twerr twirp.Error
+ if !errors.As(err, &twerr) {
+ twerr = twirp.InternalErrorWith(err)
+ }
+
+ statusCode := twirp.ServerHTTPStatusFromErrorCode(twerr.Code())
+ ctx = ctxsetters.WithStatusCode(ctx, statusCode)
+ ctx = callError(ctx, hooks, twerr)
+
+ respBody := marshalErrorToJSON(twerr)
+
+ resp.Header().Set("Content-Type", "application/json") // Error responses are always JSON
+ resp.Header().Set("Content-Length", strconv.Itoa(len(respBody)))
+ resp.WriteHeader(statusCode) // set HTTP status code and send response
+
+ _, writeErr := resp.Write(respBody)
+ if writeErr != nil {
+ // We have three options here. We could log the error, call the Error
+ // hook, or just silently ignore the error.
+ //
+ // Logging is unacceptable because we don't have a user-controlled
+ // logger; writing out to stderr without permission is too rude.
+ //
+ // Calling the Error hook would confuse users: it would mean the Error
+ // hook got called twice for one request, which is likely to lead to
+ // duplicated log messages and metrics, no matter how well we document
+ // the behavior.
+ //
+ // Silently ignoring the error is our least-bad option. It's highly
+ // likely that the connection is broken and the original 'err' says
+ // so anyway.
+ _ = writeErr
+ }
+
+ callResponseSent(ctx, hooks)
+}
+
+// sanitizeBaseURL parses the the baseURL, and adds the "http" scheme if needed.
+// If the URL is unparsable, the baseURL is returned unchanged.
+func sanitizeBaseURL(baseURL string) string {
+ u, err := url.Parse(baseURL)
+ if err != nil {
+ return baseURL // invalid URL will fail later when making requests
+ }
+ if u.Scheme == "" {
+ u.Scheme = "http"
+ }
+ return u.String()
+}
+
+// baseServicePath composes the path prefix for the service (without <Method>).
+// e.g.: baseServicePath("/twirp", "my.pkg", "MyService")
+//
+// returns => "/twirp/my.pkg.MyService/"
+//
+// e.g.: baseServicePath("", "", "MyService")
+//
+// returns => "/MyService/"
+func baseServicePath(prefix, pkg, service string) string {
+ fullServiceName := service
+ if pkg != "" {
+ fullServiceName = pkg + "." + service
+ }
+ return path.Join("/", prefix, fullServiceName) + "/"
+}
+
+// parseTwirpPath extracts path components form a valid Twirp route.
+// Expected format: "[<prefix>]/<package>.<Service>/<Method>"
+// e.g.: prefix, pkgService, method := parseTwirpPath("/twirp/pkg.Svc/MakeHat")
+func parseTwirpPath(path string) (string, string, string) {
+ parts := strings.Split(path, "/")
+ if len(parts) < 2 {
+ return "", "", ""
+ }
+ method := parts[len(parts)-1]
+ pkgService := parts[len(parts)-2]
+ prefix := strings.Join(parts[0:len(parts)-2], "/")
+ return prefix, pkgService, method
+}
+
+// getCustomHTTPReqHeaders retrieves a copy of any headers that are set in
+// a context through the twirp.WithHTTPRequestHeaders function.
+// If there are no headers set, or if they have the wrong type, nil is returned.
+func getCustomHTTPReqHeaders(ctx context.Context) http.Header {
+ header, ok := twirp.HTTPRequestHeaders(ctx)
+ if !ok || header == nil {
+ return nil
+ }
+ copied := make(http.Header)
+ for k, vv := range header {
+ if vv == nil {
+ copied[k] = nil
+ continue
+ }
+ copied[k] = make([]string, len(vv))
+ copy(copied[k], vv)
+ }
+ return copied
+}
+
+// newRequest makes an http.Request from a client, adding common headers.
+func newRequest(ctx context.Context, url string, reqBody io.Reader, contentType string) (*http.Request, error) {
+ req, err := http.NewRequest("POST", url, reqBody)
+ if err != nil {
+ return nil, err
+ }
+ req = req.WithContext(ctx)