mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-15 01:48:16 -07:00
41 lines
1016 B
Python
41 lines
1016 B
Python
import os
|
|
import subprocess
|
|
import json
|
|
|
|
# load all keys in the source language
|
|
# check entire codebase for usages
|
|
# print unused keys to a text file
|
|
# TODO: dynamic string usages cause false positives
|
|
|
|
cwd = os.getcwd()
|
|
langdir = cwd + '/../src/strings'
|
|
langlst = []
|
|
langlst.append('en-us.json')
|
|
|
|
# unused keys
|
|
dep = []
|
|
|
|
def grep(key):
|
|
command = 'grep -r -E "(\\\"|\'|\{)%s(\\\"|\'|\})" --include=\*.{js,html} --exclude-dir=../src/strings ../src' % key
|
|
p = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
|
output = p.stdout.readlines()
|
|
if output:
|
|
print('DONE: ' + key)
|
|
return True
|
|
print('UNUSED: ' + key)
|
|
dep.append(key)
|
|
return False
|
|
|
|
for lang in langlst:
|
|
with open(langdir + '/' + lang) as f:
|
|
langjson = json.load(f)
|
|
for key in langjson:
|
|
grep(key)
|
|
|
|
print(dep)
|
|
print('LENGTH: ' + str(len(dep)))
|
|
with open('unused.txt', 'w') as out:
|
|
for item in dep:
|
|
out.write(item + '\n')
|
|
out.close()
|