mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-11 00:08:51 +00:00
Monotone-Parent: e55b054800d7d89a5aad8e5477bfe9625f49efa5
Monotone-Revision: 4f0272f926f26c8a39d7b00154a9b6dd2d17a27a Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-06-19T17:55:53 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
2007-06-19 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* UI/Scheduler/UIxAppointmentView.[hm]: removed unused module.
|
||||
|
||||
* SoObjects/SOGo/WOContext+Agenor.[hm]: removed unused module.
|
||||
|
||||
2007-06-14 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
@@ -1,40 +0,0 @@
|
||||
// $Id: UIxAppointmentView.h 1045 2007-04-11 20:13:07Z wolfgang $
|
||||
|
||||
#ifndef __SOGo_UIxAppointmentView_H__
|
||||
#define __SOGo_UIxAppointmentView_H__
|
||||
|
||||
#include <SOGoUI/UIxComponent.h>
|
||||
|
||||
@class NSCalendarDate;
|
||||
@class iCalEvent;
|
||||
@class iCalPerson;
|
||||
@class SOGoDateFormatter;
|
||||
|
||||
@interface UIxAppointmentView : UIxComponent
|
||||
{
|
||||
iCalEvent* appointment;
|
||||
iCalPerson* attendee;
|
||||
SOGoDateFormatter *dateFormatter;
|
||||
id item;
|
||||
}
|
||||
|
||||
- (iCalEvent *) appointment;
|
||||
|
||||
/* permissions */
|
||||
- (BOOL) canAccessApt;
|
||||
- (BOOL) canEditApt;
|
||||
|
||||
- (SOGoDateFormatter *) dateFormatter;
|
||||
- (NSCalendarDate *) startTime;
|
||||
- (NSCalendarDate *) endTime;
|
||||
|
||||
- (NSString *) attributesTabLink;
|
||||
- (NSString *) participantsTabLink;
|
||||
|
||||
- (NSString *) completeHrefForMethod: (NSString *) _method
|
||||
withParameter: (NSString *) _param
|
||||
forKey: (NSString *) _key;
|
||||
|
||||
@end
|
||||
|
||||
#endif /* __SOGo_UIxAppointmentView_H__ */
|
||||
@@ -1,292 +0,0 @@
|
||||
/*
|
||||
Copyright (C) 2004-2005 SKYRIX Software AG
|
||||
|
||||
This file is part of OpenGroupware.org.
|
||||
|
||||
OGo 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; either version 2, or (at your option) any
|
||||
later version.
|
||||
|
||||
OGo 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 OGo; see the file COPYING. If not, write to the
|
||||
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
|
||||
02111-1307, USA.
|
||||
*/
|
||||
|
||||
#import "UIxAppointmentView.h"
|
||||
#import <NGCards/NGCards.h>
|
||||
#import <SOGo/WOContext+Agenor.h>
|
||||
#import <SOGo/SOGoUser.h>
|
||||
#import <Appointments/SOGoAppointmentObject.h>
|
||||
#import <SOGoUI/SOGoDateFormatter.h>
|
||||
#import "UIxComponent+Scheduler.h"
|
||||
#import "common.h"
|
||||
|
||||
@interface UIxAppointmentView (PrivateAPI)
|
||||
- (BOOL)isAttendeeActiveUser;
|
||||
@end
|
||||
|
||||
@implementation UIxAppointmentView
|
||||
|
||||
- (void)dealloc {
|
||||
[appointment release];
|
||||
[attendee release];
|
||||
[dateFormatter release];
|
||||
[item release];
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
/* accessors */
|
||||
|
||||
- (NSString *)tabSelection {
|
||||
NSString *selection;
|
||||
|
||||
selection = [self queryParameterForKey:@"tab"];
|
||||
if (selection == nil)
|
||||
selection = @"attributes";
|
||||
return selection;
|
||||
}
|
||||
|
||||
- (void)setAttendee:(id)_attendee {
|
||||
ASSIGN(attendee, _attendee);
|
||||
}
|
||||
- (id)attendee {
|
||||
return attendee;
|
||||
}
|
||||
|
||||
- (BOOL)isAttendeeActiveUser {
|
||||
NSString *email, *attEmail;
|
||||
|
||||
email = [[[self context] activeUser] primaryEmail];
|
||||
attendee = [self attendee];
|
||||
attEmail = [attendee rfc822Email];
|
||||
|
||||
return [email isEqualToString: attEmail];
|
||||
}
|
||||
|
||||
- (BOOL)showAcceptButton {
|
||||
return [[self attendee] participationStatus] != iCalPersonPartStatAccepted;
|
||||
}
|
||||
- (BOOL)showRejectButton {
|
||||
return [[self attendee] participationStatus] != iCalPersonPartStatDeclined;
|
||||
}
|
||||
- (NSString *)attendeeStatusColspan {
|
||||
return [self isAttendeeActiveUser] ? @"1" : @"2";
|
||||
}
|
||||
|
||||
- (void)setItem:(id)_item {
|
||||
ASSIGN(item, _item);
|
||||
}
|
||||
- (id)item {
|
||||
return item;
|
||||
}
|
||||
|
||||
- (SOGoDateFormatter *)dateFormatter {
|
||||
if (dateFormatter == nil) {
|
||||
dateFormatter =
|
||||
[[SOGoDateFormatter alloc] initWithLocale:[self locale]];
|
||||
[dateFormatter setFullWeekdayNameAndDetails];
|
||||
}
|
||||
return dateFormatter;
|
||||
}
|
||||
|
||||
- (NSCalendarDate *)startTime {
|
||||
NSCalendarDate *date;
|
||||
NSTimeZone *timeZone;
|
||||
|
||||
timeZone = [[context activeUser] timeZone];
|
||||
date = [[self appointment] startDate];
|
||||
[date setTimeZone: timeZone];
|
||||
|
||||
return date;
|
||||
}
|
||||
|
||||
- (NSCalendarDate *)endTime {
|
||||
NSCalendarDate *date;
|
||||
NSTimeZone *timeZone;
|
||||
|
||||
timeZone = [[context activeUser] timeZone];
|
||||
date = [[self appointment] endDate];
|
||||
[date setTimeZone: timeZone];
|
||||
|
||||
return date;
|
||||
}
|
||||
|
||||
- (NSString *)resourcesAsString {
|
||||
NSArray *resources, *cns;
|
||||
|
||||
resources = [[self appointment] resources];
|
||||
cns = [resources valueForKey:@"cnForDisplay"];
|
||||
return [cns componentsJoinedByString:@"<br />"];
|
||||
}
|
||||
|
||||
- (NSString *) categoriesAsString
|
||||
{
|
||||
NSEnumerator *categories;
|
||||
NSArray *rawCategories;
|
||||
NSMutableArray *l10nCategories;
|
||||
NSString *currentCategory, *l10nCategory;
|
||||
|
||||
rawCategories
|
||||
= [[appointment categories] componentsSeparatedByString: @","];
|
||||
l10nCategories = [NSMutableArray arrayWithCapacity: [rawCategories count]];
|
||||
categories = [rawCategories objectEnumerator];
|
||||
currentCategory = [categories nextObject];
|
||||
while (currentCategory)
|
||||
{
|
||||
l10nCategory
|
||||
= [self labelForKey: [currentCategory stringByTrimmingSpaces]];
|
||||
if (l10nCategory)
|
||||
[l10nCategories addObject: l10nCategory];
|
||||
currentCategory = [categories nextObject];
|
||||
}
|
||||
|
||||
return [l10nCategories componentsJoinedByString: @", "];
|
||||
}
|
||||
|
||||
// appointment.organizer.cnForDisplay
|
||||
- (NSString *) eventOrganizer
|
||||
{
|
||||
CardElement *organizer;
|
||||
|
||||
organizer = [[self appointment] uniqueChildWithTag: @"organizer"];
|
||||
|
||||
return [organizer value: 0 ofAttribute: @"cn"];
|
||||
}
|
||||
|
||||
- (NSString *) priorityLabelKey
|
||||
{
|
||||
return [NSString stringWithFormat: @"prio_%@", [appointment priority]];
|
||||
}
|
||||
|
||||
/* backend */
|
||||
|
||||
- (iCalEvent *) appointment
|
||||
{
|
||||
SOGoAppointmentObject *clientObject;
|
||||
|
||||
if (!appointment)
|
||||
{
|
||||
clientObject = [self clientObject];
|
||||
appointment = (iCalEvent *) [clientObject component: NO];
|
||||
[appointment retain];
|
||||
}
|
||||
|
||||
return appointment;
|
||||
}
|
||||
|
||||
/* hrefs */
|
||||
|
||||
- (NSString *)attributesTabLink {
|
||||
return [self completeHrefForMethod:[self ownMethodName]
|
||||
withParameter:@"attributes"
|
||||
forKey:@"tab"];
|
||||
}
|
||||
|
||||
- (NSString *)participantsTabLink {
|
||||
return [self completeHrefForMethod:[self ownMethodName]
|
||||
withParameter:@"participants"
|
||||
forKey:@"tab"];
|
||||
}
|
||||
|
||||
- (NSString *)debugTabLink {
|
||||
return [self completeHrefForMethod:[self ownMethodName]
|
||||
withParameter:@"debug"
|
||||
forKey:@"tab"];
|
||||
}
|
||||
|
||||
- (NSString *)completeHrefForMethod:(NSString *)_method
|
||||
withParameter:(NSString *)_param
|
||||
forKey:(NSString *)_key
|
||||
{
|
||||
NSString *href;
|
||||
|
||||
[self setQueryParameter:_param forKey:_key];
|
||||
href = [self completeHrefForMethod:[self ownMethodName]];
|
||||
[self setQueryParameter:nil forKey:_key];
|
||||
return href;
|
||||
}
|
||||
|
||||
|
||||
/* access */
|
||||
|
||||
- (BOOL)isMyApt {
|
||||
NSString *email;
|
||||
iCalPerson *organizer;
|
||||
|
||||
email = [[[self context] activeUser] primaryEmail];
|
||||
organizer = [[self appointment] organizer];
|
||||
if (!organizer) return YES; // assume this is correct to do, right?
|
||||
return [[organizer rfc822Email] isEqualToString:email];
|
||||
}
|
||||
|
||||
- (BOOL)canAccessApt {
|
||||
NSString *email;
|
||||
NSArray *partMails;
|
||||
|
||||
if ([self isMyApt])
|
||||
return YES;
|
||||
|
||||
/* not my apt - can access if it's public */
|
||||
if ([[[self appointment] accessClass] isEqualToString: @"PUBLIC"])
|
||||
return YES;
|
||||
|
||||
/* can access it if I'm invited :-) */
|
||||
email = [[[self context] activeUser] primaryEmail];
|
||||
partMails = [[[self appointment] participants] valueForKey:@"rfc822Email"];
|
||||
return [partMails containsObject:email];
|
||||
}
|
||||
|
||||
- (BOOL)canEditApt {
|
||||
return [self isMyApt];
|
||||
}
|
||||
|
||||
|
||||
/* action */
|
||||
|
||||
- (id<WOActionResults>)defaultAction {
|
||||
if ([self appointment] == nil) {
|
||||
return [NSException exceptionWithHTTPStatus:404 /* Not Found */
|
||||
reason:@"could not locate appointment"];
|
||||
}
|
||||
|
||||
return self;
|
||||
}
|
||||
|
||||
- (BOOL)isDeletableClientObject {
|
||||
return [[self clientObject] respondsToSelector:@selector(delete)];
|
||||
}
|
||||
|
||||
- (id)deleteAction {
|
||||
NSException *ex;
|
||||
id url;
|
||||
|
||||
if ([self appointment] == nil) {
|
||||
return [NSException exceptionWithHTTPStatus:404 /* Not Found */
|
||||
reason:@"could not locate appointment"];
|
||||
}
|
||||
|
||||
if (![self isDeletableClientObject]) {
|
||||
/* return 400 == Bad Request */
|
||||
return [NSException exceptionWithHTTPStatus:400
|
||||
reason:@"method cannot be invoked on "
|
||||
@"the specified object"];
|
||||
}
|
||||
|
||||
if ((ex = [[self clientObject] delete]) != nil) {
|
||||
// TODO: improve error handling
|
||||
[self debugWithFormat:@"failed to delete: %@", ex];
|
||||
return ex;
|
||||
}
|
||||
|
||||
url = [[[self clientObject] container] baseURLInContext:[self context]];
|
||||
return [self redirectToLocation:url];
|
||||
}
|
||||
|
||||
@end /* UIxAppointmentView */
|
||||
Reference in New Issue
Block a user