~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-15 02:55:57 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:1149
ivle.fileservice_lib.action.get_login: Always give credentials as strs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# IVLE
 
2
# Copyright (C) 2007-2008 The University of Melbourne
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
17
 
 
18
# Module: File Service / Action
 
19
# Author: Matt Giuca
 
20
# Date: 10/1/2008
 
21
 
 
22
# Handles actions requested by the client as part of the 2-stage process of
 
23
# fileservice (the second part being the return listing).
 
24
 
 
25
### Actions ###
 
26
 
 
27
# The most important argument is "action". This determines which action is
 
28
# taken. Note that action, and all other arguments, are ignored unless the
 
29
# request is a POST request. The other arguments depend upon the action.
 
30
# Note that paths are often specified as arguments. Paths that begin with a
 
31
# slash are taken relative to the user's home directory (the top-level
 
32
# directory seen when fileservice has no arguments or path). Paths without a
 
33
# slash are taken relative to the specified path.
 
34
 
 
35
# action=remove: Delete a file(s) or directory(s) (recursively).
 
36
#       path:   The path to the file or directory to delete. Can be specified
 
37
#               multiple times.
 
38
#
 
39
# action=move: Move or rename a file or directory.
 
40
#       from:   The path to the file or directory to be renamed.
 
41
#       to:     The path of the target filename. Error if the file already
 
42
#               exists.
 
43
#
 
44
# action=putfile: Upload a file to the student workspace.
 
45
#       path:   The path to the file to be written. Error if the target
 
46
#               file is a directory.
 
47
#       data:   Bytes to be written to the file verbatim. May either be
 
48
#               a string variable or a file upload.
 
49
#       overwrite: Optional. If supplied, the file will be overwritten.
 
50
#               Otherwise, error if path already exists.
 
51
#
 
52
# action=putfiles: Upload multiple files to the student workspace, and
 
53
#                 optionally accept zip files which will be unpacked.
 
54
#       path:   The path to the DIRECTORY to place files in. Must not be a
 
55
#               file.
 
56
#       data:   A file upload (may not be a simple string). The filename
 
57
#               will be used to determine the target filename within
 
58
#               the given path.
 
59
#       unpack: Optional. If supplied, if any data is a valid ZIP file,
 
60
#               will create a directory instead and unpack the ZIP file
 
61
#               into it.
 
62
#
 
63
# action=mkdir: Create a directory. The parent dir must exist.
 
64
#       path:   The path to a file which does not exist, but whose parent
 
65
#               does. The dir will be made with this name.
 
66
#
 
67
# The differences between putfile and putfiles are:
 
68
# * putfile can only accept a single file, and can't unpack zipfiles.
 
69
# * putfile can accept string data, doesn't have to be a file upload.
 
70
# * putfile ignores the upload filename, the entire filename is specified on
 
71
#       path. putfiles calls files after the name on the user's machine.
 
72
#
 
73
# action=paste: Copy or move the files to a specified dir.
 
74
#       src:    The path to the DIRECTORY to get the files from (relative).
 
75
#       dst:    The path to the DIRECTORY to paste the files to. Must not
 
76
#               be a file.
 
77
#       mode:   'copy' or 'move'
 
78
#       file:   File to be copied or moved, relative to src, to a destination
 
79
#               relative to dst. Can be specified multiple times.
 
80
#
 
81
# Subversion actions.
 
82
# action=svnadd: Add an existing file(s) to version control.
 
83
#       path:   The path to the file to be added. Can be specified multiple
 
84
#               times.
 
85
#
 
86
# action=svnrevert: Revert a file(s) to its state as of the current revision
 
87
#               / undo local edits.
 
88
#       path:   The path to the file to be reverted. Can be specified multiple
 
89
#               times.
 
90
#
 
91
# action=svnupdate: Bring a file up to date with the head revision.
 
92
#       path:   The path to the file to be updated. Only one file may be
 
