package_web.py 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. import file_utils
  2. import package_utils
  3. import package_web_record
  4. import package_web_shanshen
  5. import os.path
  6. import sys
  7. import json
  8. import importlib
  9. sdkMapping = {
  10. 'ysdk':'jm_ysdk',
  11. 'xunqu':{
  12. 'default':'jm_xq',
  13. 'xiaomi':'jm_xq_mi',
  14. 'jrtt':'jm_xq_jrtt'
  15. },
  16. 'jingqi':'jm_jq',
  17. 'qytx':{
  18. 'default':'jm_qytx',
  19. 'cangyu':'jm_qytx2',
  20. 'cangyu_new':'jm_cangyu'
  21. },
  22. 'jmsdk':'jm',
  23. 'oppo':'jm_oppo',
  24. 'quick':'jm_quick',
  25. 'beiyu':'jm_beiyu',
  26. 'yijie':'jm_yijie',
  27. 'gzjysdk':'gzjysdk',
  28. 'record':'record',
  29. 'float':'float'
  30. }
  31. scriptMapping = {
  32. 'jm_xq_mi':'jm_xq',
  33. 'jm_xq_jrtt':'jm_xq',
  34. 'jm_qytx2':'jm_qytx',
  35. 'jm_cangyu':'jm_qytx'
  36. }
  37. newSdk = ["shanshen", "gzjysdk"]
  38. recordSdk = ["record", "float"]
  39. def packageWeb():
  40. if len(sys.argv) < 2:
  41. print('argument is missing')
  42. return 1
  43. # 打包配置的路径
  44. packageConfig = sys.argv[1]
  45. jsonText = file_utils.readFile(packageConfig)
  46. config = json.loads(jsonText)
  47. print('*************config*****************')
  48. print(jsonText)
  49. print('************************************')
  50. sdk = getMappingSdk(config)
  51. if sdk in recordSdk:
  52. package_web_record.package(config, sdk)
  53. elif sdk in newSdk:
  54. package_web_shanshen.package(config, sdk)
  55. else:
  56. package(config, sdk)
  57. def package(config, sdk):
  58. print('use script 1st')
  59. jsonConfig = {}
  60. game = config['app']
  61. subChannel = None
  62. if 'subChannel' in config:
  63. subChannel = config['subChannel']
  64. jsonConfig['subChannel'] = config['subChannel']
  65. # 必须参数
  66. jsonConfig['app'] = config['app']
  67. jsonConfig['packageName'] = config['packageName']
  68. jsonConfig['name'] = config['name']
  69. # 可选参数
  70. if 'outName' in config:
  71. jsonConfig['outName'] = config['outName']
  72. if 'outPath' in config:
  73. jsonConfig['outPath'] = config['outPath']
  74. if 'changeIcon' in config:
  75. jsonConfig['changeIcon'] = toBoolean(config['changeIcon'])
  76. if 'addLauncher' in config:
  77. jsonConfig['addLauncher'] = toBoolean(config['addLauncher'])
  78. if 'versionCode' in config:
  79. jsonConfig['versionCode'] = config['versionCode']
  80. if 'versionName' in config:
  81. jsonConfig['versionName'] = config['versionName']
  82. if 'targetSdkVersion' in config:
  83. jsonConfig['targetSdkVersion'] = config['targetSdkVersion']
  84. if 'v2disable' in config:
  85. jsonConfig['v2disable'] = toBoolean(config['v2disable'])
  86. if 'aapt2disable' in config:
  87. jsonConfig['aapt2disable'] = toBoolean(config['aapt2disable'])
  88. # sdk相关参数
  89. if 'properties' in config:
  90. jsonConfig['properties'] = config['properties']
  91. jsonConfig['logSdk'] = ['jrtt', 'gdt']
  92. # 获取sdk相关配置
  93. getSdkConfig(sdk, jsonConfig, config)
  94. # 生成配置文件
  95. createOrUpdateConfigFile(game, sdk, jsonConfig)
  96. # 拷贝资源
  97. copyRes(game, sdk, subChannel, config)
  98. # 打包
  99. package_utils.packConsole(game, sdk, subChannel)
  100. def toBoolean(booleanStr):
  101. if type(booleanStr) == bool:
  102. return booleanStr
  103. if booleanStr == 'true':
  104. return True
  105. return False
  106. def getSdkConfig(sdk, jsonConfig, config):
  107. scriptPath = os.path.join(file_utils.getCurrentPath(), 'sdk_script')
  108. sdkScript = getScriptMapping(sdk)
  109. targetScript = os.path.join(scriptPath, '%s.py' % sdkScript)
  110. if not os.path.exists(targetScript):
  111. print('%s no exists' % targetScript)
  112. return 0
  113. sys.path.append(scriptPath)
  114. module = importlib.import_module(sdkScript)# 动态导入相应模块
  115. module.getSdkConfig(jsonConfig, config)# 执行脚本功能
  116. sys.path.remove(scriptPath)
  117. def createOrUpdateConfigFile(game, sdk, jsonConfig):
  118. '''
  119. 更新配置文件
  120. '''
  121. if 'subChannel' not in jsonConfig:
  122. return 0
  123. print('createOrUpdateConfigFile ...')
  124. channelPath = file_utils.getChannelPath(game, sdk)
  125. configPath = os.path.join(channelPath, 'config.json')
  126. #configPath = os.path.join(file_utils.getCurrentPath(), 'test', 'test.json')
  127. if os.path.exists(configPath):
  128. # 更新数据
  129. jsonText = file_utils.readFile(configPath)
  130. config = json.loads(jsonText)
  131. count = 0
  132. if type(config) == list:
  133. for item in config:
  134. if item['subChannel'] == jsonConfig['subChannel']:
  135. print('find same config ...')
  136. del config[count]
  137. break
  138. count += 1
  139. config.append(jsonConfig)
  140. createConfigFile(config, configPath)
  141. elif type(config) == dict:
  142. if config['subChannel'] == jsonConfig['subChannel']:
  143. print('find same config ...')
  144. createConfigFile(jsonConfig, configPath)
  145. else:
  146. print('add a new config ...')
  147. config = [config, jsonConfig]
  148. createConfigFile(config, configPath)
  149. else:
  150. print('create a new config ...')
  151. createConfigFile([jsonConfig], configPath)
  152. def createConfigFile(jsonConfig, configPath):
  153. '''
  154. 创建配置文件
  155. '''
  156. jsonStr = json.dumps(jsonConfig, ensure_ascii=False)
  157. print('*************out config*************')
  158. print(jsonStr)
  159. print('************************************')
  160. file_utils.createFile(configPath, jsonStr)
  161. def copyRes(game, sdk, subChannel, config):
  162. '''
  163. 拷贝资源
  164. '''
  165. if subChannel is None:
  166. return 0
  167. channelPath = file_utils.getChannelPath(game, sdk)
  168. subChannelPath = os.path.join(channelPath, subChannel)
  169. if 'icon' in config and os.path.exists(config['icon']):
  170. mipmapSupport = ['mipmap-xhdpi', 'mipmap-xxhdpi', 'mipmap-xxxhdpi']
  171. for mipmap in mipmapSupport:
  172. iconPath = os.path.join(subChannelPath, 'icon', mipmap, 'common_sdk_icon.png')
  173. file_utils.copyFile(config['icon'], iconPath)
  174. '''if 'switchIcon' in config and os.path.exists(config['switchIcon']):
  175. mipmapSupport = ['mipmap-xhdpi', 'mipmap-xxhdpi', 'mipmap-xxxhdpi']
  176. for mipmap in mipmapSupport:
  177. iconPath = os.path.join(subChannelPath, 'icon', mipmap, 'common_sdk_icon2.png')
  178. file_utils.copyFile(config['switchIcon'], iconPath)'''
  179. if 'splash' in config and os.path.exists(config['splash']):
  180. splashPath = os.path.join(subChannelPath, 'splash', 'drawable-hdpi', 'common_sdk_launcher_bg.jpg')
  181. file_utils.copyFile(config['splash'], splashPath)
  182. if 'copyList' in config:
  183. for item in config['copyList']:
  184. if item['toFile'] == '':
  185. continue
  186. if not os.path.exists(item['fromFile']):
  187. continue
  188. toFile = item['toFile']
  189. if toFile[:3] == 'res':
  190. toFile = 'image' + toFile[3:]
  191. resPath = getPackagePath(subChannelPath, toFile)
  192. file_utils.copyFile(item['fromFile'], resPath)
  193. if 'package' in config and os.path.exists(config['package']):
  194. newGameApk = config['package']
  195. gameApk = file_utils.getFullGameApk(game)
  196. file_utils.copyFile(newGameApk, gameApk)
  197. def getPackagePath(basePath, packageName):
  198. '''
  199. 包名对应的目录
  200. '''
  201. packageNameSplit = packageName.replace('\\', '/').split('/')
  202. newPath = basePath
  203. for item in packageNameSplit:
  204. newPath = os.path.join(newPath, item)
  205. return newPath
  206. def getMappingSdk(config):
  207. sdk = config['sdk']
  208. mapping = sdk
  209. if sdk in sdkMapping:
  210. mapping = sdkMapping[sdk]
  211. else:
  212. return 'jm_' + sdk
  213. if type(mapping) == dict:
  214. sdkConfig = config[sdk]
  215. if 'SUB_CHANNEL' in sdkConfig and sdkConfig['SUB_CHANNEL'] != '':
  216. subChannel = sdkConfig['SUB_CHANNEL']
  217. else:
  218. subChannel = 'default'
  219. return mapping[subChannel]
  220. else:
  221. return mapping
  222. def getScriptMapping(sdk):
  223. if sdk in scriptMapping:
  224. return scriptMapping[sdk]
  225. return sdk
  226. packageWeb()