ROOTPLOIT
Server: LiteSpeed
System: Linux in-mum-web1878.main-hosting.eu 5.14.0-570.21.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 11 07:22:35 EDT 2025 x86_64
User: u435929562 (435929562)
PHP: 7.4.33
Disabled: system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
Upload Files
File: //opt/go/pkg/mod/github.com/aws/[email protected]/private/model/api/endpoint_trait.go
//go:build codegen
// +build codegen

package api

import (
	"fmt"
	"text/template"
)

func setupEndpointHostPrefix(op *Operation) {
	op.API.AddSDKImport("private/protocol")

	buildHandler := fmt.Sprintf("protocol.NewHostPrefixHandler(%q, ",
		op.Endpoint.HostPrefix)

	if op.InputRef.Shape.HasHostLabelMembers() {
		buildHandler += "input.hostLabels"
	} else {
		buildHandler += "nil"
	}

	buildHandler += ")"

	op.CustomBuildHandlers = append(op.CustomBuildHandlers,
		buildHandler,
		"protocol.ValidateEndpointHostHandler",
	)
}

// HasHostLabelMembers returns true if the shape contains any members which are
// decorated with the hostLabel trait.
func (s *Shape) HasHostLabelMembers() bool {
	for _, ref := range s.MemberRefs {
		if ref.HostLabel {
			return true
		}
	}

	return false
}

var hostLabelsShapeTmpl = template.Must(
	template.New("hostLabelsShapeTmpl").
		Parse(hostLabelsShapeTmplDef),
)

const hostLabelsShapeTmplDef = `
{{- define "hostLabelsShapeTmpl" }}
func (s *{{ $.ShapeName }}) hostLabels() map[string]string {
	return map[string]string{
	{{- range $name, $ref := $.MemberRefs }}
		{{- if $ref.HostLabel }}
		"{{ $name }}": aws.StringValue(s.{{ $name }}),
		{{- end }}
	{{- end }}
	}
}
{{- end }}
`