93
#               specified.
 
94
#
 
95
# action=svnpublish: Set the "published" flag on a file to True.
 
96
#       path:   The path to the file to be published. Can be specified
 
97
#               multiple times.
 
98
#
 
99
# action=svnunpublish: Set the "published" flag on a file to False.
 
100
#       path:   The path to the file to be unpublished. Can be specified
 
101
#               multiple times.
 
102
#
 
103
# action=svncommit: Commit a file(s) or directory(s) to the repository.
 
104
#       path:   The path to the file or directory to be committed. Can be
 
105
#               specified multiple times. Directories are committed
 
106
#               recursively.
 
107
#       logmsg: Text of the log message. Optional. There is a default log
 
108
#               message if unspecified.
 
109
# action=svncheckout: Checkout a file/directory from the repository.
 
110
#       path:   The [repository] path to the file or directory to be
 
111
#               checked out.
 
112
 
113
# action=svnrepomkdir: Create a directory in a repository (not WC).
 
114
#       path:   The path to the directory to be created (under the IVLE
 
115
#               repository base).
 
116
#       logmsg: Text of the log message.
 
117
 
118
# action=svnrepostat: Check if a path exists in a repository (not WC).
 
119
#       path:   The path to the directory to be checked (under the IVLE
 
120
#               repository base).
 
121
#
 
122
# TODO: Implement the following actions:
 
123
#   svnupdate (done?)
 
124
# TODO: Implement ZIP unpacking in putfiles (done?).
 
125
# TODO: svnupdate needs a digest to tell the user the files that were updated.
 
126
#   This can be implemented by some message passing between action and
 
127
#   listing, and having the digest included in the listing. (Problem if
 
128
#   the listing is not a directory, but we could make it an error to do an
 
129
#   update if the path is not a directory).
 
130
 
 
131
import os
 
132
import cStringIO
 
133
import shutil
 
134
 
 
135
import pysvn
 
136
 
 
137
from ivle import (util, studpath, zip)
 
138
import ivle.conf
 
139
 
 
140
def get_login(_realm, existing_login, _may_save):
 
141
    """Callback function used by pysvn for authentication.
 
142
    realm, existing_login, _may_save: The 3 arguments passed by pysvn to
 
143
        callback_get_login.
 
144
        The following has been determined empirically, not from docs:
 
145
        existing_login will be the name of the user who owns the process on
 
146
        the first attempt, "" on subsequent attempts. We use this fact.
 
147
    """
 
148
    # Only provide credentials on the _first_ attempt.
 
149
    # If we're being asked again, then it means the credentials failed for
 
150
    # some reason and we should just fail. (This is not desirable, but it's
 
151
    # better than being asked an infinite number of times).
 
152
    return (existing_login != "", str(ivle.conf.login),
 
153
                                  str(ivle.conf.svn_pass), True)
 
154
 
 
155
# Make a Subversion client object
 
156
svnclient = pysvn.Client()
 
157
svnclient.callback_get_login = get_login
 
158
svnclient.exception_style = 0               # Simple (string) exceptions
 
159
 
 
160
DEFAULT_LOGMESSAGE = "No log message supplied."
 
161
 
 
162
# Mime types
 
163
# application/json is the "best" content type but is not good for
 
164
# debugging because Firefox just tries to download it
 
165
mime_dirlisting = "text/html"
 
166
#mime_dirlisting = "application/json"
 
167
 
 
168
class ActionError(Exception):
 
169
    """Represents an error processing an action. This can be
 
170
    raised by any of the action functions, and will be caught
 
171
    by the top-level handler, put into the HTTP response field,
 
172
    and continue.
 
173
 
 
174
    Important Security Consideration: The message passed to this
 
175
    exception will be relayed to the client.
 
176
    """
 
177
    pass
 
178
 
 
179
def handle_action(req, action, fields):
 
