Class: TwistedCaldav::Client

Inherits:
Object
  • Object
show all
Includes:
Icalendar
Defined in:
lib/twisted-caldav/client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ Client

Returns a new instance of Client.



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/twisted-caldav/client.rb', line 14

def initialize( data )
  unless data[:proxy_uri].nil?
    proxy_uri   = URI(data[:proxy_uri])
    @proxy_host = proxy_uri.host
    @proxy_port = proxy_uri.port.to_i
  end
  
  uri = URI(data[:uri])
  @host     = uri.host
  @port     = uri.port.to_i
  @url      = uri.path
  @user     = data[:user]
  @password = data[:password]
  @ssl      = uri.scheme == 'https'
  
  unless data[:authtype].nil?
  	@authtype = data[:authtype]
  	if @authtype == 'digest'
  	
  		@digest_auth = Net::HTTP::DigestAuth.new
  		@duri = URI.parse data[:uri]
  		@duri.user = @user
  		@duri.password = @password
  		
  	elsif @authtype == 'basic'
 	  # this is fine for us
 else
 	raise "Please use basic or digest"
 end
  else
  	@authtype = 'basic'
  end
end

Instance Attribute Details

#hostObject

Returns the value of attribute host.



4
5
6
# File 'lib/twisted-caldav/client.rb', line 4

def host
  @host
end

#passwordObject

Returns the value of attribute password.



4
5
6
# File 'lib/twisted-caldav/client.rb', line 4

def password
  @password
end

#portObject

Returns the value of attribute port.



4
5
6
# File 'lib/twisted-caldav/client.rb', line 4

def port
  @port
end

#sslObject

Returns the value of attribute ssl.



4
5
6
# File 'lib/twisted-caldav/client.rb', line 4

def ssl
  @ssl
end

#urlObject

Returns the value of attribute url.



4
5
6
# File 'lib/twisted-caldav/client.rb', line 4

def url
  @url
end

#userObject

Returns the value of attribute user.



4
5
6
# File 'lib/twisted-caldav/client.rb', line 4

def user
  @user
end

Instance Method Details

#__create_httpObject



48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/twisted-caldav/client.rb', line 48

def __create_http
  if @proxy_uri.nil?
    http = Net::HTTP.new(@host, @port)
  else
    http = Net::HTTP.new(@host, @port, @proxy_host, @proxy_port)
  end
  if @ssl
    http.use_ssl = @ssl
    http.verify_mode = OpenSSL::SSL::VERIFY_NONE
  end
  http
end

#add_alarm(tevent, altCal = "Calendar") ⇒ Object



193
194
195
# File 'lib/twisted-caldav/client.rb', line 193

def add_alarm tevent, altCal="Calendar"

end

#create_event(event) ⇒ Object

Raises:



144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# File 'lib/twisted-caldav/client.rb', line 144

def create_event event
  c = Calendar.new
  c.events = []
  uuid = UUID.new.generate
  raise DuplicateError if entry_with_uuid_exists?(uuid)
  c.event do
    uid           uuid 
    dtstart       DateTime.parse(event[:start])
    dtend         DateTime.parse(event[:end])
    categories    event[:categories]# Array
    contacts      event[:contacts] # Array
    attendees     event[:attendees]# Array
    duration      event[:duration]
    summary       event[:title]
    description   event[:description]
    klass         event[:accessibility] #PUBLIC, PRIVATE, CONFIDENTIAL
    location      event[:location]
    geo_location  event[:geo_location]
    status        event[:status]
    url           event[:url]
    rrule         event[:rrule]
  end
  cstring = c.to_ical
  res = nil
  http = Net::HTTP.new(@host, @port)
  __create_http.start { |http|
    req = Net::HTTP::Put.new("#{@url}/#{uuid}.ics")
    req['Content-Type'] = 'text/calendar'
    if not @authtype == 'digest'
    	req.basic_auth @user, @password
    else
    	req.add_field 'Authorization', digestauth('PUT')
    end
    req.body = cstring
    res = http.request( req )
  }
  errorhandling res
  find_event uuid
end

#create_todoObject

Raises:



217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
# File 'lib/twisted-caldav/client.rb', line 217

