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

1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
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)
1089 by chadnickbok
Fixes Issue #14
138
from ivle.fileservice_lib.exceptions import WillNotOverwrite
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
139
import ivle.conf
140
1089 by chadnickbok
Fixes Issue #14
141
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
142
def get_login(_realm, existing_login, _may_save):
143
    """Callback function used by pysvn for authentication.
144
    realm, existing_login, _may_save: The 3 arguments passed by pysvn to
145
        callback_get_login.
146
        The following has been determined empirically, not from docs:
147
        existing_login will be the name of the user who owns the process on
148
        the first attempt, "" on subsequent attempts. We use this fact.
149
    """
150
    # Only provide credentials on the _first_ attempt.
151
    # If we're being asked again, then it means the credentials failed for
152
    # some reason and we should just fail. (This is not desirable, but it's
153
    # better than being asked an infinite number of times).
1080.1.18 by me at id
ivle.fileservice_lib.action.get_login: Always give credentials as strs.
154
    return (existing_login != "", str(ivle.conf.login),
155
                                  str(ivle.conf.svn_pass), True)
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
156
157
# Make a Subversion client object
158
svnclient = pysvn.Client()
159
svnclient.callback_get_login = get_login
160
svnclient.exception_style = 0               # Simple (string) exceptions
161
162
DEFAULT_LOGMESSAGE = "No log message supplied."
163
164
# Mime types
165
# application/json is the "best" content type but is not good for
166
# debugging because Firefox just tries to download it
167
mime_dirlisting = "text/html"
168
#mime_dirlisting = "application/json"
169
170
class ActionError(Exception):
171
    """Represents an error processing an action. This can be
172
    raised by any of the action functions, and will be caught
173
    by the top-level handler, put into the HTTP response field,
174
    and continue.
175
176
    Important Security Consideration: The message passed to this
177
    exception will be relayed to the client.
178
    """
179
    pass
180
181
def handle_action(req, action, fields):
182
    """Perform the "action" part of the response.
183
    This function should only be called if the response is a POST.
184
    This performs the action's side-effect on the server. If unsuccessful,
185
    writes the X-IVLE-Action-Error header to the request object. Otherwise,
186
    does not touch the request object. Does NOT write any bytes in response.
187
188
    May throw an ActionError. The caller should put this string into the
189
    X-IVLE-Action-Error header, and then continue normally.
190
191
    action: String, the action requested. Not sanitised.
192
    fields: FieldStorage object containing all arguments passed.
193
    """
194
    global actions_table        # Table of function objects
195
    try:
196
        action = actions_table[action]
197
    except KeyError:
198
        # Default, just send an error but then continue
199
        raise ActionError("Unknown action")
200
    action(req, fields)
201
202
def actionpath_to_urlpath(req, path):
203
    """Determines the URL path (relative to the student home) upon which the
204
    action is intended to act. See actionpath_to_local.
205
    """
206
    if path is None:
207
        return req.path
208
    elif len(path) > 0 and path[0] == os.sep:
209
        # Relative to student home
210
        return path[1:]
211
    else:
212
        # Relative to req.path
213
        return os.path.join(req.path, path)
214
215
def actionpath_to_local(req, path):
216
    """Determines the local path upon which an action is intended to act.
217
    Note that fileservice actions accept two paths: the request path,
218
    and the "path" argument given to the action.
219
    According to the rules, if the "path" argument begins with a '/' it is
220
    relative to the user's home; if it does not, it is relative to the
221
    supplied path.
222
223
    This resolves the path, given the request and path argument.
224
225
    May raise an ActionError("Invalid path"). The caller is expected to
226
    let this fall through to the top-level handler, where it will be
227
    put into the HTTP response field. Never returns None.
228
229
    Does not mutate req.
230
    """
231
    (_, _, r) = studpath.url_to_jailpaths(actionpath_to_urlpath(req, path))
232
    if r is None:
233
        raise ActionError("Invalid path")
234
    return r
235
236
def movefile(req, frompath, topath, copy=False):
237
    """Performs a file move, resolving filenames, checking for any errors,
238
    and throwing ActionErrors if necessary. Can also be used to do a copy
239
    operation instead.
240
241
    frompath and topath are straight paths from the client. Will be checked.
242
    """
243
    # TODO: Do an SVN mv if the file is versioned.
244
    # TODO: Disallow tampering with student's home directory
245
    if frompath is None or topath is None:
246
        raise ActionError("Required field missing")
247
    frompath = actionpath_to_local(req, frompath)
248
    topath = actionpath_to_local(req, topath)
249
    if not os.path.exists(frompath):
250
        raise ActionError("The source file does not exist")
251
    if os.path.exists(topath):
252
        if frompath == topath:
253
            raise ActionError("Source and destination are the same")
254
        raise ActionError("A file already exists with that name")
255
256
    try:
257
        if copy:
258
            if os.path.isdir(frompath):
259
                shutil.copytree(frompath, topath)
260
            else:
261
                shutil.copy2(frompath, topath)
262
        else:
263
            shutil.move(frompath, topath)
264
    except OSError:
265
        raise ActionError("Could not move the file specified")
266
    except shutil.Error:
267
        raise ActionError("Could not move the file specified")
268
1086 by chadnickbok
This commit fixes issue #10 and part of issue #9
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
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
298
### ACTIONS ###
299
300
def action_delete(req, fields):
301
    # TODO: Disallow removal of student's home directory
302
    """Removes a list of files or directories.
303
304
    Reads fields: 'path' (multiple)
305
    """
306
    paths = fields.getlist('path')
307
    goterror = False
308
    for path in paths:
309
        path = actionpath_to_local(req, path)
310
        try:
311
            if os.path.isdir(path):
312
                shutil.rmtree(path)
313
            else:
314
                os.remove(path)
315
        except OSError:
316
            goterror = True
317
        except shutil.Error:
318
            goterror = True
319
    if goterror:
320
        if len(paths) == 1:
321
            raise ActionError("Could not delete the file specified")
322
        else:
323
            raise ActionError(
324
                "Could not delete one or more of the files specified")
325
326
def action_move(req, fields):
327
    # TODO: Do an SVN mv if the file is versioned.
328
    # TODO: Disallow tampering with student's home directory
329
    """Removes a list of files or directories.
330
331
    Reads fields: 'from', 'to'
332
    """
333
    frompath = fields.getfirst('from')
334
    topath = fields.getfirst('to')
335
    movefile(req, frompath, topath)
336
337
def action_mkdir(req, fields):
338
    """Creates a directory with the given path.
339
    Reads fields: 'path'
340
    """
341
    path = fields.getfirst('path')
342
    if path is None:
343
        raise ActionError("Required field missing")
344
    path = actionpath_to_local(req, path)
345
346
    if os.path.exists(path):
347
        raise ActionError("A file already exists with that name")
348
349
    # Create the directory
350
    try:
351
        os.mkdir(path)
352
    except OSError:
353
        raise ActionError("Could not create directory")
354
355
def action_putfile(req, fields):
356
    """Writes data to a file, overwriting it if it exists and creating it if
357
    it doesn't.
358
359
    Reads fields: 'path', 'data' (file upload), 'overwrite'
360
    """
361
    # TODO: Read field "unpack".
362
    # Important: Data is "None" if the file submitted is empty.
363
    path = fields.getfirst('path')
364
    data = fields.getfirst('data')
365
    if path is None:
366
        raise ActionError("Required field missing")
367
    if data is None:
368
        # Workaround - field reader treats "" as None, so this is the only
369
        # way to allow blank file uploads
370
        data = ""
371
    path = actionpath_to_local(req, path)
372
373
    if data is not None:
374
        data = cStringIO.StringIO(data)
375
376
    overwrite = fields.getfirst('overwrite')
377
    if overwrite is None:
378
        overwrite = False
379
    else:
380
        overwrite = True
381
382
    if overwrite:
383
        # Overwrite files; but can't if it's a directory
384
        if os.path.isdir(path):
385
            raise ActionError("A directory already exists "
386
                    + "with that name")
387
    else:
388
        if os.path.exists(path):
389
            raise ActionError("A file already exists with that name")
390
391
    # Copy the contents of file object 'data' to the path 'path'
392
    try:
393
        dest = open(path, 'wb')
394
        if data is not None:
395
            shutil.copyfileobj(data, dest)
396
    except (IOError, OSError), e:
397
        raise ActionError("Could not write to target file: %s" % e.strerror)
398
399
def action_putfiles(req, fields):
400
    """Writes data to one or more files in a directory, overwriting them if
401
    it they exist.
402
403
    Reads fields: 'path', 'data' (file upload, multiple), 'unpack'
404
    """
405
    # Important: Data is "None" if the file submitted is empty.