180
    """Perform the "action" part of the response.
 
181
    This function should only be called if the response is a POST.
 
182
    This performs the action's side-effect on the server. If unsuccessful,
 
183
    writes the X-IVLE-Action-Error header to the request object. Otherwise,
 
184
    does not touch the request object. Does NOT write any bytes in response.
 
185
 
 
186
    May throw an ActionError. The caller should put this string into the
 
187
    X-IVLE-Action-Error header, and then continue normally.
 
188
 
 
189
    action: String, the action requested. Not sanitised.
 
190
    fields: FieldStorage object containing all arguments passed.
 
191
    """
 
192
    global actions_table        # Table of function objects
 
193
    try:
 
194
        action = actions_table[action]
 
195
    except KeyError:
 
196
        # Default, just send an error but then continue
 
197
        raise ActionError("Unknown action")
 
198
    action(req, fields)
 
199
 
 
200
def actionpath_to_urlpath(req, path):
 
201
    """Determines the URL path (relative to the student home) upon which the
 
202
    action is intended to act. See actionpath_to_local.
 
203
    """
 
204
    if path is None:
 
205
        return req.path
 
206
    elif len(path) > 0 and path[0] == os.sep:
 
207
        # Relative to student home
 
208
        return path[1:]
 
209
    else:
 
210
        # Relative to req.path
 
211
        return os.path.join(req.path, path)
 
212
 
 
213
def actionpath_to_local(req, path):
 
214
    """Determines the local path upon which an action is intended to act.
 
215
    Note that fileservice actions accept two paths: the request path,
 
216
    and the "path" argument given to the action.
 
217
    According to the rules, if the "path" argument begins with a '/' it is
 
218
    relative to the user's home; if it does not, it is relative to the
 
219
    supplied path.
 
220
 
 
221
    This resolves the path, given the request and path argument.
 
222
 
 
223
    May raise an ActionError("Invalid path"). The caller is expected to
 
224
    let this fall through to the top-level handler, where it will be
 
225
    put into the HTTP response field. Never returns None.
 
226
 
 
227
    Does not mutate req.
 
228
    """
 
229
    (_, _, r) = studpath.url_to_jailpaths(actionpath_to_urlpath(req, path))
 
230
    if r is None:
 
231
        raise ActionError("Invalid path")
 
232
    return r
 
233
 
 
234
def movefile(req, frompath, topath, copy=False):
 
235
    """Performs a file move, resolving filenames, checking for any errors,
 
236
    and throwing ActionErrors if necessary. Can also be used to do a copy
 
237
    operation instead.
 
238
 
 
239
    frompath and topath are straight paths from the client. Will be checked.
 
240
    """
 
241
    # TODO: Do an SVN mv if the file is versioned.
 
242
    # TODO: Disallow tampering with student's home directory
 
243
    if frompath is None or topath is None:
 
244
        raise ActionError("Required field missing")
 
245
    frompath = actionpath_to_local(req, frompath)
 
246
    topath = actionpath_to_local(req, topath)
 
247
    if not os.path.exists(frompath):
 
248
        raise ActionError("The source file does not exist")
 
249
    if os.path.exists(topath):
 
250
        if frompath == topath:
 
251
            raise ActionError("Source and destination are the same")
 
252
        raise ActionError("A file already exists with that name")
 
253
 
 
254
    try:
 
255
        if copy:
 
256
            if os.path.isdir(frompath):
 
257
                shutil.copytree(frompath, topath)
 
258
            else:
 
259
                shutil.copy2(frompath, topath)
 
260
        else:
 
261
            shutil.move(frompath, topath)
 
262
    except OSError:
 
263
        raise ActionError("Could not move the file specified")
 
264
    except shutil.Error:
 
265
        raise ActionError("Could not move the file specified")
 
266
 
 
267
### ACTIONS ###
 
268
 
 
269
def action_delete(req, fields):
 
