autogits/bots-common/utils.go

47 lines
1.3 KiB
Go
Raw Normal View History

2024-09-18 12:23:32 +02:00
package common
/*
* This file is part of Autogits.
*
* Copyright © 2024 SUSE LLC
*
* Autogits is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 2 of the License, or (at your option) any later
* version.
*
* Autogits is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* Foobar. If not, see <https://www.gnu.org/licenses/>.
*/
import (
2024-09-30 10:25:08 +02:00
"fmt"
2024-09-18 12:23:32 +02:00
"slices"
"strings"
)
func SplitStringNoEmpty(str, sep string) []string {
return slices.DeleteFunc(strings.Split(str, sep), func(s string) bool {
return len(s) == 0
})
}
2024-09-30 10:25:08 +02:00
func TranslateHttpsToSshUrl(url string) (string, error) {
const url1 = "https://src.opensuse.org/"
const url2 = "https://src.suse.de/"
if len(url) > len(url1) && url[0:len(url1)] == url1 {
return "gitea@src.opensuse.org:" + url[len(url1):], nil
}
if len(url) > len(url2) && url[0:len(url2)] == url2 {
return "gitea@src.suse.de:" + url[len(url2):], nil
}
return "", fmt.Errorf("Unknown input url %s", url)
}