Skip to content

Commit

Permalink
(fix) handle URI in vCard photos (fixes #2683)
Browse files Browse the repository at this point in the history
  • Loading branch information
extrafu committed Dec 29, 2016
1 parent 6cd3d90 commit 239dffa
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions SoObjects/Contacts/SOGoContactEntryPhoto.m
Expand Up @@ -40,25 +40,34 @@ - (NGVCardPhoto *) photo
- (id) GETAction: (WOContext *) localContext
{
NGVCardPhoto *photo;
NSData *data;
NSString *uri;
NSData *data;
id response;

photo = [self photo];
data = nil;
uri = nil;

if ([photo isInline])
data = [photo decodedContent];
else
data = [[photo flattenedValuesForKey: @""]
dataUsingEncoding: NSISOLatin1StringEncoding];
else if ([[photo value: 0 ofAttribute: @"value"] isEqualToString: @"uri"])
uri = [photo flattenedValuesForKey: @""];

if (data)
{
response = [localContext response];

[response setHeader: [self davContentType] forKey: @"content-type"];
[response setHeader: [NSString stringWithFormat:@" %d",
(int)[data length]]
forKey: @"content-length"];
[response setContent: data];
}
else if (uri)
{
response = [localContext response];
[response setStatus: 302];
[response setHeader: uri forKey: @"location"];
}
else
response = nil;

Expand Down

0 comments on commit 239dffa

Please sign in to comment.