forked from aws/aws-lambda-runtime-interface-emulator
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathagent.go
More file actions
50 lines (40 loc) · 1.19 KB
/
agent.go
File metadata and controls
50 lines (40 loc) · 1.19 KB
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
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
package agents
import (
"log/slog"
"path"
"path/filepath"
"github.com/aws/aws-lambda-runtime-interface-emulator/internal/lambda-managed-instances/utils"
)
const (
ExtensionsDir = "/opt/extensions"
)
func ListExternalAgentPaths(fileutils utils.FileUtil, dir string, root string) []string {
var agentPaths []string
if !isCanonical(dir) || !isCanonical(root) {
slog.Warn("Agents base paths are not absolute and in canonical form", "dir", dir, "root", root)
return agentPaths
}
fullDir := path.Join(root, dir)
files, err := fileutils.ReadDirectory(fullDir)
if err != nil {
if fileutils.IsNotExist(err) {
slog.Info("The extension's directory does not exist, assuming no extensions to be loaded", "fullDir", fullDir)
} else {
slog.Error("Cannot list external agents", "err", err)
}
return agentPaths
}
for _, file := range files {
if !file.IsDir() {
p := path.Join("/", dir, file.Name())
agentPaths = append(agentPaths, p)
}
}
return agentPaths
}
func isCanonical(path string) bool {
absPath, err := filepath.Abs(path)
return err == nil && absPath == path
}