~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/fileservice_lib/action.py

  • Committer: me at id
  • Date: 2009-01-14 22:42:10 UTC
  • mto: This revision was merged to the branch mainline in revision 1090.
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:branches%2Fstorm:1133
install_proc.txt: Add dependencies on python-{storm,psycopg2}.

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
import pysvn
136
136
 
137
137
from ivle import (util, studpath, zip)
138
 
from ivle.fileservice_lib.exceptions import WillNotOverwrite
139
138
import ivle.conf
140
139
 
141
 
 
142
140
def get_login(_realm, existing_login, _may_save):
143
141
    """Callback function used by pysvn for authentication.
144
142
    realm, existing_login, _may_save: The 3 arguments passed by pysvn to
151
149
    # If we're being asked again, then it means the credentials failed for
152
150
    # some reason and we should just fail. (This is not desirable, but it's
153
151
    # better than being asked an infinite number of times).
154
 
    return (existing_login != "", str(ivle.conf.login),
155
 
                                  str(ivle.conf.svn_pass), True)
 
152
    return (existing_login != "", ivle.conf.login, ivle.conf.svn_pass, True)
156
153
 
157
154
# Make a Subversion client object
158
155
svnclient = pysvn.Client()
266
263
    except shutil.Error:
267
264
        raise ActionError("Could not move the file specified")
268
265
 
269
 
def svn_movefile(req, frompath, topath, copy=False):
270
 
    """Performs an svn move, resolving filenames, checking for any errors,
271
 
    and throwing ActionErrors if necessary. Can also be used to do a copy
272
 
    operation instead.
273
 
 
274
 
    frompath and topath are straight paths from the client. Will be checked.
275
 
    """
276
 
    if frompath is None or topath is None:
277
 
        raise ActionError("Required field missing")
278
 
    frompath = actionpath_to_local(req, frompath)
279
 
    topath = actionpath_to_local(req, topath)
280
 
    if not os.path.exists(frompath):
281
 
        raise ActionError("The source file does not exist")
282
 
    if os.path.exists(topath):
283
 
        if frompath == topath:
284
 
            raise ActionError("Source and destination are the same")
285
 
        raise ActionError("A file already exists with that name")
286
 
 
287
 
    try:
288
 
        if copy:
289
 
            svnclient.copy(frompath, topath)
290
 
        else:
291
 
            svnclient.move(frompath, topath)
292
 
    except OSError:
293
 
        raise ActionError("Could not move the file specified")
294
 
    except pysvn.ClientError:
295
 
        raise ActionError("Could not move the file specified")  
296
 
 
297
 
 
298
266
### ACTIONS ###
299
267
 
300
268
def action_delete(req, fields):
402
370
 
403
371
    Reads fields: 'path', 'data' (file upload, multiple), 'unpack'
404
372
    """
 
373
 
405
374
    # Important: Data is "None" if the file submitted is empty.
406
375
    path = fields.getfirst('path')
407
376
    data = fields['data']
420
389
    for datum in data:
421
390
        # Each of the uploaded files
422
391
        filepath = os.path.join(path, datum.filename)
423
 
        (_, _, filepath_local) = studpath.url_to_jailpaths(filepath)
424
 
        if os.path.isdir(filepath_local):
425
 
            raise ActionError("A directory already exists "
426
 
                    + "with that name")
427
 
        else:
428
 
            if os.path.exists(filepath_local):
429
 
                raise ActionError("A file already exists with that name")
430
392
        filedata = datum.file
431
393
 
432
394
        if unpack and datum.filename.lower().endswith(".zip"):
441
403
                zip.unzip(abspath, filedata)
442
404
            except (OSError, IOError):
443
405
                goterror = True
444
 
            except WillNotOverwrite, e:
445
 
                raise ActionError("File '" + e.filename + "' already exists.")
446
406
        else:
447
407
            # Not a zip file
448
408
            (_, _, filepath_local) = studpath.url_to_jailpaths(filepath)
484
444
    files = fields.getlist('file')
485
445
    if dst is None or src is None or mode is None:
486
446
        raise ActionError("Required field missing")
487
 
 
 
447
    if mode == "copy":
 
448
        copy = True
 
449
    elif mode == "move":
 
450
        copy = False
 
451
    else:
 
452
        raise ActionError("Invalid mode (must be 'copy' or 'move')")
488
453
    dst_local = actionpath_to_local(req, dst)
489
454
    if not os.path.isdir(dst_local):
490
455
        raise ActionError("dst is not a directory")
499
464
        # The destination is found by taking just the basename of the file
500
465
        topath = os.path.join(dst, os.path.basename(file))
501
466
        try:
502
 
            if mode == "copy":
503
 
                movefile(req, frompath, topath, True)
504
 
            elif mode == "move":
505
 
                movefile(req, frompath, topath, False)
506
 
            elif mode == "svncopy":
507
 
                svn_movefile(req, frompath, topath, True)
508
 
            elif mode == "svnmove":
509
 
                svn_movefile(req, frompath, topath, False)
510
 
            else:
511
 
                raise ActionError("Invalid mode (must be '(svn)copy' or '(svn)move')")
 
467
            movefile(req, frompath, topath, copy)
512
468
        except ActionError, message:
513
469
            # Store the error for later; we want to copy as many as possible
514
470
            if errormsg is None:
753
709
            raise util.IVLEError(404, 'The specified repository path does not exist')
754
710
        else:
755
711
            raise ActionError(str(e[0]))
756
 
            
757
712
 
758
713
# Table of all action functions #
759
714
# Each function has the interface f(req, fields).