File: RSSLinks.m

package info (click to toggle)
rsskit 0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 656 kB
  • ctags: 572
  • sloc: objc: 2,041; makefile: 48; sh: 4
file content (169 lines) | stat: -rw-r--r-- 4,054 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/*  -*-objc-*-
 *
 *  GNUstep RSS Kit
 *  Copyright (C) 2006 Guenther Noack
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation, in version 2.1
 *  of the License
 * 
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#import "RSSLinks.h"
#import "GNUstep.h"

@implementation RSSLink
+(id) linkWithString: (NSString*) aURLString
	      andRel: (NSString*) aRelation
	     andType: (NSString*) aType
{
  id result = nil;
  
  if (aRelation == nil || // nil defaults to "related"
      [aRelation isEqualToString: @"related"]) {
    result = [RSSRelatedLink relatedLinkWithString: aURLString
			     andType: aType];
  } else if ([aRelation isEqualToString: @"alternate"]) {
    result = [RSSAlternativeLink alternativeLinkWithString: aURLString
				 andType: aType];
  } else if ([aRelation isEqualToString: @"enclosure"]) {
    result = [RSSEnclosureLink enclosureLinkWithString: aURLString
			       andType: aType];
  } else if ([aRelation isEqualToString: @"via"]) {
    result = [RSSViaLink viaLinkWithString: aURLString
			 andType: aType];
  } else if ([aRelation isEqualToString: @"self"]) {
    result = nil; // self relation not supported yet! FIXME
  }
  
  return result;
}


-(id) initWithString: (NSString*) aURLString
{
  return [self initWithString: aURLString
	       andType: nil];
}

-(id) initWithString: (NSString*) aURLString
	     andType: (NSString*) aType
{
  if ([self isMemberOfClass: [RSSLink class]]) {
    [self release];
    [NSException
      raise: @"Abstract Class Instantiation"
      format: @"Abstract class %@ cannot be instantiated directly!",
      [isa class]];
  }
  
  if ((self = [super initWithString: aURLString]) != nil) {
    ASSIGN(_type, aType);
  }
  
  return self;
}

-(NSString*) relationType
{
#ifdef GNUSTEP
  [self subclassResponsibility: _cmd];
#endif
  return nil;
}

-(NSString*) fileType
{
  return [[_type retain] autorelease];
}

@end

@implementation RSSAlternativeLink
+(id) alternativeLinkWithString: (NSString*) aURLString
{
  return [self alternativeLinkWithString: aURLString
	       andType: nil];
}

+(id) alternativeLinkWithString: (NSString*) aURLString
			andType: (NSString*) aType
{
  return AUTORELEASE([[self alloc] initWithString: aURLString
		       andType: aType]);
}

-(NSString*) relationType
{
  return @"alternate";
}
@end

@implementation RSSEnclosureLink
+(id) enclosureLinkWithString: (NSString*) aURLString
{
  return [self enclosureLinkWithString: aURLString
	       andType: nil];
}

+(id) enclosureLinkWithString: (NSString*) aURLString
		      andType: (NSString*) aType;
{
  return AUTORELEASE([[self alloc] initWithString: aURLString
		       andType: aType]);
}

-(NSString*) relationType
{
  return @"enclosure";
}
@end

@implementation RSSRelatedLink
+(id) relatedLinkWithString: (NSString*) aURLString
{
  return [self relatedLinkWithString: aURLString
	       andType: nil];
}

+(id) relatedLinkWithString: (NSString*) aURLString
		    andType: (NSString*) aType
{
  return AUTORELEASE([[self alloc] initWithString: aURLString
		       andType: aType]);
}

-(NSString*) relationType
{
  return @"related";
}
@end

@implementation RSSViaLink
+(id) viaLinkWithString: (NSString*) aURLString
{
  return [self viaLinkWithString: aURLString
	       andType: nil];
}

+(id) viaLinkWithString: (NSString*) aURLString
		andType: (NSString*) aType
{
  return AUTORELEASE([[self alloc] initWithString: aURLString
		       andType: aType]);
}

-(NSString*) relationType
{
  return @"via";
}
@end