38 lines
881 B
Go
38 lines
881 B
Go
/*
|
|
* Copyright 2026 Oleg Borodin <onborodin@gmail.com>
|
|
*
|
|
* This work is published and licensed under a Creative Commons
|
|
* Attribution-NonCommercial-NoDerivatives 4.0 International License.
|
|
*
|
|
* Distribution of this work is permitted, but commercial use and
|
|
* modifications are strictly prohibited.
|
|
*/
|
|
package client
|
|
|
|
import (
|
|
"net/url"
|
|
"path"
|
|
"strings"
|
|
)
|
|
|
|
func repackServiceURI(fileuri string) (string, string, string, error) {
|
|
var err error
|
|
var res, username, password string
|
|
if !strings.Contains(fileuri, "://") {
|
|
fileuri = "https://" + fileuri
|
|
}
|
|
uri, err := url.Parse(fileuri)
|
|
if err != nil {
|
|
return res, username, password, err
|
|
}
|
|
uri.Path = path.Clean(uri.Path)
|
|
if uri.User != nil {
|
|
username = uri.User.Username()
|
|
password, _ = uri.User.Password()
|
|
}
|
|
uri.User = nil
|
|
//uri.Scheme = "https"
|
|
res = uri.String()
|
|
return res, username, password, err
|
|
}
|