package_web.py 7.7 KB

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