270
    # TODO: Disallow removal of student's home directory
 
271
    """Removes a list of files or directories.
 
272
 
 
273
    Reads fields: 'path' (multiple)
 
274
    """
 
275
    paths = fields.getlist('path')
 
276
    goterror = False
 
277
    for path in paths:
 
278
        path = actionpath_to_local(req, path)
 
279
        try:
 
280
            if os.path.isdir(path):
 
281
                shutil.rmtree(path)
 
282
            else:
 
283
                os.remove(path)
 
284
        except OSError:
 
285
            goterror = True
 
286
        except shutil.Error:
 
287
            goterror = True
 
288
    if goterror:
 
289
        if len(paths) == 1:
 
290
            raise ActionError("Could not delete the file specified")
 
291
        else:
 
292
            raise ActionError(
 
293
                "Could not delete one or more of the files specified")
 
294
 
 
295
def action_move(req, fields):
 
296
    # TODO: Do an SVN mv if the file is versioned.
 
297
    # TODO: Disallow tampering with student's home directory
 
298
    """Removes a list of files or directories.
 
299
 
 
300
    Reads fields: 'from', 'to'
 
301
    """
 
302
    frompath = fields.getfirst('from')
 
303
    topath = fields.getfirst('to')
 
304
    movefile(req, frompath, topath)
 
305
 
 
306
def action_mkdir(req, fields):
 
307
    """Creates a directory with the given path.
 
308
    Reads fields: 'path'
 
309
    """
 
310
    path = fields.getfirst('path')
 
311
    if path is None:
 
312
        raise ActionError("Required field missing")
 
313
    path = actionpath_to_local(req, path)
 
314
 
 
315
    if os.path.exists(path):
 
316
        raise ActionError("A file already exists with that name")
 
317
 
 
318
    # Create the directory
 
319
    try:
 
320
        os.mkdir(path)
 
321
    except OSError:
 
322
        raise ActionError("Could not create directory")
 
323
 
 
324
def action_putfile(req, fields):
 
325
    """Writes data to a file, overwriting it if it exists and creating it if
 
326
    it doesn't.
 
327
 
 
328
    Reads fields: 'path', 'data' (file upload), 'overwrite'
 
329
    """
 
330
    # TODO: Read field "unpack".
 
331
    # Important: Data is "None" if the file submitted is empty.
 
332
    path = fields.getfirst('path')
 
333
    data = fields.getfirst('data')
 
334
    if path is None:
 
335
        raise ActionError("Required field missing")
 
336
    if data is None:
 
337
        # Workaround - field reader treats "" as None, so this is the only
 
338
        # way to allow blank file uploads
 
339
        data = ""
 
340
    path = actionpath_to_local(req, path)
 
341
 
 
342
    if data is not None:
 
343
        data = cStringIO.StringIO(data)
 
344
 
 
345
    overwrite = fields.getfirst('overwrite')
 
346
    if overwrite is None:
 
347
        overwrite = False
 
348
    else:
 
349
        overwrite = True
 
350
 
 
351
    if overwrite:
 
352
        # Overwrite files; but can't if it's a directory
 
353
        if os.path.isdir(path):
 
354
            raise ActionError("A directory already exists "
 
355
                    + "with that name")
 
356
    else:
 
357
        if os.path.exists(path):
 
358
            raise ActionError("A file already exists with that name")
 
359
 
 
360
    # Copy the contents of file object 'data' to the path 'path'
 
361
    try:
 
362
        dest = open(path, 'wb')
 
363
        if data is not None:
 
364
            shutil.copyfileobj(data, dest)
 
365
    except (IOError, OSError), e:
 
366
        raise ActionError("Could not write to target file: %s" % e.strerror)
 
367
 
 
368
def action_putfiles(req, fields):
 
369
    """Writes data to one or more files in a directory, overwriting them if
 
370
    it they exist.
 
371
 
 
372
    Reads fields: 'path', 'data' (file upload, multiple), 'unpack'
 
373
    """
 