406
    path = fields.getfirst('path')
407
    data = fields['data']
408
    if type(data) != type([]):
409
        data = [data]
410
    unpack = fields.getfirst('unpack')
411
    if unpack is None:
412
        unpack = False
413
    else:
414
        unpack = True
415
    if path is None:
416
        raise ActionError("Required field missing")
417
    path = actionpath_to_urlpath(req, path)
418
    goterror = False
419
420
    for datum in data:
421
        # Each of the uploaded files
422
        filepath = os.path.join(path, datum.filename)
1089 by chadnickbok
Fixes Issue #14
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")
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
430
        filedata = datum.file
431
432
        if unpack and datum.filename.lower().endswith(".zip"):
433
            # A zip file - unpack it instead of just copying
434
            # TODO: Use the magic number instead of file extension
435
            # Note: Just unzip into the current directory (ignore the
436
            # filename)
437
            try:
438
                # First get the entire path (within jail)
439
                _, _, abspath = studpath.url_to_jailpaths(path)
440
                abspath = os.path.join(os.sep, abspath)
441
                zip.unzip(abspath, filedata)
442
            except (OSError, IOError):
443
                goterror = True
1089 by chadnickbok
Fixes Issue #14
444
            except WillNotOverwrite, e:
445
                raise ActionError("File '" + e.filename + "' already exists.")
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
446
        else:
447
            # Not a zip file
448
            (_, _, filepath_local) = studpath.url_to_jailpaths(filepath)
449
            if filepath_local is None:
450
                raise ActionError("Invalid path")
451
452
            # Copy the contents of file object 'data' to the path 'path'
453
            try:
454
                dest = open(filepath_local, 'wb')
455
                if data is not None:
456
                    shutil.copyfileobj(filedata, dest)
457
            except (OSError, IOError):
458
                # TODO: Be more descriptive.
459
                goterror = True
460
461
    if goterror:
462
        if len(data) == 1:
463
            raise ActionError("Could not write to target file")
464
        else:
465
            raise ActionError(
466
                "Could not write to one or more of the target files")
467
468
def action_paste(req, fields):
469
    """Performs the copy or move action with the files specified.
470
    Copies/moves the files to the specified directory.
471
472
    Reads fields: 'src', 'dst', 'mode', 'file' (multiple).
473
    src: Base path that all the files are relative to (source).
474
    dst: Destination path to paste into.
475
    mode: 'copy' or 'move'.
476
    file: (Multiple) Files relative to base, which will be copied
477
        or moved to new locations relative to path.
478
    """
479
    errormsg = None
480
481
    dst = fields.getfirst('dst')
482
    src = fields.getfirst('src')
483
    mode = fields.getfirst('mode')
484
    files = fields.getlist('file')
485
    if dst is None or src is None or mode is None:
486
        raise ActionError("Required field missing")
1086 by chadnickbok
This commit fixes issue #10 and part of issue #9
487
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
488
    dst_local = actionpath_to_local(req, dst)
489
    if not os.path.isdir(dst_local):
490
        raise ActionError("dst is not a directory")
491
492
    errorfiles = []
493
    for file in files:
494
        # The source must not be interpreted as relative to req.path
495
        # Add a slash (relative to top-level)
496
        if src[:1] != '/':
497
            src = '/' + src
498
        frompath = os.path.join(src, file)
499
        # The destination is found by taking just the basename of the file
500
        topath = os.path.join(dst, os.path.basename(file))
501
        try:
1086 by chadnickbok
This commit fixes issue #10 and part of issue #9
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')")
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
512
        except ActionError, message:
513
            # Store the error for later; we want to copy as many as possible
514
            if errormsg is None:
515
                errormsg = message
516
            else:
517
                # Multiple errors; generic message
518
                errormsg = "One or more files could not be pasted"
519
            # Add this file to errorfiles; it will be put back on the
520
            # clipboard for possible future pasting.
521
            errorfiles.append(file)
522
    if errormsg is not None:
523
        raise ActionError(errormsg)
524
525
    # XXX errorfiles contains a list of files that couldn't be pasted.
526
    # we currently do nothing with this.
527
528
def action_publish(req,fields):
529
    """Marks the folder as published by adding a '.published' file to the 
530
    directory and ensuring that the parent directory permissions are correct
531
532
    Reads fields: 'path'
533
    """
534
    paths = fields.getlist('path')
535
    user = studpath.url_to_local(req.path)[0]
