Skip to content

Commit 098f02b

Browse files
lawric1dhruvmanila
andauthored
Fixes: TheAlgorithms#3944 Authentication error; use tokens instead (TheAlgorithms#3949)
* fixes TheAlgorithms#3944 authentication error * Fixes: TheAlgorithms#3944 authentication error * Fixed docstring failure in pre-commit, Fixed request.get params to GitHub REST API standards * run black formatter * Add USER_TOKEN constant and checks if empty, removes deprecated docstring * Add descriptive dict type hint, change headers format to f-string * Add Accept header * Fix pre-commit error * Fix pre-commit error * Add test for fetch_github_info * Remove test function from main file * Create test_fetch_github_info.py * Update test_fetch_github_info.py * Update test_fetch_github_info.py * No need to cover __name__ == __main__ block Co-authored-by: Dhruv Manilawala <[email protected]>
1 parent 287bf26 commit 098f02b

File tree

2 files changed

+64
-13
lines changed

2 files changed

+64
-13
lines changed

web_programming/fetch_github_info.py

+37-13
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,50 @@
11
#!/usr/bin/env python3
2-
32
"""
43
Created by sarathkaul on 14/11/19
4+
Updated by lawric1 on 24/11/20
55
6-
Basic authentication using an API password is deprecated and will soon no longer work.
7-
Visit https://developer.github.com/changes/2020-02-14-deprecating-password-auth
8-
for more information around suggested workarounds and removal dates.
9-
"""
6+
Authentication will be made via access token.
7+
To generate your personal access token visit https://github.com/settings/tokens.
8+
9+
NOTE:
10+
Never hardcode any credential information in the code. Always use an environment
11+
file to store the private information and use the `os` module to get the information
12+
during runtime.
1013
14+
Create a ".env" file in the root directory and write these two lines in that file
15+
with your token::
16+
17+
#!/usr/bin/env bash
18+
export USER_TOKEN=""
19+
"""
20+
import os
21+
from typing import Any, Dict
1122

1223
import requests
1324

14-
_GITHUB_API = "https://api.github.com/user"
25+
BASE_URL = "https://api.github.com"
1526

27+
# https://docs.github.com/en/free-pro-team@latest/rest/reference/users#get-the-authenticated-user
28+
AUTHENTICATED_USER_ENDPOINT = BASE_URL + "/user"
1629

17-
def fetch_github_info(auth_user: str, auth_pass: str) -> dict:
30+
# https://github.com/settings/tokens
31+
USER_TOKEN = os.environ.get("USER_TOKEN", "")
32+
33+
34+
def fetch_github_info(auth_token: str) -> Dict[Any, Any]:
1835
"""
1936
Fetch GitHub info of a user using the requests module
2037
"""
21-
return requests.get(_GITHUB_API, auth=(auth_user, auth_pass)).json()
22-
23-
24-
if __name__ == "__main__":
25-
for key, value in fetch_github_info("<USER NAME>", "<PASSWORD>").items():
26-
print(f"{key}: {value}")
38+
headers = {
39+
"Authorization": f"token {auth_token}",
40+
"Accept": "application/vnd.github.v3+json",
41+
}
42+
return requests.get(AUTHENTICATED_USER_ENDPOINT, headers=headers).json()
43+
44+
45+
if __name__ == "__main__": # pragma: no cover
46+
if USER_TOKEN:
47+
for key, value in fetch_github_info(USER_TOKEN).items():
48+
print(f"{key}: {value}")
49+
else:
50+
raise ValueError("'USER_TOKEN' field cannot be empty.")
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import json
2+
3+
import requests
4+
5+
from .fetch_github_info import AUTHENTICATED_USER_ENDPOINT, fetch_github_info
6+
7+
8+
def test_fetch_github_info(monkeypatch):
9+
class FakeResponse:
10+
def __init__(self, content) -> None:
11+
assert isinstance(content, (bytes, str))
12+
self.content = content
13+
14+
def json(self):
15+
return json.loads(self.content)
16+
17+
def mock_response(*args, **kwargs):
18+
assert args[0] == AUTHENTICATED_USER_ENDPOINT
19+
assert "Authorization" in kwargs["headers"]
20+
assert kwargs["headers"]["Authorization"].startswith("token ")
21+
assert "Accept" in kwargs["headers"]
22+
return FakeResponse(b'{"login":"test","id":1}')
23+
24+
monkeypatch.setattr(requests, "get", mock_response)
25+
result = fetch_github_info("token")
26+
assert result["login"] == "test"
27+
assert result["id"] == 1

0 commit comments

Comments
 (0)