1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
package lfshttp
import (
"fmt"
"net/http"
"github.com/git-lfs/git-lfs/v3/tools"
"github.com/ssgelm/cookiejarparser"
)
func isCookieJarEnabledForHost(c *Client, host string) bool {
_, cookieFileOk := c.uc.Get("http", fmt.Sprintf("https://%v", host), "cookieFile")
return cookieFileOk
}
func getCookieJarForHost(c *Client, host string) (http.CookieJar, error) {
cookieFile, _ := c.uc.Get("http", fmt.Sprintf("https://%v", host), "cookieFile")
cookieFilePath, err := tools.ExpandPath(cookieFile, false)
if err != nil {
return nil, err
}
return cookiejarparser.LoadCookieJarFile(cookieFilePath)
}
|