536
    homedir = "/home/%s" % user
537
    if len(paths):
538
        paths = map(lambda path: actionpath_to_local(req, path), paths)
539
    else:
540
        paths = [studpath.url_to_jailpaths(req.path)[2]]
541
542
    # Set all the dirs in home dir world browsable (o+r,o+x)
543
    #FIXME: Should really only do those in the direct path not all of the 
544
    # folders in a students home directory
545
    for root,dirs,files in os.walk(homedir):
546
        os.chmod(root, os.stat(root).st_mode|0005)
547
548
    try:
549
        for path in paths:
550
            if os.path.isdir(path):
551
                pubfile = open(os.path.join(path,'.published'),'w')
552
                pubfile.write("This directory is published\n")
553
                pubfile.close()
554
            else:
555
                raise ActionError("Can only publish directories")
556
    except OSError, e:
557
        raise ActionError("Directory could not be published")
558
559
def action_unpublish(req,fields):
560
    """Marks the folder as unpublished by removing a '.published' file in the 
561
    directory (if it exits). It does not change the permissions of the parent 
562
    directories.
563
564
    Reads fields: 'path'
565
    """
566
    paths = fields.getlist('path')
567
    if len(paths):
568
        paths = map(lambda path: actionpath_to_local(req, path), paths)
569
    else:
570
        paths = [studpath.url_to_jailpaths(req.path)[2]]
571
572
    try:
573
        for path in paths:
574
            if os.path.isdir(path):
575
                pubfile = os.path.join(path,'.published')
576
                if os.path.isfile(pubfile):
577
                    os.remove(pubfile)
578
            else:
579
                raise ActionError("Can only unpublish directories")
580
    except OSError, e:
581
        raise ActionError("Directory could not be unpublished")
582
583
584
def action_svnadd(req, fields):
585
    """Performs a "svn add" to each file specified.
586
587
    Reads fields: 'path' (multiple)
588
    """
589
    paths = fields.getlist('path')
590
    paths = map(lambda path: actionpath_to_local(req, path), paths)
591
592
    try:
593
        svnclient.add(paths, recurse=True, force=True)
594
    except pysvn.ClientError, e:
595
        raise ActionError(str(e))
596
597
def action_svnremove(req, fields):
598
    """Performs a "svn remove" on 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.remove(paths, force=True)
607
    except pysvn.ClientError, e:
608
        raise ActionError(str(e))
609
610
def action_svnupdate(req, fields):
611
    """Performs a "svn update" to each file specified.
612
613
    Reads fields: 'path'
614
    """
615
    path = fields.getfirst('path')
616
    if path is None:
617
        raise ActionError("Required field missing")
618
    path = actionpath_to_local(req, path)
619
620
    try:
621
        svnclient.update(path, recurse=True)
622
    except pysvn.ClientError, e:
623
        raise ActionError(str(e))
624
625
def action_svnresolved(req, fields):
626
    """Performs a "svn resolved" to each file specified.
627
628
    Reads fields: 'path'
629
    """
630
    path = fields.getfirst('path')
631
    if path is None:
632
        raise ActionError("Required field missing")
633
    path = actionpath_to_local(req, path)
634
635
    try:
636
        svnclient.resolved(path, recurse=True)
637
    except pysvn.ClientError, e:
638
        raise ActionError(str(e))
639
640
def action_svnrevert(req, fields):
641
    """Performs a "svn revert" to each file specified.
642
643
    Reads fields: 'path' (multiple)
644
    """
645
    paths = fields.getlist('path')
646
    paths = map(lambda path: actionpath_to_local(req, path), paths)
647
648
    try:
649
        svnclient.revert(paths, recurse=True)
650
    except pysvn.ClientError, e:
651
        raise ActionError(str(e))
652
653
def action_svnpublish(req, fields):
654
    """Sets svn property "ivle:published" on each file specified.
655
    Should only be called on directories (only effective on directories
656
    anyway).
657
658
    Reads fields: 'path'
659
660
    XXX Currently unused by the client (calls action_publish instead, which
661
    has a completely different publishing model).
662
    """
663
    paths = fields.getlist('path')
664
    if len(paths):
665
        paths = map(lambda path: actionpath_to_local(req, path), paths)
666
    else:
667
        paths = [studpath.url_to_jailpaths(req.path)[2]]
668
669
    try:
670
        for path in paths:
671
            # Note: Property value doesn't matter
672
            svnclient.propset("ivle:published", "", path, recurse=False)
673
    except pysvn.ClientError, e:
674
        raise ActionError("Directory could not be published")
675
676
def action_svnunpublish(req, fields):
677
    """Deletes svn property "ivle:published" on each file specified.
