/* Copyright (C) 2000-2003 SKYRIX Software AG This file is part of OGo 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. */ // $Id$ #include #include "common.h" #include #include #include @interface SkyNews : LSWContentPage { @protected EOArrayDataSource *dataSource; NSString *tabKey; NSDictionary *selectedAttribute; unsigned startIndex; id article; BOOL isDescending; BOOL isAccountNewsEditor; BOOL fetchArticles; NSString *sortedKey; } @end @interface SkyNews(PrivateMethods) - (id)tabClicked; @end @implementation SkyNews static NGMimeType *eoNewsType = nil; + (void)initialize { if (eoNewsType == nil) eoNewsType = [[NGMimeType mimeType:@"eo" subType:@"newsarticle"] retain]; } - (id)init { id p; /* this component is a session-singleton */ if ((p = [self persistentInstance])) { RELEASE(self); return RETAIN(p); } if ((self = [super init])) { [self registerAsPersistentInstance]; [self tabClicked]; [self registerForNotificationNamed:LSWNewNewsArticleNotificationName]; [self registerForNotificationNamed:LSWUpdatedNewsArticleNotificationName]; [self registerForNotificationNamed:LSWDeletedNewsArticleNotificationName]; self->sortedKey = [@"name" retain]; self->dataSource = [[EOArrayDataSource alloc] init]; } return self; } - (void)dealloc { [self unregisterAsObserver]; [self->dataSource release]; [self->article release]; [self->tabKey release]; [self->sortedKey release]; [super dealloc]; } /* operations */ - (void)_fetchArticles { NSArray *a = nil; a = [self runCommand:@"newsarticle::get", @"returnType", intObj(LSDBReturnType_ManyObjects), nil]; [self->dataSource setArray:a]; } - (void)syncAwake { [super syncAwake]; if (!self->fetchArticles) return; [self _fetchArticles]; self->fetchArticles = NO; } - (id)tabClicked { NSArray *teams = nil; id acnt = nil; int i, cnt; if ([self->tabKey isEqualToString:@"editors"]) { self->startIndex = 0; [self _fetchArticles]; return nil; } if ([[self session] activeAccountIsRoot]) { self->isAccountNewsEditor = YES; return nil; } acnt = [[self session] activeAccount]; teams = [self runCommand:@"account::teams", @"account", acnt, @"returnType", intObj(LSDBReturnType_ManyObjects), nil]; for (i = 0, cnt = [teams count]; i < cnt; i++) { id team = [teams objectAtIndex:i]; if ([[team valueForKey:@"login"] isEqualToString:@"newseditors"]) { self->isAccountNewsEditor = YES; break; } } return nil; } /* accessors */ - (void)setSortedKey:(NSString *)_key { ASSIGNCOPY(self->sortedKey, _key); } - (NSString *)sortedKey { return self->sortedKey; } - (void)setTabKey:(NSString *)_tabKey { ASSIGNCOPY(self->tabKey, _tabKey); } - (NSString *)tabKey { return self->tabKey; } - (void)setStart:(unsigned)_startIndex { self->startIndex = _startIndex; } - (unsigned)start { return self->startIndex; } - (void)setIsDescending:(BOOL)_isDescending { self->isDescending = _isDescending; } - (BOOL)isDescending { return self->isDescending; } - (void)setSelectedAttribute:(NSDictionary *)_selectedAttribute { self->selectedAttribute = _selectedAttribute; } - (NSDictionary *)selectedAttribute { return self->selectedAttribute; } - (void)setArticle:(id)_article { ASSIGN(self->article, _article); } - (id)article { return self->article; } - (BOOL)isAccountNewsEditor { return self->isAccountNewsEditor; } - (NSString *)isIndexArticle { NSString *s; s = [[[self article] valueForKey:@"isIndexArticle"] stringValue]; return [[self labels] valueForKey:s]; } - (id)dataSource { return self->dataSource; } /* actions */ - (id)refresh { [self _fetchArticles]; return nil; } - (id)viewNewsArticle { return [self activateObject:self->article withVerb:@"view"]; } - (id)newNewsArticle { WOComponent *ct; ct = [[self session] instantiateComponentForCommand:@"new" type:eoNewsType]; return ct; } - (void)noteChange:(NSString *)_cn onObject:(id)_object { [super noteChange:_cn onObject:_object]; self->startIndex = 0; self->fetchArticles = YES; } @end /* SkyNews */