commit 1eeea9f83ad9230a5c1f7a75662770eaab0df837 Author: Jens Luedicke <jens@luedicke.me> Date: Mon Jul 7 21:15:41 2025 +0200 Disable resuming of old time entries. commit 3e3ec2f01cb7943622b819a19179388078ae1315 Author: Jens Luedicke <jens@luedicke.me> Date: Mon Jul 7 20:59:19 2025 +0200 Refactor db migrations. commit 15a51a569da36c6b7c9e01ab17b6fdbdee6ad994 Author: Jens Luedicke <jens@luedicke.me> Date: Mon Jul 7 19:58:04 2025 +0200 Apply new style for Time Tracking view. commit 77e5278b303e060d2b03853b06277f8aa567ae68 Author: Jens Luedicke <jens@luedicke.me> Date: Mon Jul 7 18:06:04 2025 +0200 Allow direct registrations as a Company. commit 188a8772757cbef374243d3a5f29e4440ddecabe Author: Jens Luedicke <jens@luedicke.me> Date: Mon Jul 7 18:04:45 2025 +0200 Add email invitation feature. commit d9ebaa02aa01b518960a20dccdd5a327d82f30c6 Author: Jens Luedicke <jens@luedicke.me> Date: Mon Jul 7 17:12:32 2025 +0200 Apply common style for Company, User, Team management pages. commit 81149caf4d8fc6317e2ab1b4f022b32fc5aa6d22 Author: Jens Luedicke <jens@luedicke.me> Date: Mon Jul 7 16:44:32 2025 +0200 Move export functions to own module. commit 1a26e19338e73f8849c671471dd15cc3c1b1fe82 Author: Jens Luedicke <jens@luedicke.me> Date: Mon Jul 7 15:51:15 2025 +0200 Split up models.py. commit 61f1ccd10f721b0ff4dc1eccf30c7a1ee13f204d Author: Jens Luedicke <jens@luedicke.me> Date: Mon Jul 7 12:05:28 2025 +0200 Move utility function into own modules. commit 84b341ed35e2c5387819a8b9f9d41eca900ae79f Author: Jens Luedicke <jens@luedicke.me> Date: Mon Jul 7 11:44:24 2025 +0200 Refactor auth functions use. commit 923e311e3da5b26d85845c2832b73b7b17c48adb Author: Jens Luedicke <jens@luedicke.me> Date: Mon Jul 7 11:35:52 2025 +0200 Refactor route nameing and fix bugs along the way. commit f0a5c4419c340e62a2615c60b2a9de28204d2995 Author: Jens Luedicke <jens@luedicke.me> Date: Mon Jul 7 10:34:33 2025 +0200 Fix URL endpoints in announcement template. commit b74d74542a1c8dc350749e4788a9464d067a88b5 Author: Jens Luedicke <jens@luedicke.me> Date: Mon Jul 7 09:25:53 2025 +0200 Move announcements to own module. commit 9563a28021ac46c82c04fe4649b394dbf96f92c7 Author: Jens Luedicke <jens@luedicke.me> Date: Mon Jul 7 09:16:30 2025 +0200 Combine Company view and edit templates. commit 6687c373e681d54e4deab6b2582fed5cea9aadf6 Author: Jens Luedicke <jens@luedicke.me> Date: Mon Jul 7 08:17:42 2025 +0200 Move Users, Company and System Administration to own modules. commit 8b7894a2e3eb84bb059f546648b6b9536fea724e Author: Jens Luedicke <jens@luedicke.me> Date: Mon Jul 7 07:40:57 2025 +0200 Move Teams and Projects to own modules. commit d11bf059d99839ecf1f5d7020b8c8c8a2454c00b Author: Jens Luedicke <jens@luedicke.me> Date: Mon Jul 7 07:09:33 2025 +0200 Move Tasks and Sprints to own modules.
154 lines
4.9 KiB
Python
Executable File
154 lines
4.9 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Fix WorkRegion enum usage throughout the codebase
|
|
"""
|
|
|
|
import os
|
|
import re
|
|
from pathlib import Path
|
|
|
|
# Define old to new region mappings
|
|
REGION_MAPPINGS = {
|
|
'UNITED_STATES': 'USA',
|
|
'UNITED_KINGDOM': 'UK',
|
|
'FRANCE': 'EU',
|
|
'EUROPEAN_UNION': 'EU',
|
|
'CUSTOM': 'OTHER',
|
|
}
|
|
|
|
# Note: GERMANY is kept as is - it has specific labor laws
|
|
|
|
def update_python_files():
|
|
"""Update Python files with new WorkRegion values"""
|
|
python_files = []
|
|
|
|
# Add known files
|
|
known_files = ['app.py', 'routes/company.py', 'routes/system_admin.py']
|
|
python_files.extend([f for f in known_files if os.path.exists(f)])
|
|
|
|
# Search for more Python files
|
|
if os.path.exists('routes'):
|
|
python_files.extend([str(p) for p in Path('routes').glob('*.py')])
|
|
|
|
# Remove duplicates
|
|
python_files = list(set(python_files))
|
|
|
|
for filepath in python_files:
|
|
with open(filepath, 'r') as f:
|
|
content = f.read()
|
|
|
|
# Skip if no WorkRegion references
|
|
if 'WorkRegion' not in content:
|
|
continue
|
|
|
|
print(f"Processing {filepath}...")
|
|
|
|
original_content = content
|
|
|
|
# Update WorkRegion enum references
|
|
for old_region, new_region in REGION_MAPPINGS.items():
|
|
# Update enum access: WorkRegion.OLD_REGION -> WorkRegion.NEW_REGION
|
|
content = re.sub(
|
|
rf'WorkRegion\.{old_region}\b',
|
|
f'WorkRegion.{new_region}',
|
|
content
|
|
)
|
|
|
|
# Update string comparisons
|
|
content = re.sub(
|
|
rf"['\"]({old_region})['\"]",
|
|
f"'{new_region}'",
|
|
content
|
|
)
|
|
|
|
# Add comments for GERMANY usage to note it has specific laws
|
|
if 'WorkRegion.GERMANY' in content and '# Note:' not in content:
|
|
content = re.sub(
|
|
r'(WorkRegion\.GERMANY)',
|
|
r'\1 # Germany has specific labor laws beyond EU',
|
|
content,
|
|
count=1 # Only comment the first occurrence
|
|
)
|
|
|
|
if content != original_content:
|
|
with open(filepath, 'w') as f:
|
|
f.write(content)
|
|
print(f" ✓ Updated {filepath}")
|
|
else:
|
|
print(f" - No changes needed in {filepath}")
|
|
|
|
def update_template_files():
|
|
"""Update template files with new WorkRegion values"""
|
|
template_files = []
|
|
|
|
# Find relevant templates
|
|
if os.path.exists('templates'):
|
|
for template in Path('templates').glob('*.html'):
|
|
with open(template, 'r') as f:
|
|
if 'region' in f.read().lower():
|
|
template_files.append(str(template))
|
|
|
|
for filepath in template_files:
|
|
print(f"Processing {filepath}...")
|
|
|
|
with open(filepath, 'r') as f:
|
|
content = f.read()
|
|
|
|
original_content = content
|
|
|
|
# Update region values
|
|
for old_region, new_region in REGION_MAPPINGS.items():
|
|
# Update in option values
|
|
content = re.sub(
|
|
rf'value=[\'"]{old_region}[\'"]',
|
|
f'value="{new_region}"',
|
|
content
|
|
)
|
|
|
|
# Update display names
|
|
display_mappings = {
|
|
'UNITED_STATES': 'United States',
|
|
'United States': 'United States',
|
|
'UNITED_KINGDOM': 'United Kingdom',
|
|
'United Kingdom': 'United Kingdom',
|
|
'FRANCE': 'European Union',
|
|
'France': 'European Union',
|
|
'EUROPEAN_UNION': 'European Union',
|
|
'European Union': 'European Union',
|
|
'CUSTOM': 'Other',
|
|
'Custom': 'Other'
|
|
}
|
|
|
|
for old_display, new_display in display_mappings.items():
|
|
if old_display in ['France', 'FRANCE']:
|
|
# France is now part of EU
|
|
content = re.sub(
|
|
rf'>{old_display}<',
|
|
f'>{new_display}<',
|
|
content
|
|
)
|
|
|
|
if content != original_content:
|
|
with open(filepath, 'w') as f:
|
|
f.write(content)
|
|
print(f" ✓ Updated {filepath}")
|
|
else:
|
|
print(f" - No changes needed in {filepath}")
|
|
|
|
def main():
|
|
print("=== Fixing WorkRegion Enum Usage ===\n")
|
|
|
|
print("1. Updating Python files...")
|
|
update_python_files()
|
|
|
|
print("\n2. Updating template files...")
|
|
update_template_files()
|
|
|
|
print("\n✅ WorkRegion migration complete!")
|
|
print("\nRegion mappings applied:")
|
|
for old, new in REGION_MAPPINGS.items():
|
|
print(f" - {old} → {new}")
|
|
print("\nNote: GERMANY remains as a separate option due to specific labor laws")
|
|
|
|
if __name__ == "__main__":
|
|
main() |