diff --git a/.htaccess b/.htaccess
new file mode 100644
index 0000000..53cac3b
--- /dev/null
+++ b/.htaccess
@@ -0,0 +1,4 @@
+
+RewriteEngine on
+RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
+
\ No newline at end of file
diff --git a/ics.php b/ics.php
index 10e5c96..0c8e833 100644
--- a/ics.php
+++ b/ics.php
@@ -1,78 +1,94 @@
-
-
+Access denied.');
+ }
+
+ /*function ics2json($input)
+ {
+ $id = 0;
+ $root = array();
+ $curr = root;
+ input.split("\r\n").forEach(l =>
+ {
+ var key = l.split(":")[0].split(";")[0];
+ var val = l.split(":")[1];
+ if (key == "BEGIN")
+ {
+ if (curr[val])
+ {
+ val += "_" + (id++);
+ }
+ curr[val] = {
+ parent: curr
+ };
+ curr = curr[val];
+ }
+ else if (key == "END")
+ {
+ var parent = curr.parent;
+ delete curr.parent;
+ curr = parent;
+ }
+ else
+ {
+ curr[key] = key.startsWith("DT") ? dt(val) : val;
+ }
+
+ });
+
+ root.VCALENDAR.VEVENTS = [];
+ Object.keys(root.VCALENDAR)
+ .filter(k => (k == "VEVENT" || k.startsWith("VEVENT_")))
+ .forEach(k =>
+ {
+ root.VCALENDAR.VEVENTS.push(root.VCALENDAR[k]);
+ delete root.VCALENDAR[k];
+ });
+
+ return root.VCALENDAR;
+ }*/
+
+ // Get ics file
+ $curl = curl_init();
+ curl_setopt($curl, CURLOPT_URL, $url);
+ curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
+ curl_setopt($curl, CURLOPT_USERPWD, $user . ':' . $password);
+ curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
+ $result = curl_exec($curl);
+
+ if (!$result)
+ {
+ die('Error while getting ics file from caldav server.