/* SOGoContactEntryPhoto.m - this file is part of SOGo * * Copyright (C) 2010-2016 Inverse inc. * * This file is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This file 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #import #import #import #import #import #import "SOGoContactObject.h" #import "SOGoContactEntryPhoto.h" @implementation SOGoContactEntryPhoto - (NGVCardPhoto *) photo { return (NGVCardPhoto *) [[container vCard] firstChildWithTag: @"photo"]; } - (id) GETAction: (WOContext *) localContext { NGVCardPhoto *photo; NSString *uri; NSData *data; id response; photo = [self photo]; data = nil; uri = nil; if ([photo isInline]) data = [photo decodedContent]; 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; return response; } - (NSString *) davContentType { NGVCardPhoto *photo; NSString *type, *contentType; photo = [self photo]; if ([photo isInline]) { type = [[photo type] lowercaseString]; contentType = [NSString stringWithFormat: @"image/%@", type]; } else contentType = @"text/plain"; return contentType; } @end