aboutsummaryrefslogtreecommitdiffstats
path: root/auth
diff options
context:
space:
mode:
authorPetter Rasmussen2016-01-17 13:41:40 +0100
committerPetter Rasmussen2016-01-17 13:41:40 +0100
commitf16b89b6f6bee6023c51b4f8120a3e4776128384 (patch)
treed551bdeffdf6bf57b575a0cbf00aa40555a80d47 /auth
parent0f9535df1b2a64e8f895671025bf7823e9391135 (diff)
downloadgdrive-f16b89b6f6bee6023c51b4f8120a3e4776128384.tar.bz2
Delete stale files
Diffstat (limited to 'auth')
-rw-r--r--auth/auth.go73
1 files changed, 0 insertions, 73 deletions
diff --git a/auth/auth.go b/auth/auth.go
deleted file mode 100644
index 6bb14d6..0000000
--- a/auth/auth.go
+++ /dev/null
@@ -1,73 +0,0 @@
-package auth
-
-import (
- "code.google.com/p/goauth2/oauth"
- "errors"
- "fmt"
- "github.com/prasmussen/gdrive/util"
- "net/http"
-)
-
-// Get auth code from user
-func promptUserForAuthCode(config *oauth.Config) string {
- authUrl := config.AuthCodeURL("state")
- fmt.Println("Go to the following link in your browser:")
- fmt.Printf("%v\n\n", authUrl)
- return util.Prompt("Enter verification code: ")
-}
-
-// Returns true if we have a valid cached token
-func hasValidToken(cacheFile oauth.CacheFile, transport *oauth.Transport) bool {
- // Check if we have a cached token
- token, err := cacheFile.Token()
- if err != nil {
- return false
- }
-
- // Refresh token if its expired
- if token.Expired() {
- transport.Token = token
- err = transport.Refresh()
- if err != nil {
- fmt.Println(err)
- return false
- }
- }
- return true
-}
-
-func GetOauth2Client(clientId, clientSecret, cachePath string, promptUser bool) (*http.Client, error) {
- cacheFile := oauth.CacheFile(cachePath)
-
- config := &oauth.Config{
- ClientId: clientId,
- ClientSecret: clientSecret,
- Scope: "https://www.googleapis.com/auth/drive",
- RedirectURL: "urn:ietf:wg:oauth:2.0:oob",
- AuthURL: "https://accounts.google.com/o/oauth2/auth",
- TokenURL: "https://accounts.google.com/o/oauth2/token",
- TokenCache: cacheFile,
- }
-
- transport := &oauth.Transport{
- Config: config,
- Transport: http.DefaultTransport,
- }
-
- // Return client if we have a valid token
- if hasValidToken(cacheFile, transport) {
- return transport.Client(), nil
- }
-
- if !promptUser {
- return nil, errors.New("no valid token found")
- }
-
- // Get auth code from user and request a new token
- code := promptUserForAuthCode(config)
- _, err := transport.Exchange(code)
- if err != nil {
- return nil, err
- }
- return transport.Client(), nil
-}