374
 
 
375
    # Important: Data is "None" if the file submitted is empty.
 
376
    path = fields.getfirst('path')
 
377
    data = fields['data']
 
378
    if type(data) != type([]):
 
379
        data = [data]
 
380
    unpack = fields.getfirst('unpack')
 
381
    if unpack is None:
 
382
        unpack = False
 
383
    else:
 
384
        unpack = True
 
385
    if path is None:
 
386
        raise ActionError("Required field missing")
 
387
    path = actionpath_to_urlpath(req, path)
 
388
    goterror = False
 
389
 
 
390
    for datum in data:
 
391
        # Each of the uploaded files
 
392
        filepath = os.path.join(path, datum.filename)
 
393
        filedata = datum.file
 
394
 
 
395
        if unpack and datum.filename.lower().endswith(".zip"):
 
396
            # A zip file - unpack it instead of just copying
 
397
            # TODO: Use the magic number instead of file extension
 
398
            # Note: Just unzip into the current directory (ignore the
 
399
            # filename)
 
400
            try:
 
401
                # First get the entire path (within jail)
 
402
                _, _, abspath = studpath.url_to_jailpaths(path)
 
403
                abspath = os.path.join(os.sep, abspath)
 
404
                zip.unzip(abspath, filedata)
 
405
            except (OSError, IOError):
 
406
                goterror = True
 
407
        else:
 
408
            # Not a zip file
 
409
            (_, _, filepath_local) = studpath.url_to_jailpaths(filepath)
 
410
            if filepath_local is None:
 
411
                raise ActionError("Invalid path")
 
412
 
 
413
            # Copy the contents of file object 'data' to the path 'path'
 
414
            try:
 
415
                dest = open(filepath_local, 'wb')
 
416
                if data is not None:
 
417
                    shutil.copyfileobj(filedata, dest)
 
418
            except (OSError, IOError):
 
419
                # TODO: Be more descriptive.
 
420
                goterror = True
 
421
 
 
422
    if goterror:
 
423
        if len(data) == 1:
 
424
            raise ActionError("Could not write to target file")
 
425
        else:
 
426
            raise ActionError(
 
427
                "Could not write to one or more of the target files")
 
428
 
 
429
def action_paste(req, fields):
 
430
    """Performs the copy or move action with the files specified.
 
431
    Copies/moves the files to the specified directory.
 
432
 
 
433
    Reads fields: 'src', 'dst', 'mode', 'file' (multiple).
 
434
    src: Base path that all the files are relative to (source).
 
435
    dst: Destination path to paste into.
 
436
    mode: 'copy' or 'move'.
 
437
    file: (Multiple) Files relative to base, which will be copied
 
438
        or moved to new locations relative to path.
 
439
    """
 
440
    errormsg = None
 
441
 
 
442
    dst = fields.getfirst('dst')
 
443
    src = fields.getfirst('src')
 
444
    mode = fields.getfirst('mode')
 
445
    files = fields.getlist('file')
 
446
    if dst is None or src is None or mode is None:
 
447
        raise ActionError("Required field missing")
 
448
    if mode == "copy":
 
449
        copy = True
 
450
    elif mode == "move":
 
451
        copy = False
 
452
    else:
 
453
        raise ActionError("Invalid mode (must be 'copy' or 'move')")
 
454
    dst_local = actionpath_to_local(req, dst)
 
455
    if not os.path.isdir(dst_local):
 
456
        raise ActionError("dst is not a directory")
 
457
 
 
458
    errorfiles = []
 
459
    for file in files:
 
460
        # The source must not be interpreted as relative to req.path
 
461
        # Add a slash (relative to top-level)
 
462
        if src[:1] != '/':
 
463
            src = '/' + src
 
464
        frompath = os.path.join(src, file)
 
