diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-06-30 15:17:29 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-06-30 15:17:29 +0200 |
commit | 390f5cc89fc956b021c0566534ca969ed0377f11 (patch) | |
tree | a2ee18958144b77d86e0a1278d67bef341bfa2f4 /apps/calendar/lib | |
parent | 433d15d309b0bade290f028b1365eff77f8dd0a8 (diff) | |
download | nextcloud-server-390f5cc89fc956b021c0566534ca969ed0377f11.tar.gz nextcloud-server-390f5cc89fc956b021c0566534ca969ed0377f11.zip |
some work on (drop)import)
Diffstat (limited to 'apps/calendar/lib')
-rw-r--r-- | apps/calendar/lib/calendar.php | 16 | ||||
-rw-r--r-- | apps/calendar/lib/import.php | 69 |
2 files changed, 73 insertions, 12 deletions
diff --git a/apps/calendar/lib/calendar.php b/apps/calendar/lib/calendar.php index 5274397c763..c73e11224d3 100644 --- a/apps/calendar/lib/calendar.php +++ b/apps/calendar/lib/calendar.php @@ -271,4 +271,20 @@ class OC_Calendar_Calendar{ 'cache' => true, ); } + + /* + * @brief checks if a calendar name is available for a user + * @param string $calendarname + * @param string $userid + * @return boolean + */ + public static function isCalendarNameavailable($calendarname, $userid){ + $calendars = self::allCalendars($userid); + foreach($calendars as $calendar){ + if($calendar['displayname'] == $calendarname){ + return false; + } + } + return true; + } } diff --git a/apps/calendar/lib/import.php b/apps/calendar/lib/import.php index 864fc02fdf5..d23a55a6209 100644 --- a/apps/calendar/lib/import.php +++ b/apps/calendar/lib/import.php @@ -30,6 +30,11 @@ class OC_Calendar_Import{ private $ical; /* + * @brief calendar id for import + */ + private $id; + + /* * @brief var saves the percentage of the import's progress */ private $progress; @@ -64,7 +69,7 @@ class OC_Calendar_Import{ /* * @brief imports a calendar - * @param string $force force import even though calendar is not valid + * @param boolean $force force import even though calendar is not valid * @return boolean */ public function import($force = false){ @@ -76,7 +81,10 @@ class OC_Calendar_Import{ continue; } + + } + return true; } /* @@ -124,6 +132,43 @@ class OC_Calendar_Import{ $this->cacheprogress = false; return false; } + + /* + * @brief generates a new calendar name + * @param string $userid + * @return string + */ + public function createCalendarName($userid){ + $calendars = OC_Calendar_Calendar::allCalendars($userid); + $calendarname = $guessedcalendarname = !is_null($this->guessCalendarName())?($this->guessCalendarName()):(OC_Calendar_App::$l10n->t('New Calendar')); + $i = 1; + while(!OC_Calendar_Calendar::isCalendarNameavailable($calendarname, $userid)){ + $calendarname = $guessedcalendarname . ' (' . $i . ')'; + $i++; + } + return $calendarname; + } + + /* + * @brief generates a new calendar color + * @return string + */ + public function createCalendarColor($userid){ + if(is_null($this->guessCalendarColor()))){ + return '#9fc6e7'; + } + return $this->guessCalendarColor(); + } + + /* + * @brief sets the id for the calendar + * @param integer $id of the calendar + * @return boolean + */ + public static function setCalendarID($id){ + $this->id = $id; + return true: + } /* * private methods @@ -165,52 +210,52 @@ class OC_Calendar_Import{ * @brief * @return */ - private function (){ + //private function (){ - } + //} /* * @brief * @return */ - private function (){ + //private function (){ - } + //} /* - * public methods for prerendering of X-... Attributes + * private methods for prerendering of X-... Attributes */ /* * @brief guesses the calendar color * @return mixed - string or boolean */ - public function guessCalendarColor(){ + private function guessCalendarColor(){ if(!is_null($this->calobject->__get('X-APPLE-CALENDAR-COLOR'))){ return $this->calobject->__get('X-APPLE-CALENDAR-COLOR'); } - return false; + return null; } /* * @brief guesses the calendar description * @return mixed - string or boolean */ - public function guessCalendarDescription(){ + private function guessCalendarDescription(){ if(!is_null($this->calobject->__get('X-WR-CALDESC'))){ return $this->calobject->__get('X-WR-CALDESC'); } - return false; + return null; } /* * @brief guesses the calendar name * @return mixed - string or boolean */ - public function guessCalendarName(){ + private function guessCalendarName(){ if(!is_null($this->calobject->__get('X-WR-CALNAME'))){ return $this->calobject->__get('X-WR-CALNAME'); } - return false; + return null; } } |