mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-24 18:43:58 +03:00
1674cecc8d
* Add a piece of the tutorial * Add "Make it pretty" tutorial step * Add section about github client setup * Make minor fixes * Add search service section + table of contents * Make various fixes * Make more fixes * Update make the search section * Update ghnav-flask example & README * Update base.html markup * Finish section: Make the search work * Update ghnav-flask screenshot * Update tutorials * Add flaks tutorial link to the DI in Python page
45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
"""Services module."""
|
|
|
|
from github import Github
|
|
from github.Repository import Repository
|
|
from github.Commit import Commit
|
|
|
|
|
|
class SearchService:
|
|
"""Search service performs search on Github."""
|
|
|
|
def __init__(self, github_client: Github):
|
|
self._github_client = github_client
|
|
|
|
def search_repositories(self, query, limit):
|
|
"""Search for repositories and return formatted data."""
|
|
repositories = self._github_client.search_repositories(
|
|
query=query,
|
|
**{'in': 'name'},
|
|
)
|
|
return [
|
|
self._format_repo(repository)
|
|
for repository in repositories[:limit]
|
|
]
|
|
|
|
def _format_repo(self, repository: Repository):
|
|
commits = repository.get_commits()
|
|
return {
|
|
'url': repository.html_url,
|
|
'name': repository.name,
|
|
'owner': {
|
|
'login': repository.owner.login,
|
|
'url': repository.owner.html_url,
|
|
'avatar_url': repository.owner.avatar_url,
|
|
},
|
|
'latest_commit': self._format_commit(commits[0]) if commits else {},
|
|
}
|
|
|
|
def _format_commit(self, commit: Commit):
|
|
return {
|
|
'sha': commit.sha,
|
|
'url': commit.html_url,
|
|
'message': commit.commit.message,
|
|
'author_name': commit.commit.author.name,
|
|
}
|