2019-11-12 18:50:41 +00:00
|
|
|
// Copyright 2015 Google Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by the Apache 2.0
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2023-12-11 11:58:19 +00:00
|
|
|
//go:build appengine
|
2019-11-12 18:50:41 +00:00
|
|
|
// +build appengine
|
|
|
|
|
|
|
|
package internal
|
|
|
|
|
|
|
|
import (
|
2023-12-11 11:58:19 +00:00
|
|
|
"context"
|
2019-11-12 18:50:41 +00:00
|
|
|
|
2023-12-11 11:58:19 +00:00
|
|
|
"appengine"
|
2019-11-12 18:50:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
appengineStandard = true
|
|
|
|
}
|
|
|
|
|
2023-12-11 11:58:19 +00:00
|
|
|
func DefaultVersionHostname(ctx context.Context) string {
|
2019-11-12 18:50:41 +00:00
|
|
|
c := fromContext(ctx)
|
|
|
|
if c == nil {
|
|
|
|
panic(errNotAppEngineContext)
|
|
|
|
}
|
|
|
|
return appengine.DefaultVersionHostname(c)
|
|
|
|
}
|
|
|
|
|
2023-12-11 11:58:19 +00:00
|
|
|
func Datacenter(_ context.Context) string { return appengine.Datacenter() }
|
|
|
|
func ServerSoftware() string { return appengine.ServerSoftware() }
|
|
|
|
func InstanceID() string { return appengine.InstanceID() }
|
|
|
|
func IsDevAppServer() bool { return appengine.IsDevAppServer() }
|
2019-11-12 18:50:41 +00:00
|
|
|
|
2023-12-11 11:58:19 +00:00
|
|
|
func RequestID(ctx context.Context) string {
|
2019-11-12 18:50:41 +00:00
|
|
|
c := fromContext(ctx)
|
|
|
|
if c == nil {
|
|
|
|
panic(errNotAppEngineContext)
|
|
|
|
}
|
|
|
|
return appengine.RequestID(c)
|
|
|
|
}
|
|
|
|
|
2023-12-11 11:58:19 +00:00
|
|
|
func ModuleName(ctx context.Context) string {
|
2019-11-12 18:50:41 +00:00
|
|
|
c := fromContext(ctx)
|
|
|
|
if c == nil {
|
|
|
|
panic(errNotAppEngineContext)
|
|
|
|
}
|
|
|
|
return appengine.ModuleName(c)
|
|
|
|
}
|
2023-12-11 11:58:19 +00:00
|
|
|
func VersionID(ctx context.Context) string {
|
2019-11-12 18:50:41 +00:00
|
|
|
c := fromContext(ctx)
|
|
|
|
if c == nil {
|
|
|
|
panic(errNotAppEngineContext)
|
|
|
|
}
|
|
|
|
return appengine.VersionID(c)
|
|
|
|
}
|
|
|
|
|
2023-12-11 11:58:19 +00:00
|
|
|
func fullyQualifiedAppID(ctx context.Context) string {
|
2019-11-12 18:50:41 +00:00
|
|
|
c := fromContext(ctx)
|
|
|
|
if c == nil {
|
|
|
|
panic(errNotAppEngineContext)
|
|
|
|
}
|
|
|
|
return c.FullyQualifiedAppID()
|
|
|
|
}
|