def create_todo todo
  c = Calendar.new
  uuid = UUID.new.generate
  raise DuplicateError if entry_with_uuid_exists?(uuid)
  c.todo do
    uid           uuid 
    start         DateTime.parse(todo[:start])
    duration      todo[:duration]
    summary       todo[:title]
    description   todo[:description]
    klass         todo[:accessibility] #PUBLIC, PRIVATE, CONFIDENTIAL
    location      todo[:location]
    percent       todo[:percent]
    priority      todo[:priority]
    url           todo[:url]
    geo           todo[:geo_location]
    status        todo[:status]
    rrule         todo[:rrule]
  end
  c.todo.uid = uuid
  cstring = c.to_ical
  res = nil
  http = Net::HTTP.new(@host, @port)
  __create_http.start { |http|
    req = Net::HTTP::Put.new("#{@url}/#{uuid}.ics")
    req['Content-Type'] = 'text/calendar'
    if not @authtype == 'digest'
    	req.basic_auth @user, @password
    else
    	req.add_field 'Authorization', digestauth('PUT')
    end
    req.body = cstring
    res = http.request( req )
  }
  errorhandling res
  find_todo uuid
end

#delete_event(uuid) ⇒ Object



124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# File 'lib/twisted-caldav/client.rb', line 124

def delete_event uuid
  res = nil
  __create_http.start {|http|
    req = Net::HTTP::Delete.new("#{@url}/#{uuid}.ics")
    if not @authtype == 'digest'
    	req.basic_auth @user, @password
    else
    	req.add_field 'Authorization', digestauth('DELETE')
    end
    res = http.request( req )
  }
  errorhandling res
  # accept any success code
  if res.code.to_i.between?(200,299)
    return true
  else
    return false
  end
end

#find_event(uuid) ⇒ Object



101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# File 'lib/twisted-caldav/client.rb', line 101

def find_event uuid
  res = nil
  __create_http.start {|http|
    req = Net::HTTP::Get.new("#{@url}/#{uuid}.ics")        
    if not @authtype == 'digest'
    	req.basic_auth @user, @password
    else
    	req.add_field 'Authorization', digestauth('GET')
    end
    res = http.request( req )
  }  
  errorhandling res
  begin
  	r = Icalendar.parse(res.body)
  rescue
  	return false
  else
  	r.first.events.first 
  end

  
end

#find_events(data) ⇒ Object



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# File 'lib/twisted-caldav/client.rb', line 61

def find_events data
  result = ""
  events = []
  res = nil
  __create_http.start {|http|
  	
    req = Net::HTTP::Report.new(@url, initheader = {'Content-Type'=>'application/xml'} )
    
		if not @authtype == 'digest'
			req.basic_auth @user, @password
		else
			req.add_field 'Authorization', digestauth('REPORT')
		end
  if data[:start].is_a? Integer
      req.body = TwistedCaldav::Request::ReportVEVENT.new(Time.at(data[:start]).utc.strftime("%Y%m%dT%H%M%S"), 
                                                    Time.at(data[:end]).utc.strftime("%Y%m%dT%H%M%S") ).to_xml
    else
      req.body = TwistedCaldav::Request::ReportVEVENT.new(Time.parse(data[:start]).utc.strftime("%Y%m%dT%H%M%S"), 
                                                    Time.parse(data[:end]).utc.strftime("%Y%m%dT%H%M%S") ).to_xml
    end
    res = http.request(req)
  } 
    errorhandling res
    result = ""
    #puts res.body
    xml = REXML::Document.new(res.body)
    REXML::XPath.each( xml, '//c:calendar-data/', {"c"=>"urn:ietf:params:xml:ns:caldav"} ){|c| result << c.text}
    r = Icalendar.parse(result)      
    unless r.empty?
      r.each do |calendar|
        calendar.events.each do |event|
          events << event
        end
      end
      events
    else
      return false
    end
end

#find_todo(uuid) ⇒ Object



197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
# File 'lib/twisted-caldav/client.rb', line 197

def find_todo uuid
  res = nil
  __create_http.start {|http|
    req = Net::HTTP::Get.new("#{@url}/#{uuid}.ics")
    if not @authtype == 'digest'
    	req.basic_auth @user, @password
    else
    	req.add_field 'Authorization', digestauth('GET')
    end
    res = http.request( req )
  }  
  errorhandling res
  r = Icalendar.parse(res.body)
  r.first.todos.first
end

#formatObject



10
11
12
# File 'lib/twisted-caldav/client.rb', line 10

def format
  @format ||= Format::Debug.new
end

#format=(fmt) ⇒ Object



6
7
8
# File 'lib/twisted-caldav/client.rb', line 6

def format=( fmt )
  @format = fmt
end

#update_event(event) ⇒ Object



184
185
186
187
188
189
190
191
# File 'lib/twisted-caldav/client.rb', line 184

def update_event event
  #TODO... fix me
  if delete_event event[:uid]
    create_event event
  else
    return false
  end
end