2019-01-24 20:15:10 +00:00
// Copyright (C) 2019 Storj Labs, Inc.
2019-01-02 18:07:49 +00:00
// See LICENSE for copying information.
package fpath
import (
2019-03-12 16:13:40 +00:00
"fmt"
2019-01-02 18:07:49 +00:00
"io"
"os"
2019-03-12 16:13:40 +00:00
"path"
2019-01-02 18:07:49 +00:00
"path/filepath"
"runtime"
"strings"
2019-03-29 12:30:23 +00:00
"github.com/zeebo/errs"
2019-01-02 18:07:49 +00:00
)
// IsRoot returns whether path is the root directory
func IsRoot ( path string ) bool {
abs , err := filepath . Abs ( path )
if err == nil {
path = abs
}
return filepath . Dir ( path ) == path
}
// ApplicationDir returns best base directory for specific OS
func ApplicationDir ( subdir ... string ) string {
for i := range subdir {
if runtime . GOOS == "windows" || runtime . GOOS == "darwin" {
subdir [ i ] = strings . Title ( subdir [ i ] )
} else {
subdir [ i ] = strings . ToLower ( subdir [ i ] )
}
}
var appdir string
home := os . Getenv ( "HOME" )
switch runtime . GOOS {
case "windows" :
// Windows standards: https://msdn.microsoft.com/en-us/library/windows/apps/hh465094.aspx?f=255&MSPPError=-2147217396
for _ , env := range [ ] string { "AppData" , "AppDataLocal" , "UserProfile" , "Home" } {
val := os . Getenv ( env )
if val != "" {
appdir = val
break
}
}
case "darwin" :
// Mac standards: https://developer.apple.com/library/archive/documentation/FileManagement/Conceptual/FileSystemProgrammingGuide/MacOSXDirectories/MacOSXDirectories.html
appdir = filepath . Join ( home , "Library" , "Application Support" )
case "linux" :
fallthrough
default :
// Linux standards: https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
appdir = os . Getenv ( "XDG_DATA_HOME" )
if appdir == "" && home != "" {
appdir = filepath . Join ( home , ".local" , "share" )
}
}
return filepath . Join ( append ( [ ] string { appdir } , subdir ... ) ... )
}
// IsValidSetupDir checks if directory is valid for setup configuration
func IsValidSetupDir ( name string ) ( ok bool , err error ) {
_ , err = os . Stat ( name )
if err != nil {
if os . IsNotExist ( err ) {
return true , err
}
return false , err
}
f , err := os . Open ( name )
if err != nil {
return false , err
}
defer func ( ) {
2019-03-29 12:30:23 +00:00
err = errs . Combine ( err , f . Close ( ) )
2019-01-02 18:07:49 +00:00
} ( )
for {
var filenames [ ] string
filenames , err = f . Readdirnames ( 100 )
if err == io . EOF {
// nothing more
return true , nil
} else if err != nil {
// something went wrong
return false , err
}
for _ , filename := range filenames {
2019-01-18 10:36:58 +00:00
if filename == "config.yaml" {
return false , nil
2019-01-02 18:07:49 +00:00
}
}
}
}
2019-03-12 16:13:40 +00:00
// IsWritable determines if a directory is writeable
func IsWritable ( filepath string ) ( bool , error ) {
info , err := os . Stat ( filepath )
if err != nil {
return false , err
}
if ! info . IsDir ( ) {
return false , fmt . Errorf ( "Path %s is not a directory" , filepath )
}
// Check if the user bit is enabled in file permission
if info . Mode ( ) . Perm ( ) & 0200 == 0 {
return false , fmt . Errorf ( "Write permission bit is not set on this file for user" )
}
// Test if user can create file
// There is no OS cross-compatible method for
// determining if a user has write permissions on a folder.
// We can test by attempting to create a file in the folder.
testFile := path . Join ( filepath , ".perm" )
file , err := os . Create ( testFile ) // For read access.
if err != nil {
return false , fmt . Errorf ( "Write permission bit is not set on this file for user" )
}
_ = file . Close ( )
_ = os . Remove ( testFile )
return true , nil
}