mirror of
https://github.com/MustardChef/WSABuilds.git
synced 2024-11-10 21:55:11 +01:00
92 lines
3.2 KiB
Python
92 lines
3.2 KiB
Python
import os
|
|
from bs4 import BeautifulSoup, Tag
|
|
|
|
# Load the README.md file
|
|
with open('README.md', 'r') as file:
|
|
readme_content = file.read()
|
|
|
|
# Parse the content with BeautifulSoup
|
|
soup = BeautifulSoup(readme_content, 'html.parser')
|
|
|
|
# Define the headers to locate the table
|
|
headers = ['Operating System', 'Download Page', 'Download Mirror']
|
|
|
|
# Initialize target_table
|
|
target_table = None
|
|
|
|
# Find the table with the specified headers
|
|
for table in soup.find_all('table'):
|
|
ths = table.find_all('th')
|
|
if len(ths) == 3:
|
|
th_texts = [th.get_text(strip=True) if th.img is None else (th.img['alt'] if 'alt' in th.img.attrs else '') for th in ths]
|
|
if all(header_text == header for header_text, header in zip(th_texts, headers)):
|
|
target_table = table
|
|
break
|
|
|
|
# Check if a matching table was found
|
|
if target_table is None:
|
|
print("No table with the specified headers found in README.md")
|
|
exit(1)
|
|
|
|
# Get the GitHub ENV variables
|
|
release_type = os.getenv('RELEASE_TYPE')
|
|
|
|
# Define the cell coordinates and corresponding ENV variables for each release type
|
|
release_types = {
|
|
'WIF': [
|
|
((1, 1), 'LINK_FOR_W11X64'),
|
|
((2, 1), 'LINK_FOR_W11ARM64'),
|
|
((5, 1), 'LINK_FOR_W10X64')
|
|
],
|
|
'retail': [
|
|
((3, 1), 'LINK_FOR_W11X64'),
|
|
((4, 1), 'LINK_FOR_W11ARM64'),
|
|
((6, 1), 'LINK_FOR_W10X64')
|
|
]
|
|
}
|
|
|
|
# Check if the release type is valid
|
|
if release_type not in release_types:
|
|
print(f"Invalid RELEASE_TYPE: {release_type}")
|
|
exit(1)
|
|
|
|
# Create a 2D list (matrix) to represent the table
|
|
table_matrix = []
|
|
for _ in range(100): # Assuming the table will not have more than 100 rows
|
|
table_matrix.append([None] * 100) # Assuming the table will not have more than 100 columns
|
|
|
|
# Fill the table matrix with the cells from the table
|
|
for row_num, row in enumerate(target_table.find_all('tr')):
|
|
col_num = 0
|
|
for cell in row.find_all(['td', 'th']):
|
|
while table_matrix[row_num][col_num] is not None: # Skip columns that are already filled due to rowspan
|
|
col_num += 1
|
|
rowspan = int(cell.get('rowspan', 1))
|
|
colspan = int(cell.get('colspan', 1))
|
|
for i in range(row_num, row_num + rowspan):
|
|
for j in range(col_num, col_num + colspan):
|
|
table_matrix[i][j] = cell
|
|
|
|
# Replace the content of the specified cells
|
|
for (row_num, col_num), env_var in release_types[release_type]:
|
|
# Check if the cell coordinates are within the range of the table matrix
|
|
if row_num < len(table_matrix) and col_num < len(table_matrix[row_num]):
|
|
github_env_var = os.getenv(env_var)
|
|
if github_env_var is None:
|
|
print(f"The {env_var} environment variable is not set")
|
|
exit(1)
|
|
|
|
# Parse the GitHub ENV variable with BeautifulSoup
|
|
github_env_var_soup = BeautifulSoup(github_env_var, 'html.parser')
|
|
|
|
# Replace the cell content with the GitHub ENV variable
|
|
target_cell = table_matrix[row_num][col_num]
|
|
target_cell.clear()
|
|
target_cell.append(github_env_var_soup)
|
|
else:
|
|
print(f"Cell coordinates ({row_num}, {col_num}) are out of range")
|
|
exit(1)
|
|
|
|
# Write the updated content back to the README.md file
|
|
with open('README.md', 'w') as file:
|
|
file.write(str(soup)) |