2021-12-07 Fred Gleason <fredg@paravelsystems.com>

* Added an 'Import()' method to the 'rivwebpyapi' API.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2021-12-07 13:53:35 -05:00
parent 09c880fefa
commit 61d3b9a19b
4 changed files with 169 additions and 0 deletions

View File

@@ -30,6 +30,7 @@ EXTRA_DIST = add_cart.py\
delete_log.py\
export.py\
export_peaks.py\
import.py\
list_cart.py\
list_cart_sched_codes.py\
list_carts.py\

View File

@@ -0,0 +1,88 @@
#!%PYTHON_BANGPATH%
# import.py
#
# RivWebPyApi test script for Rivendell
#
# Test the Import Web API call
#
# (C) Copyright 2021 Fred Gleason <fredg@paravelsystems.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
import getpass
import rivwebpyapi
import sys
url='';
username=''
password=''
filename=''
cart_number=0
cut_number=0
channels=2
normalization_level=0
autotrim_level=0
use_metadata=False
group_name=''
title=''
#
# Get login parameters
#
usage='import --url=<rd-url> --username=<rd-username> --filename=<str> --channels=1|2 --normalization-level=<dbfs> --autotrim-level=<dbfs> --use-metadata [--cart-number=<num>] [--cut-number=<num>] [--group-name=<str>] [--title=<str>] [--password=<passwd>]'
for arg in sys.argv:
f0=arg.split('=')
if(len(f0)==2):
if(f0[0]=='--url'):
url=f0[1]
if(f0[0]=='--username'):
username=f0[1]
if(f0[0]=='--password'):
password=f0[1]
if(f0[0]=='--filename'):
filename=f0[1]
if(f0[0]=='--group-name'):
group_name=f0[1]
if(f0[0]=='--title'):
title=f0[1]
if(f0[0]=='--cart-number'):
cart_number=int(f0[1])
if(f0[0]=='--cut-number'):
cut_number=int(f0[1])
if(f0[0]=='--channels'):
channels=int(f0[1])
if(f0[0]=='--normalization-level'):
normalization_level=int(f0[1])
if(f0[0]=='--autotrim-level'):
autotrim_level=int(f0[1])
if(len(f0)==1):
if(f0[0]=='--use-metadata'):
use_metadata=True
if(not password):
password=getpass.getpass()
if((not url)or(not username)):
print(usage)
sys.exit(1)
#
# Get the code list
#
webapi=rivwebpyapi.rivwebpyapi(url=url,username=username,password=password)
webapi.Import(filename=filename,cart_number=cart_number,cut_number=cut_number,
channels=channels,normalization_level=normalization_level,
autotrim_level=autotrim_level,use_metadata=use_metadata,
group_name=group_name,title=title)