-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add bitrise API #62
Merged
+199
−113
Merged
Add bitrise API #62
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
70cf491
Add bitrise API
isabelrios d37cf43
debug bitrise module
isabelrios fc40b2e
update readme
isabelrios f3188e8
polish
isabelrios 361b021
adding table to schema
isabelrios 2827686
reviewer comments
isabelrios 592772e
fix flake
isabelrios File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
import sys | ||
import os | ||
|
||
import pandas as pd | ||
from datetime import timezone | ||
from sqlalchemy import func | ||
|
||
from lib.bitrise_conn import BitriseAPIClient | ||
from utils.datetime_utils import DatetimeUtils as dt | ||
from database import ( | ||
Database, | ||
ReportBitriseBuildsCount | ||
) | ||
|
||
|
||
class Bitrise: | ||
|
||
def __init__(self): | ||
try: | ||
BITRISE_HOST = os.environ['BITRISE_HOST'] | ||
self.client = BitriseAPIClient(BITRISE_HOST) | ||
self.client.BITRISE_APP_SLUG = os.environ['BITRISE_APP_SLUG'] | ||
self.client.token = os.environ['BITRISE_TOKEN'] | ||
except KeyError: | ||
print("ERROR: Missing bitrise env var") | ||
sys.exit(1) | ||
|
||
# API: Builds | ||
def builds(self, past_date_timestamp): | ||
return self.client.builds(self.client.BITRISE_APP_SLUG, past_date_timestamp) # noqa | ||
|
||
def builds_after_date(self, after): | ||
return self.client.builds_after_time(self.client.BITRISE_APP_SLUG, after) # noqa | ||
|
||
|
||
class BitriseClient(Bitrise): | ||
|
||
def __init__(self): | ||
super().__init__() | ||
self.db = DatabaseBitrise() | ||
|
||
def bitrise_builds_detailed_info(self): | ||
# Read latest timestamp from database | ||
after = self.database_latest_build() | ||
print(after) | ||
|
||
# Query bitrise using after that date | ||
data = self.builds_after_date(after) | ||
|
||
payload = pd.DataFrame(data, columns=["build_number", "branch", "status", "status_text", "triggered_workflow", "triggered_by", "triggered_at"]) # noqa | ||
payload_filtered = payload[payload["status_text"] != "in-progress"] | ||
print(payload_filtered) | ||
|
||
self.db.report_bitrise_builds_info(payload_filtered) | ||
|
||
def database_latest_build(self): | ||
# Fetch latest triggered_at | ||
latest_ts = self.db.session.query(func.max(ReportBitriseBuildsCount.triggered_at)).scalar() # noqa | ||
print(latest_ts) | ||
# Assuming you already have this from your DB | ||
dt = latest_ts | ||
|
||
# Ensure it's timezone-aware (UTC), then convert to timestamp | ||
if dt.tzinfo is None: | ||
dt = dt.replace(tzinfo=timezone.utc) | ||
else: | ||
dt = dt.astimezone(timezone.utc) | ||
|
||
unix_timestamp = int(dt.timestamp()) | ||
print(f"Latest timestamp in database:{unix_timestamp}") | ||
return unix_timestamp | ||
|
||
|
||
class DatabaseBitrise(Database): | ||
|
||
def __init__(self): | ||
super().__init__() | ||
self.db = Database() | ||
|
||
def report_bitrise_builds_info(self, payload): | ||
for index, row in payload.iterrows(): | ||
report = ReportBitriseBuildsCount( | ||
build_number=row['build_number'], | ||
branch=row['branch'], | ||
status=row['status'], | ||
status_text=row['status_text'], | ||
triggered_workflow=row['triggered_workflow'], | ||
triggered_by=row['triggered_by'], | ||
triggered_at=dt.parse_iso_timestamp(row['triggered_at']) | ||
) | ||
self.session.add(report) | ||
self.session.commit() | ||
|
||
def report_bitrise_builds_count(self, payload): | ||
# Normalize the JSON data | ||
total_count = payload.get("paging", {}).get("total_item_count") | ||
|
||
data = [total_count] | ||
return data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So that I only add new builds, I get the latest
triggered_at
value from database, then I do the query, get all builds after that date, that are not in-progress, that way I am sure I don't miss or duplicate any build.Tested it a few times and is working.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice