2020-12-27 09:04:19 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2020-12-27 09:04:19 +05:30
|
|
|
|
|
|
|
package uri
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ErrURISchemeNotSupported represents a scheme error
|
|
|
|
type ErrURISchemeNotSupported struct {
|
|
|
|
Scheme string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e ErrURISchemeNotSupported) Error() string {
|
|
|
|
return fmt.Sprintf("Unsupported scheme: %v", e.Scheme)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open open a local file or a remote file
|
|
|
|
func Open(uriStr string) (io.ReadCloser, error) {
|
|
|
|
u, err := url.Parse(uriStr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
switch strings.ToLower(u.Scheme) {
|
|
|
|
case "http", "https":
|
|
|
|
f, err := http.Get(uriStr)
|
2021-12-23 21:57:33 +05:30
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return f.Body, nil
|
2020-12-27 09:04:19 +05:30
|
|
|
case "file":
|
|
|
|
return os.Open(u.Path)
|
|
|
|
default:
|
|
|
|
return nil, ErrURISchemeNotSupported{Scheme: u.Scheme}
|
|
|
|
}
|
|
|
|
}
|