You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
869 B
31 lines
869 B
3 years ago
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a MIT-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
package migrations
|
||
|
|
||
|
import (
|
||
|
"crypto/tls"
|
||
|
"net/http"
|
||
|
|
||
|
"code.gitea.io/gitea/modules/hostmatcher"
|
||
|
"code.gitea.io/gitea/modules/proxy"
|
||
|
"code.gitea.io/gitea/modules/setting"
|
||
|
)
|
||
|
|
||
|
// NewMigrationHTTPClient returns a HTTP client for migration
|
||
|
func NewMigrationHTTPClient() *http.Client {
|
||
|
return &http.Client{
|
||
|
Transport: NewMigrationHTTPTransport(),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// NewMigrationHTTPTransport returns a HTTP transport for migration
|
||
|
func NewMigrationHTTPTransport() *http.Transport {
|
||
|
return &http.Transport{
|
||
|
TLSClientConfig: &tls.Config{InsecureSkipVerify: setting.Migrations.SkipTLSVerify},
|
||
|
Proxy: proxy.Proxy(),
|
||
|
DialContext: hostmatcher.NewDialContext("migration", allowList, blockList),
|
||
|
}
|
||
|
}
|