678
679
    Reads fields: 'path'
680
681
    XXX Currently unused by the client (calls action_unpublish instead, which
682
    has a completely different publishing model).
683
    """
684
    paths = fields.getlist('path')
685
    paths = map(lambda path: actionpath_to_local(req, path), paths)
686
687
    try:
688
        for path in paths:
689
            svnclient.propdel("ivle:published", path, recurse=False)
690
    except pysvn.ClientError, e:
691
        raise ActionError("Directory could not be unpublished")
692
693
def action_svncommit(req, fields):
694
    """Performs a "svn commit" to each file specified.
695
696
    Reads fields: 'path' (multiple), 'logmsg' (optional)
697
    """
698
    paths = fields.getlist('path')
699
    paths = map(lambda path: actionpath_to_local(req, str(path)), paths)
700
    logmsg = str(fields.getfirst('logmsg', DEFAULT_LOGMESSAGE))
701
    if logmsg == '': logmsg = DEFAULT_LOGMESSAGE
702
703
    try:
704
        svnclient.checkin(paths, logmsg, recurse=True)
705
    except pysvn.ClientError, e:
706
        raise ActionError(str(e))
707
708
def action_svncheckout(req, fields):
709
    """Performs a "svn checkout" of the first path into the second path.
710
711
    Reads fields: 'path'    (multiple)
712
    """
713
    paths = fields.getlist('path')
714
    if len(paths) != 2:
715
        raise ActionError("usage: svncheckout url local-path")
716
    url = ivle.conf.svn_addr + "/" + paths[0]
717
    local_path = actionpath_to_local(req, str(paths[1]))
718
    try:
719
        svnclient.callback_get_login = get_login
720
        svnclient.checkout(url, local_path, recurse=True)
721
    except pysvn.ClientError, e:
722
        raise ActionError(str(e))
723
724
def action_svnrepomkdir(req, fields):
725
    """Performs a "svn mkdir" on a path under the IVLE SVN root.
726
727
    Reads fields: 'path'
728
    """
729
    path = fields.getfirst('path')
730
    logmsg = fields.getfirst('logmsg')
731
    url = ivle.conf.svn_addr + "/" + path
732
    try:
733
        svnclient.callback_get_login = get_login
734
        svnclient.mkdir(url, log_message=logmsg)
735
    except pysvn.ClientError, e:
736
        raise ActionError(str(e))
737
738
def action_svnrepostat(req, fields):
739
    """Discovers whether a path exists in a repo under the IVLE SVN root.
740
741
    Reads fields: 'path'
742
    """
743
    path = fields.getfirst('path')
744
    url = ivle.conf.svn_addr + "/" + path
745
    svnclient.exception_style = 1 
746
747
    try:
748
        svnclient.callback_get_login = get_login
749
        svnclient.info2(url)
750
    except pysvn.ClientError, e:
751
        # Error code 170000 means ENOENT in this revision.
752
        if e[1][0][1] == 170000:
753
            raise util.IVLEError(404, 'The specified repository path does not exist')
754
        else:
755
            raise ActionError(str(e[0]))
1086 by chadnickbok
This commit fixes issue #10 and part of issue #9
756
            
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
757
758
# Table of all action functions #
759
# Each function has the interface f(req, fields).
760
761
actions_table = {
762
    "delete" : action_delete,
763
    "move" : action_move,
764
    "mkdir" : action_mkdir,
765
    "putfile" : action_putfile,
766
    "putfiles" : action_putfiles,
767
    "paste" : action_paste,
768
    "publish" : action_publish,
769
    "unpublish" : action_unpublish,
770
771
    "svnadd" : action_svnadd,
772
    "svnremove" : action_svnremove,
773
    "svnupdate" : action_svnupdate,
774
    "svnresolved" : action_svnresolved,
775
    "svnrevert" : action_svnrevert,
776
    "svnpublish" : action_svnpublish,
777
    "svnunpublish" : action_svnunpublish,
778
    "svncommit" : action_svncommit,
779
    "svncheckout" : action_svncheckout,
780
    "svnrepomkdir" : action_svnrepomkdir,
781
    "svnrepostat" : action_svnrepostat,
782
}