mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
47 lines
1.1 KiB
Go
47 lines
1.1 KiB
Go
// Copyright (c) 2020 Gitpod GmbH. All rights reserved.
|
|
// Licensed under the GNU Affero General Public License (AGPL).
|
|
// See License-AGPL.txt in the project root for license information.
|
|
|
|
package api
|
|
|
|
import (
|
|
"encoding/base64"
|
|
|
|
"golang.org/x/xerrors"
|
|
"google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
// ToBase64 marshals the image spec using protobuf and encodes it in base64
|
|
func (spec *ExposedPorts) ToBase64() (res string, err error) {
|
|
if spec == nil {
|
|
return
|
|
}
|
|
|
|
rspec, err := proto.Marshal(spec)
|
|
if err != nil {
|
|
return "", xerrors.Errorf("cannot marshal image spec: %w", err)
|
|
}
|
|
|
|
return base64.StdEncoding.EncodeToString(rspec), nil
|
|
}
|
|
|
|
// ExposedPortsFromBase64 decodes an image specification from a base64 encoded protobuf message
|
|
func ExposedPortsFromBase64(input string) (res *ExposedPorts, err error) {
|
|
if len(input) == 0 {
|
|
return
|
|
}
|
|
|
|
specPB, err := base64.StdEncoding.DecodeString(input)
|
|
if err != nil {
|
|
return nil, xerrors.Errorf("cannot decode image spec: %w", err)
|
|
}
|
|
|
|
var spec ExposedPorts
|
|
err = proto.Unmarshal(specPB, &spec)
|
|
if err != nil {
|
|
return nil, xerrors.Errorf("cannot unmarshal image spec: %w", err)
|
|
}
|
|
|
|
return &spec, nil
|
|
}
|