import rt 3.4.6
[freeside.git] / rt / lib / RT / URI / t.pm
1 # BEGIN LICENSE BLOCK
2
3 # Copyright (c) 1996-2003 Jesse Vincent <jesse@bestpractical.com>
4
5 # (Except where explictly superceded by other copyright notices)
6
7 # This work is made available to you under the terms of Version 2 of
8 # the GNU General Public License. A copy of that license should have
9 # been provided with this software, but in any event can be snarfed
10 # from www.gnu.org.
11
12 # This work is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # General Public License for more details.
16
17 # Unless otherwise specified, all modifications, corrections or
18 # extensions to this work which alter its source code become the
19 # property of Best Practical Solutions, LLC when submitted for
20 # inclusion in the work.
21
22
23 # END LICENSE BLOCK
24 package RT::URI::t;
25
26 use RT::Ticket;
27 use RT::URI::base;
28
29 use strict;
30 use vars qw(@ISA);
31 @ISA = qw/RT::URI::fsck_com_rt/;
32
33 my $scheme = "t";
34
35 =head2 ParseURI URI
36
37 When handed an t: URI, figures out if it is an RT ticket.  This is an
38 alternate short form of specifying a full ticket URI.
39
40 =begin testing
41
42 use_ok("RT::URI::t");
43 my $uri = RT::URI::t->new($RT::SystemUser);
44 ok(ref($uri), "URI object exists");
45
46 my $uristr = "t:1";
47 $uri->ParseURI($uristr);
48 is(ref($uri->Object), "RT::Ticket", "Object loaded is a ticket");
49 is($uri->Object->Id, 1, "Object loaded has correct ID");
50 is($uri->URI, 'fsck.com-rt://'.$RT::Organization.'/ticket/1',
51    "URI object has correct URI string");
52
53 =end testing
54
55 =cut
56
57 sub ParseURI { 
58     my $self = shift;
59     my $uri = shift;
60
61     # "t:<articlenum>"
62     # Pass this off to fsck_com_rt, which is equipped to deal with
63     # tickets after stripping off the t: prefix.
64
65     if ($uri =~ /^$scheme:(\d+)/) {
66         return $self->SUPER::ParseURI($1);
67     } else {
68         $self->{'uri'} = $uri;
69         return undef;
70     }
71 }
72
73 =head2 Scheme
74
75 Return the URI scheme 
76
77 =cut
78
79 sub Scheme {
80   return $scheme;
81 }
82
83 1;