You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
3.1 KiB
92 lines
3.1 KiB
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# importpackages.py
|
|
# March 2018
|
|
#
|
|
# Pass in a directory and this tool will import all the json files in the directory. It depends on the admin CLI
|
|
#
|
|
# Change History
|
|
#
|
|
# 12feb2020 added --output text to the import command so that status will show
|
|
#
|
|
# Copyright © 2019, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the License); you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
|
|
# OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
|
|
#
|
|
# change log
|
|
# renamed to importpackages.py to be more descriptive of actual usage
|
|
#
|
|
# Import Python modules
|
|
import argparse, sys, subprocess, os, json
|
|
from sharedfunctions import callrestapi, getapplicationproperties
|
|
|
|
# get cli location from properties
|
|
propertylist=getapplicationproperties()
|
|
|
|
clidir=propertylist["sascli.location"]
|
|
cliexe=propertylist["sascli.executable"]
|
|
|
|
clicommand=os.path.join(clidir,cliexe)
|
|
|
|
# get input parameters
|
|
parser = argparse.ArgumentParser(description="Import JSON files from directory. All json files in directory will be imported.")
|
|
parser.add_argument("-d","--directory", help="Directory that contains JSON files to import",required='True')
|
|
parser.add_argument("-q","--quiet", help="Suppress the are you sure prompt.", action='store_true')
|
|
args= parser.parse_args()
|
|
basedir=args.directory
|
|
quietmode=args.quiet
|
|
|
|
# get python version
|
|
version=int(str(sys.version_info[0]))
|
|
|
|
|
|
# if the quiet mode flag is not passed then prompt to continue
|
|
if not quietmode:
|
|
|
|
if version > 2:
|
|
areyousure=input("WARNING: If content from the packages already exists in folders it will be replaced. Continue? (Y)")
|
|
else:
|
|
areyousure=raw_input("WARNING:If content from the packages already exists in folders it will be replaced. Continue? (Y)")
|
|
else:
|
|
areyousure="Y"
|
|
|
|
if areyousure.upper() =='Y':
|
|
|
|
# check that directory exists
|
|
if os.path.isdir(basedir):
|
|
|
|
# loop files in the directory
|
|
for filename in os.listdir( basedir ):
|
|
|
|
# only process json files
|
|
if filename.lower().endswith('.json'):
|
|
|
|
#upload the json package
|
|
command=clicommand+' --output fulljson transfer upload --file "'+os.path.join(basedir,filename)+'" > /tmp/packageid.json'
|
|
print(command)
|
|
subprocess.call(command, shell=True)
|
|
|
|
#print the json from the upload
|
|
with open('/tmp/packageid.json') as json_file:
|
|
package_data = json.load(json_file)
|
|
|
|
print(json.dumps(package_data,indent=2))
|
|
|
|
# get the packageid and import the package
|
|
packageid=package_data["id"]
|
|
command=clicommand+' --output text -q transfer import --id '+packageid
|
|
print(command)
|
|
|
|
subprocess.call(command, shell=True)
|
|
print("NOTE: Viya content imported from json files in "+basedir)
|
|
|
|
else: print("ERROR: Directory does not exist")
|
|
else:
|
|
print("NOTE: Operation cancelled")
|
|
|
|
|
|
|