mirror of
https://github.com/thegeeklab/wp-github-comment.git
synced 2024-11-10 03:50:39 +00:00
28 lines
499 B
Go
28 lines
499 B
Go
package plugin
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func readStringOrFile(input string) (string, bool, error) {
|
|
//nolint:gomnd
|
|
if len(input) > 255 {
|
|
return input, false, nil
|
|
}
|
|
|
|
// Check if input is a file path
|
|
if _, err := os.Stat(input); err != nil && os.IsNotExist(err) {
|
|
// No file found => use input as result
|
|
return input, false, nil
|
|
} else if err != nil {
|
|
return "", false, err
|
|
}
|
|
|
|
result, err := os.ReadFile(input)
|
|
if err != nil {
|
|
return "", true, err
|
|
}
|
|
|
|
return string(result), true, nil
|
|
}
|