Add caption limit check to updates posting.

This commit is contained in:
John Preston 2018-12-07 20:14:29 +04:00
parent 65242a503b
commit 811bef41b8
1 changed files with 79 additions and 73 deletions

View File

@ -1,7 +1,5 @@
import os, sys, re, subprocess, datetime
print('Building debug version for OS X 10.8+..')
executePath = os.getcwd()
scriptPath = os.path.dirname(os.path.realpath(__file__))
@ -9,7 +7,7 @@ lastCommit = ''
today = ''
nextLast = False
nextDate = False
sending = False
building = True
for arg in sys.argv:
if nextLast:
lastCommit = arg
@ -18,7 +16,7 @@ for arg in sys.argv:
today = arg
nextDate = False
elif arg == 'send':
sending = True
building = False
elif arg == 'from':
nextLast = True
elif arg == 'date':
@ -35,51 +33,15 @@ if today == '':
today = datetime.datetime.now().strftime("%d_%m_%y")
outputFolder = 'updates/' + today
archive = 'tdesktop_macOS_' + today + '.zip'
if building:
print('Building debug version for OS X 10.8+..')
if os.path.exists('../out/Debug/' + outputFolder):
if sending:
#subprocess.call(['/Applications/Telegram.app/Contents/MacOS/Telegram', '-sendpath', 'interpret://' + scriptPath + '../../out/Debug/' + outputFolder + '/command.txt'], shell=True)
subprocess.call(scriptPath + '/../../out/Debug/Telegram.app/Contents/MacOS/Telegram -sendpath interpret://' + scriptPath + '/../../out/Debug/' + outputFolder + '/command.txt', shell=True)
finish(0)
else:
print('[ERROR] Todays updates version exists.')
finish(1)
templatePath = scriptPath + '/../../../TelegramPrivate/updates_template.txt'
if not os.path.exists(templatePath):
print('[ERROR] Template file "' + templatePath + '" not found.')
finish(1)
if not re.match(r'^[a-f0-9]{40}$', lastCommit):
print('[ERROR] Wrong last commit: ' + lastCommit)
finish(1)
log = subprocess.check_output(['git', 'log', lastCommit+'..HEAD'])
logLines = log.split('\n')
firstCommit = ''
commits = []
for line in logLines:
if line.startswith('commit '):
commit = line.split(' ')[1]
if not len(firstCommit):
firstCommit = commit
commits.append('')
elif line.startswith(' '):
stripped = line[4:]
if not len(stripped):
continue
elif not len(commits):
print('[ERROR] Bad git log output:')
print(log)
finish(1)
if len(commits[len(commits) - 1]):
commits[len(commits) - 1] += '\n' + stripped
else:
commits[len(commits) - 1] = '- ' + stripped
commits.reverse()
if not len(commits):
print('[ERROR] No commits since last build :(')
finish(1)
result = subprocess.call('gyp/refresh.sh', shell=True)
if result != 0:
print('[ERROR] While calling GYP.')
@ -130,27 +92,71 @@ if result != 0:
print('[ERROR] Cloning Telegram.app to ' + today + '.')
finish(1)
archive = 'tdesktop_macOS_' + today + '.zip'
result = subprocess.call('zip -r ' + archive + ' ' + today, shell=True)
if result != 0:
print('[ERROR] Adding tdesktop to archive.')
finish(1)
changelog = '\n'.join(commits)
print('\n\nReady! File: ' + archive + '\nChangelog:\n' + changelog)
subprocess.call('mkdir -p ' + outputFolder, shell=True)
subprocess.call('mv ' + archive + ' ' + outputFolder + '/', shell=True)
subprocess.call('rm -rf ' + today, shell=True)
print('Finished.')
finish(0)
if not os.path.exists('../out/Debug/' + outputFolder + '/' + archive):
print('[ERROR] Not built yet.')
finish(1)
templatePath = scriptPath + '/../../../TelegramPrivate/updates_template.txt'
if not os.path.exists(templatePath):
print('[ERROR] Template file "' + templatePath + '" not found.')
finish(1)
if not re.match(r'^[a-f0-9]{40}$', lastCommit):
print('[ERROR] Wrong last commit: ' + lastCommit)
finish(1)
log = subprocess.check_output(['git', 'log', lastCommit+'..HEAD'])
logLines = log.split('\n')
firstCommit = ''
commits = []
for line in logLines:
if line.startswith('commit '):
commit = line.split(' ')[1]
if not len(firstCommit):
firstCommit = commit
commits.append('')
elif line.startswith(' '):
stripped = line[4:]
if not len(stripped):
continue
elif not len(commits):
print('[ERROR] Bad git log output:')
print(log)
finish(1)
if len(commits[len(commits) - 1]):
commits[len(commits) - 1] += '\n' + stripped
else:
commits[len(commits) - 1] = '- ' + stripped
commits.reverse()
if not len(commits):
print('[ERROR] No commits since last build :(')
finish(1)
changelog = '\n'.join(commits)
print('\n\nReady! File: ' + archive + '\nChangelog:\n' + changelog)
if len(changelog) > 1024:
print('[ERROR] Length: ' + str(len(changelog)))
finish(1)
with open(templatePath, 'r') as template:
with open(outputFolder + '/command.txt', 'w') as f:
with open(scriptPath + '/../../out/Debug/' + outputFolder + '/command.txt', 'w') as f:
for line in template:
if line.startswith('//'):
continue
line = line.replace('{path}', scriptPath + '/../../out/Debug/' + outputFolder + '/' + archive)
line = line.replace('{caption}', 'TDesktop at ' + today.replace('_', '.') + ':\n\n' + changelog)
f.write(line)
subprocess.call('rm -rf ' + today, shell=True)
print('Finished.')
subprocess.call(scriptPath + '/../../out/Debug/Telegram.app/Contents/MacOS/Telegram -sendpath interpret://' + scriptPath + '/../../out/Debug/' + outputFolder + '/command.txt', shell=True)
finish(0)