Files
proton-bridge/internal/versioner/version.go
2021-01-15 13:22:55 +00:00

101 lines
2.4 KiB
Go

// Copyright (c) 2020 Proton Technologies AG
//
// This file is part of ProtonMail Bridge.
//
// ProtonMail Bridge is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// ProtonMail Bridge is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with ProtonMail Bridge. If not, see <https://www.gnu.org/licenses/>.
package versioner
import (
"bytes"
"errors"
"io/ioutil"
"os"
"path/filepath"
"github.com/Masterminds/semver/v3"
"github.com/ProtonMail/gopenpgp/v2/crypto"
"github.com/ProtonMail/proton-bridge/pkg/sum"
)
const sumFile = ".sum"
type Version struct {
version *semver.Version
path string
}
type Versions []*Version
func (v Versions) Len() int {
return len(v)
}
func (v Versions) Less(i, j int) bool {
return v[i].version.LessThan(v[j].version)
}
func (v Versions) Swap(i, j int) {
v[i], v[j] = v[j], v[i]
}
// VerifyFiles verifies all files in the version directory.
func (v *Version) VerifyFiles(kr *crypto.KeyRing) error {
fileBytes, err := ioutil.ReadFile(filepath.Join(v.path, sumFile)) // nolint[gosec]
if err != nil {
return err
}
sigBytes, err := ioutil.ReadFile(filepath.Join(v.path, sumFile+".sig")) // nolint[gosec]
if err != nil {
return err
}
if err := kr.VerifyDetached(
crypto.NewPlainMessage(fileBytes),
crypto.NewPGPSignature(sigBytes),
crypto.GetUnixTime(),
); err != nil {
return err
}
sum, err := sum.RecursiveSum(v.path, sumFile)
if err != nil {
return err
}
if !bytes.Equal(sum, fileBytes) {
return errors.New("sum mismatch")
}
return nil
}
// GetExecutable returns the full path to the executable of the given version.
// It returns an error if the executable is missing or does not have executable permissions set.
func (v *Version) GetExecutable(name string) (string, error) {
exe := filepath.Join(v.path, getExeName(name))
if !fileExists(exe) || !fileIsExecutable(exe) {
return "", ErrNoExecutable
}
return exe, nil
}
// Remove removes this version directory.
func (v *Version) Remove() error {
return os.RemoveAll(v.path)
}