コード例 #1
0
ファイル: ycra.py プロジェクト: svl-rr/svl-operations-tools
#!/usr/bin/python

import extract

cars = extract.importXML()
extract.importNowheresYCRA(cars)
extract.importBayshoreYCRA(cars)
コード例 #2
0
ファイル: server.py プロジェクト: svl-rr/svl-operations-tools
  def HandleUpload(self, form):

    def SaveFile(formfile):
      if formfile.filename:
        fn1 = 'files/' + os.path.basename(formfile.filename)
        fn = fn1
        count = 0
        while os.path.exists(fn):
          fn = '%s-%d' % (fn1, count)
          count += 1
        f = open(fn, 'wb')
        f.write(formfile.file.read())
        f.close()
        print 'uploaded %s' % fn
        return fn
      return None

    xmlfile = form['xmlfile']
    nowheresfile = form['nowheresfile']
    bayshorefile = form['bayshorefile']

    data_valid = True
    xmlfilename = SaveFile(xmlfile)
    nowheresfilename = SaveFile(nowheresfile)
    bayshorefilename = SaveFile(bayshorefile)
    if xmlfilename:
      print 'XML upload success'
      new_cars = extract.importXML(xmlfilename)
      if new_cars:
        print 'XML import success'
      else:
        data_valid = False
    if nowheresfilename:
      print 'Nowheres upload success'
      if extract.importNowheresYCRA(new_cars, nowheresfilename):
        print 'Nowheres import success'
      else:
        data_valid = False
    if bayshorefilename:
      print 'Bayshore upload success'
      if extract.importBayshoreYCRA(new_cars, bayshorefilename):
        print 'Bayshore import success'
      else:
        data_valid = False
    if data_valid:
      try:
        os.unlink('SVL_Base_sess_post.xml')
      except: 
        pass
      try:
        os.unlink('YCR-A-Nowheres Yard.html')
      except:
        pass
      try:
        os.unlink('YCR-A-Bayshore Yard.html')
      except:
        pass
      os.symlink(xmlfilename, 'SVL_Base_sess_post.xml')
      print 'using new XML file'
      if nowheresfilename:
        os.symlink(nowheresfilename, 'YCR-A-Nowheres Yard.html')
        print 'using new Nowheres YCRA'
      if bayshorefilename:
        os.symlink(bayshorefilename, 'YCR-A-Bayshore Yard.html')
        print 'using new Bayshore YCRA'
      cars.update(new_cars)
    
    return {
          'car_number' : '',
          'car_rows' : '',
          'table_header' : TABLEHEADER,
          'session' : GetSessionInfo(),
          'table_row_header' : TABLEROWHEADER,
          'table_footer' : TABLEFOOTER,
        }