From 50569114acdc64e7c7cae1498635d3f821517c30 Mon Sep 17 00:00:00 2001 From: Daniel Lange Date: Mon, 7 Mar 2016 15:53:16 +0100 Subject: Initial commit of the Faster IT roundcube_calendar plugin distribution This includes: * Kolab plugins 3.2.9 (calendar and libcalendaring) * CalDAV driver 3.2.8 * .htaccess files for at least some security * SabreDAV updated to 1.8.12 (Jan 2015 release) * Support for CURLOPT_SSL_* settings to allow self-signed certificates * Small fixes & improved documentation --- calendar/drivers/caldav/SQL/postgres.initial.sql | 51 ++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 calendar/drivers/caldav/SQL/postgres.initial.sql (limited to 'calendar/drivers/caldav/SQL/postgres.initial.sql') diff --git a/calendar/drivers/caldav/SQL/postgres.initial.sql b/calendar/drivers/caldav/SQL/postgres.initial.sql new file mode 100644 index 0000000..f49da4e --- /dev/null +++ b/calendar/drivers/caldav/SQL/postgres.initial.sql @@ -0,0 +1,51 @@ +/** + * CalDAV Client + * + * @version @package_version@ + * @author Hugo Slabbert + * + * Copyright (C) 2014, Hugo Slabbert + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +CREATE TYPE caldav_type AS ENUM ('vcal','vevent','vtodo',''); + +CREATE TABLE IF NOT EXISTS caldav_props ( + obj_id int NOT NULL, + obj_type caldav_type NOT NULL, + url varchar(255) NOT NULL, + tag varchar(255) DEFAULT NULL, + username varchar(255) DEFAULT NULL, + pass varchar(1024) DEFAULT NULL, + last_change timestamp without time zone DEFAULT now() NOT NULL, + PRIMARY KEY (obj_id, obj_type) +); + +CREATE OR REPLACE FUNCTION upd_timestamp() RETURNS TRIGGER +LANGUAGE plpgsql +AS +$$ +BEGIN + NEW.last_change = CURRENT_TIMESTAMP; + RETURN NEW; +END; +$$; + +CREATE TRIGGER update_timestamp + BEFORE INSERT OR UPDATE + ON caldav_props + FOR EACH ROW + EXECUTE PROCEDURE upd_timestamp(); + -- cgit v1.2.3