Files
wehub-resource-sync bf9395e022
CI / license-header (push) Has been skipped
CI / e2e-dry-run (push) Has been skipped
CI / fast-gate (push) Failing after 0s
Test PR Label Logic / test-pr-labels (push) Failing after 1s
Skill Format Check / check-format (push) Failing after 2s
CI / security (push) Failing after 5s
CI / unit-test (push) Has been skipped
CI / lint (push) Has been skipped
CI / script-test (push) Has been skipped
CI / deterministic-gate (push) Has been skipped
CI / coverage (push) Has been skipped
CI / results (push) Has been cancelled
CI / deadcode (push) Has been cancelled
CI / e2e-live (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:22:54 +08:00

52 lines
1.2 KiB
Go

// Copyright (c) 2026 Lark Technologies Pte. Ltd.
// SPDX-License-Identifier: MIT
package manifest
import (
"encoding/json"
"fmt"
"path/filepath"
"github.com/larksuite/cli/internal/vfs"
"github.com/larksuite/cli/internal/vfs/localfileio"
)
func ReadFile(path, kind string) (Manifest, error) {
data, err := vfs.ReadFile(path)
if err != nil {
return Manifest{}, err
}
return readBytes(filepath.Base(path), data, kind)
}
func ReadBytes(data []byte, kind string) (Manifest, error) {
return readBytes(kind, data, kind)
}
func readBytes(label string, data []byte, kind string) (Manifest, error) {
if len(data) > MaxManifestBytes {
return Manifest{}, fmt.Errorf("%s is too large: %d bytes", label, len(data))
}
var m Manifest
if err := json.Unmarshal(data, &m); err != nil {
return Manifest{}, fmt.Errorf("decode %s: %w", label, err)
}
if err := m.Validate(kind); err != nil {
return Manifest{}, err
}
return m, nil
}
func WriteFile(path, kind string, m Manifest) error {
if err := m.Validate(kind); err != nil {
return err
}
data, err := json.MarshalIndent(m, "", " ")
if err != nil {
return err
}
data = append(data, '\n')
return localfileio.AtomicWrite(path, data, 0o644)
}