aboutsummaryrefslogtreecommitdiffstats
path: root/lib/caldav
diff options
context:
space:
mode:
authorJames Lal <james@lightsofapollo.com>2012-07-06 14:10:11 -0700
committerJames Lal <james@lightsofapollo.com>2012-07-06 14:10:11 -0700
commit7f30ad85d5415e8fb3bbbf729ac090d453205372 (patch)
treed51ccc995aa1ad6a80df03a644bf9922bdaea289 /lib/caldav
parente6fab580162a1cae2165ef88e254df284e6c7208 (diff)
downloadjsCalDAV-7f30ad85d5415e8fb3bbbf729ac090d453205372.tar.gz
Adding connection
Diffstat (limited to 'lib/caldav')
-rw-r--r--lib/caldav/caldav.js1
-rw-r--r--lib/caldav/connection.js99
-rw-r--r--lib/caldav/index.js1
3 files changed, 101 insertions, 0 deletions
diff --git a/lib/caldav/caldav.js b/lib/caldav/caldav.js
index 065b815..f0afe0a 100644
--- a/lib/caldav/caldav.js
+++ b/lib/caldav/caldav.js
@@ -42,6 +42,7 @@
* Maps exports to a file path.
*/
set exports(val) {
+ console.log(paths);
return paths[this.path] = val;
},
diff --git a/lib/caldav/connection.js b/lib/caldav/connection.js
new file mode 100644
index 0000000..953d405
--- /dev/null
+++ b/lib/caldav/connection.js
@@ -0,0 +1,99 @@
+(function(module, ns) {
+
+ var XHR = ns.require('xhr');
+
+ /**
+ * Connection objects contain
+ * general information to be reused
+ * across XHR requests.
+ *
+ * Also handles normalization of path details.
+ */
+ function Connection(options) {
+ if (typeof(options) === 'undefined') {
+ options = {};
+ }
+
+ var key;
+
+ for (key in options) {
+ if (options.hasOwnProperty(key)) {
+ this[key] = options[key];
+ }
+ }
+
+ var domain = options.domain;
+
+ if (domain) {
+ if (domain.substr(-1) === '/') {
+ this.domain = domain.substr(0, domain.length - 1);
+ }
+ }
+
+ }
+
+ Connection.prototype = {
+ /**
+ * Default username for requests.
+ */
+ user: '',
+
+ /**
+ * Default passwords for requests.
+ */
+ password: '',
+
+ /**
+ * Default domain for requests.
+ */
+ domain: '',
+
+ /**
+ * Creates new XHR request based on default
+ * options for connection.
+ *
+ * @return {Caldav.Xhr} http request set with default options.
+ */
+ request: function(options) {
+ if (typeof(options) === 'undefined') {
+ options = {};
+ }
+
+ var copy = {};
+ var key;
+ // copy options
+
+ for (key in options) {
+ copy[key] = options[key];
+ }
+
+ if (!copy.user) {
+ copy.user = this.user;
+ }
+
+ if (!copy.password) {
+ copy.password = this.password;
+ }
+
+ if (copy.url && copy.url.indexOf('http') !== 0) {
+ var url = copy.url;
+ if (url.substr(0, 1) !== '/') {
+ url = '/' + url;
+ }
+ copy.url = this.domain + url;
+ }
+
+ return new XHR(copy);
+ }
+
+ };
+
+ console.log('!HIT!!');
+ module.exports = Connection;
+
+}.apply(
+ this,
+ (this.Caldav) ?
+ [Caldav('connection'), Caldav] :
+ [module, require('./caldav')]
+));
diff --git a/lib/caldav/index.js b/lib/caldav/index.js
index b54a9ac..df7dfa5 100644
--- a/lib/caldav/index.js
+++ b/lib/caldav/index.js
@@ -9,6 +9,7 @@
exports.Xhr = ns.require('xhr');
exports.Request = ns.require('request');
exports.Templates = ns.require('templates');
+ exports.Connection = ns.require('connection');
}.apply(
this,