465
        # The destination is found by taking just the basename of the file
 
466
        topath = os.path.join(dst, os.path.basename(file))
 
467
        try:
 
468
            movefile(req, frompath, topath, copy)
 
469
        except ActionError, message:
 
470
            # Store the error for later; we want to copy as many as possible
 
471
            if errormsg is None:
 
472
                errormsg = message
 
473
            else:
 
474
                # Multiple errors; generic message
 
475
                errormsg = "One or more files could not be pasted"
 
476
            # Add this file to errorfiles; it will be put back on the
 
477
            # clipboard for possible future pasting.
 
478
            errorfiles.append(file)
 
479
    if errormsg is not None:
 
480
        raise ActionError(errormsg)
 
481
 
 
482
    # XXX errorfiles contains a list of files that couldn't be pasted.
 
483
    # we currently do nothing with this.
 
484
 
 
485
def action_publish(req,fields):
 
486
    """Marks the folder as published by adding a '.published' file to the 
 
487
    directory and ensuring that the parent directory permissions are correct
 
488
 
 
489
    Reads fields: 'path'
 
490
    """
 
491
    paths = fields.getlist('path')
 
492
    user = studpath.url_to_local(req.path)[0]
 
493
    homedir = "/home/%s" % user
 
494
    if len(paths):
 
495
        paths = map(lambda path: actionpath_to_local(req, path), paths)
 
496
    else:
 
497
        paths = [studpath.url_to_jailpaths(req.path)[2]]
 
498
 
 
499
    # Set all the dirs in home dir world browsable (o+r,o+x)
 
500
    #FIXME: Should really only do those in the direct path not all of the 
 
501
    # folders in a students home directory
 
502
    for root,dirs,files in os.walk(homedir):
 
503
        os.chmod(root, os.stat(root).st_mode|0005)
 
504
 
 
505
    try:
 
506
        for path in paths:
 
507
            if os.path.isdir(path):
 
508
                pubfile = open(os.path.join(path,'.published'),'w')
 
509
                pubfile.write("This directory is published\n")
 
510
                pubfile.close()
 
511
            else:
 
512
                raise ActionError("Can only publish directories")
 
513
    except OSError, e:
 
514
        raise ActionError("Directory could not be published")
 
515
 
 
516
def action_unpublish(req,fields):
 
517
    """Marks the folder as unpublished by removing a '.published' file in the 
 
518
    directory (if it exits). It does not change the permissions of the parent 
 
519
    directories.
 
520
 
 
521
    Reads fields: 'path'
 
522
    """
 
523
    paths = fields.getlist('path')
 
524
    if len(paths):
 
525
        paths = map(lambda path: actionpath_to_local(req, path), paths)
 
526
    else:
 
527
        paths = [studpath.url_to_jailpaths(req.path)[2]]
 
528
 
 
529
    try:
 
530
        for path in paths:
 
531
            if os.path.isdir(path):
 
532
                pubfile = os.path.join(path,'.published')
 
533
                if os.path.isfile(pubfile):
 
534
                    os.remove(pubfile)
 
535
            else:
 
536
                raise ActionError("Can only unpublish directories")
 
537
    except OSError, e:
 
538
        raise ActionError("Directory could not be unpublished")
 
539
 
 
540
 
 
541
def action_svnadd(req, fields):
 
542
    """Performs a "svn add" to each file specified.
 
543
 
 
544
    Reads fields: 'path' (multiple)
 
545
    """
 
546
    paths = fields.getlist('path')
 
547
    paths = map(lambda path: actionpath_to_local(req, path), paths)
 
548
 
 
549
    try:
 
550
        svnclient.add(paths, recurse=True, force=True)
 
551
    except pysvn.ClientError, e:
 
552
        raise ActionError(str(e))
 
553
 
 
554
def action_svnremove(req, fields):
 
