-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuilder.py
40 lines (23 loc) · 1006 Bytes
/
builder.py
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import config
import os
from datetime import datetime
pwd = os.getcwd()
SLACK_SUMMARY_PATH = f'{pwd}/{config.SLACK_SUMMARY_FILE_NAME}'
OUTPUT_PATH = f'{pwd}/{config.OUTPUT_FILE_NAME}'
def get_current_time():
current_time = datetime.utcnow()
return f'{str(current_time.strftime("%Y-%m-%d %I:%M:%S %p"))} UTC'
def get_result_path(branch, repo):
return f'{pwd}/temp/result/{branch}/{repo}.json'
def get_intermediate_path(branch, repo):
return f'{pwd}/temp/result/{branch}/{repo}-intermediate.json'
def get_repo_path(repo):
return f'{pwd}/temp/repos/{repo}'
def get_joern_update_file_path(path):
return f'{pwd}/temp/joern/{path}/privado-core-enterprise/updateDependencies.sh'
def get_joern_privado_path(path):
return f'{pwd}/temp/joern/{path}/privado-core-enterprise'
def get_privado_path(version):
return f'{pwd}/temp/privado/Privado-Inc-{version}#Privado-Inc-dev'
def get_joern_path(branch_name):
return f"{pwd}/temp/joern_{branch_name.replace('/', '-')}"