Class IcsReader
- java.lang.Object
-
- org.ametys.plugins.calendar.icsreader.IcsReader
-
- All Implemented Interfaces:
LogEnabled,Initializable,Component,Serviceable
public class IcsReader extends Object implements Serviceable, Component, Initializable, LogEnabled
Read a distant ICS file for a certain number of events in the future
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classIcsReader.IcsEventsObject wrapper for ics events
-
Constructor Summary
Constructors Constructor Description IcsReader()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected IcsReader.IcsEvents_getEventList(String url, EventsFilterHelper.DateRange dateRange, Long nbEvents, Long maxFileSize)Get a list of events from an ics file, without trying the cacheList<LocalVEvent>getEventDates(VEvent event, EventsFilterHelper.DateRange dateRange, Tag tag)Get a list ofLocalDatecovered by this eventIcsReader.IcsEventsgetEventList(String url, EventsFilterHelper.DateRange dateRange, Long nbEvents, Long maxFileSize)Get a list of events from an ics filevoidinitialize()voidservice(ServiceManager smanager)voidsetLogger(org.slf4j.Logger logger)Called at creation time to provide aLogger.
-
-
-
Constructor Detail
-
IcsReader
public IcsReader()
-
-
Method Detail
-
service
public void service(ServiceManager smanager) throws ServiceException
- Specified by:
servicein interfaceServiceable- Throws:
ServiceException
-
getEventList
public IcsReader.IcsEvents getEventList(String url, EventsFilterHelper.DateRange dateRange, Long nbEvents, Long maxFileSize)
Get a list of events from an ics file- Parameters:
url- url of the ics filedateRange- range of dates to fetchnbEvents- number of events to readmaxFileSize- max ics file size (in bytes)- Returns:
- a List of
VEvent
-
_getEventList
protected IcsReader.IcsEvents _getEventList(String url, EventsFilterHelper.DateRange dateRange, Long nbEvents, Long maxFileSize)
Get a list of events from an ics file, without trying the cache- Parameters:
url- url of the ics filedateRange- range of dates to fetchnbEvents- number of events to readmaxFileSize- max ics file size (in bytes)- Returns:
- a List of
VEvent
-
initialize
public void initialize() throws Exception
- Specified by:
initializein interfaceInitializable- Throws:
Exception
-
getEventDates
public List<LocalVEvent> getEventDates(VEvent event, EventsFilterHelper.DateRange dateRange, Tag tag)
Get a list ofLocalDatecovered by this event- Parameters:
event- the event to testdateRange- the dates to check, can be null but this will return nulltag- the tag used for this ICS- Returns:
- a list of
LocalDatefor the days in which this event appears, or null if nothing matches
-
setLogger
public void setLogger(org.slf4j.Logger logger)
Description copied from interface:LogEnabledCalled at creation time to provide aLogger.- Specified by:
setLoggerin interfaceLogEnabled- Parameters:
logger- aLoggerfor messages.
-
-