555
    """Performs a "svn remove" on each file specified.
 
556
 
 
557
    Reads fields: 'path' (multiple)
 
558
    """
 
559
    paths = fields.getlist('path')
 
560
    paths = map(lambda path: actionpath_to_local(req, path), paths)
 
561
 
 
562
    try:
 
563
        svnclient.remove(paths, force=True)
 
564
    except pysvn.ClientError, e:
 
565
        raise ActionError(str(e))
 
566
 
 
567
def action_svnupdate(req, fields):
 
568
    """Performs a "svn update" to each file specified.
 
569
 
 
570
    Reads fields: 'path'
 
571
    """
 
572
    path = fields.getfirst('path')
 
573
    if path is None:
 
574
        raise ActionError("Required field missing")
 
575
    path = actionpath_to_local(req, path)
 
576
 
 
577
    try:
 
578
        svnclient.update(path, recurse=True)
 
579
    except pysvn.ClientError, e:
 
580
        raise ActionError(str(e))
 
581
 
 
582
def action_svnresolved(req, fields):
 
583
    """Performs a "svn resolved" to each file specified.
 
584
 
 
585
    Reads fields: 'path'
 
586
    """
 
587
    path = fields.getfirst('path')
 
588
    if path is None:
 
589
        raise ActionError("Required field missing")
 
590
    path = actionpath_to_local(req, path)
 
591
 
 
592
    try:
 
593
        svnclient.resolved(path, recurse=True)
 
594
    except pysvn.ClientError, e:
 
595
        raise ActionError(str(e))
 
596
 
 
597
def action_svnrevert(req, fields):
 
598
    """Performs a "svn revert" to each file specified.
 
599
 
 
600
    Reads fields: 'path' (multiple)
 
601
    """
 
602
    paths = fields.getlist('path')
 
603
    paths = map(lambda path: actionpath_to_local(req, path), paths)
 
604
 
 
605
    try:
 
606
        svnclient.revert(paths, recurse=True)
 
607
    except pysvn.ClientError, e:
 
608
        raise ActionError(str(e))
 
609
 
 
610
def action_svnpublish(req, fields):
 
611
    """Sets svn property "ivle:published" on each file specified.
 
612
    Should only be called on directories (only effective on directories
 
613
    anyway).
 
614
 
 
615
    Reads fields: 'path'
 
616
 
 
617
    XXX Currently unused by the client (calls action_publish instead, which
 
618
    has a completely different publishing model).
 
619
    """
 
620
    paths = fields.getlist('path')
 
621
    if len(paths):
 
622
        paths = map(lambda path: actionpath_to_local(req, path), paths)
 
623
    else:
 
624
        paths = [studpath.url_to_jailpaths(req.path)[2]]
 
625
 
 
626
    try:
 
627
        for path in paths:
 
628
            # Note: Property value doesn't matter
 
629
            svnclient.propset("ivle:published", "", path, recurse=False)
 
630
    except pysvn.ClientError, e:
 
631
        raise ActionError("Directory could not be published")
 
632
 
 
633
def action_svnunpublish(req, fields):
 
634
    """Deletes svn property "ivle:published" on each file specified.
 
635
 
 
636
    Reads fields: 'path'
 
637
 
 
638
    XXX Currently unused by the client (calls action_unpublish instead, which
 
639
    has a completely different publishing model).
 
640
    """
 
641
    paths = fields.getlist('path')
 
642
    paths = map(lambda path: actionpath_to_local(req, path), paths)
 
643
 
 
644
    try:
 
645
        for path in paths:
 
646
            svnclient.propdel("ivle:published", path, recurse=False)
 
647
    except pysvn.ClientError, e:
 
648
        raise ActionError("Directory could not be unpublished")
 
649
 
 
650
def action_svncommit(req, fields):
 
651
    """Performs a "svn commit" to each file specified.
 
652
 
 
653
    Reads fields: 'path' (multiple), 'logmsg' (optional)
 
654
    """
 
