package_web.py 8.1 KB

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