656e270bd9
We also need to upgrade the linter together with the Go version, all the changes should relate to either fixing linting problems or upgrading the Go version used to build Grafana.
30 lines
759 B
Go
30 lines
759 B
Go
package services
|
|
|
|
import (
|
|
"io/ioutil" //nolint:staticcheck // No need to change in v8.
|
|
"os"
|
|
)
|
|
|
|
type IoUtilImp struct {
|
|
}
|
|
|
|
func (i IoUtilImp) Stat(path string) (os.FileInfo, error) {
|
|
return os.Stat(path)
|
|
}
|
|
|
|
func (i IoUtilImp) RemoveAll(path string) error {
|
|
return os.RemoveAll(path)
|
|
}
|
|
|
|
func (i IoUtilImp) ReadDir(path string) ([]os.FileInfo, error) {
|
|
return ioutil.ReadDir(path)
|
|
}
|
|
|
|
func (i IoUtilImp) ReadFile(filename string) ([]byte, error) {
|
|
// We can ignore the gosec G304 warning on this one, since the variable part of the file path stems
|
|
// from command line flag "pluginsDir". If the user shouldn't be reading from this directory, they shouldn't have
|
|
// the permission in the file system.
|
|
// nolint:gosec
|
|
return ioutil.ReadFile(filename)
|
|
}
|