655
    paths = fields.getlist('path')
 
656
    paths = map(lambda path: actionpath_to_local(req, str(path)), paths)
 
657
    logmsg = str(fields.getfirst('logmsg', DEFAULT_LOGMESSAGE))
 
658
    if logmsg == '': logmsg = DEFAULT_LOGMESSAGE
 
659
 
 
660
    try:
 
661
        svnclient.checkin(paths, logmsg, recurse=True)
 
662
    except pysvn.ClientError, e:
 
663
        raise ActionError(str(e))
 
664
 
 
665
def action_svncheckout(req, fields):
 
666
    """Performs a "svn checkout" of the first path into the second path.
 
667
 
 
668
    Reads fields: 'path'    (multiple)
 
669
    """
 
670
    paths = fields.getlist('path')
 
671
    if len(paths) != 2:
 
672
        raise ActionError("usage: svncheckout url local-path")
 
673
    url = ivle.conf.svn_addr + "/" + paths[0]
 
674
    local_path = actionpath_to_local(req, str(paths[1]))
 
675
    try:
 
676
        svnclient.callback_get_login = get_login
 
677
        svnclient.checkout(url, local_path, recurse=True)
 
678
    except pysvn.ClientError, e:
 
679
        raise ActionError(str(e))
 
680
 
 
681
def action_svnrepomkdir(req, fields):
 
682
    """Performs a "svn mkdir" on a path under the IVLE SVN root.
 
683
 
 
684
    Reads fields: 'path'
 
685
    """
 
686
    path = fields.getfirst('path')
 
687
    logmsg = fields.getfirst('logmsg')
 
688
    url = ivle.conf.svn_addr + "/" + path
 
689
    try:
 
690
        svnclient.callback_get_login = get_login
 
691
        svnclient.mkdir(url, log_message=logmsg)
 
692
    except pysvn.ClientError, e:
 
693
        raise ActionError(str(e))
 
694
 
 
695
def action_svnrepostat(req, fields):
 
696
    """Discovers whether a path exists in a repo under the IVLE SVN root.
 
697
 
 
698
    Reads fields: 'path'
 
699
    """
 
700
    path = fields.getfirst('path')
 
701
    url = ivle.conf.svn_addr + "/" + path
 
702
    svnclient.exception_style = 1 
 
703
 
 
704
    try:
 
705
        svnclient.callback_get_login = get_login
 
706
        svnclient.info2(url)
 
707
    except pysvn.ClientError, e:
 
708
        # Error code 170000 means ENOENT in this revision.
 
709
        if e[1][0][1] == 170000:
 
710
            raise util.IVLEError(404, 'The specified repository path does not exist')
 
711
        else:
 
712
            raise ActionError(str(e[0]))
 
713
 
 
714
# Table of all action functions #
 
715
# Each function has the interface f(req, fields).
 
716
 
 
717
actions_table = {
 
718
    "delete" : action_delete,
 
719
    "move" : action_move,
 
720
    "mkdir" : action_mkdir,
 
721
    "putfile" : action_putfile,
 
722
    "putfiles" : action_putfiles,
 
723
    "paste" : action_paste,
 
724
    "publish" : action_publish,
 
725
    "unpublish" : action_unpublish,
 
726
 
 
727
    "svnadd" : action_svnadd,
 
728
    "svnremove" : action_svnremove,
 
729
    "svnupdate" : action_svnupdate,
 
730
    "svnresolved" : action_svnresolved,
 
731
    "svnrevert" : action_svnrevert,
 
732
    "svnpublish" : action_svnpublish,
 
733
    "svnunpublish" : action_svnunpublish,
 
734
    "svncommit" : action_svncommit,
 
735
    "svncheckout" : action_svncheckout,
 
736
    "svnrepomkdir" : action_svnrepomkdir,
 
737
    "svnrepostat" : action_svnrepostat,
 
738
}