Class: AgCalDAV::Client

Inherits:
Object
  • Object
show all
Includes:
Icalendar
Defined in:
lib/agcaldav/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
# File 'lib/agcaldav/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'
end

Instance Attribute Details

#hostObject

Returns the value of attribute host.



4
5
6
# File 'lib/agcaldav/client.rb', line 4

def host
  @host
end

#passwordObject

Returns the value of attribute password.



4
5
6
# File 'lib/agcaldav/client.rb', line 4

def password
  @password
end

#portObject

Returns the value of attribute port.



4
5
6
# File 'lib/agcaldav/client.rb', line 4

def port
  @port
end

#sslObject

Returns the value of attribute ssl.



4
5
6
# File 'lib/agcaldav/client.rb', line 4

def ssl
  @ssl
end

#urlObject

Returns the value of attribute url.



4
5
6
# File 'lib/agcaldav/client.rb', line 4

def url
  @url
end

#userObject

Returns the value of attribute user.



4
5
6
# File 'lib/agcaldav/client.rb', line 4

def user
  @user
end

Instance Method Details

#__create_httpObject



29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/agcaldav/client.rb', line 29

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



146
147
148
# File 'lib/agcaldav/client.rb', line 146

def add_alarm tevent, altCal="Calendar"

end

#create_event(event) ⇒ Object

Raises:



103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# File 'lib/agcaldav/client.rb', line 103

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]
  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'
    req.basic_auth @user, @password
    req.body = cstring
    res = http.request( req )
  }
  errorhandling res
  find_event uuid
end

#create_todoObject

Raises:



174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
# File 'lib/agcaldav/client.rb', line 174

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]
  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'
    req.basic_auth @user, @password
    req.body = cstring
    res = http.request( req )
  }
  errorhandling res
  find_todo uuid
end

#delete_event(uuid) ⇒ Object



88
89
90
91
92
93
94
95
96
97
98
99
100
101
# File 'lib/agcaldav/client.rb', line 88

def delete_event uuid
  res = nil
  __create_http.start {|http|
    req = Net::HTTP::Delete.new("#{@url}/#{uuid}.ics")
    req.basic_auth @user, @password
    res = http.request( req )
  }
  errorhandling res
  if res.code.to_i == 200
    return true
  else
    return false
  end
end

#find_event(uuid) ⇒ Object



70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# File 'lib/agcaldav/client.rb', line 70

def find_event uuid
  res = nil
  __create_http.start {|http|
    req = Net::HTTP::Get.new("#{@url}/#{uuid}.ics")
    req.basic_auth @user, @password
    res = http.request( req )
  }  
  errorhandling res
  r = Icalendar.parse(res.body)
  unless r.empty?
    r.first.events.first 
  else
    return false
  end

  
end

#find_events(data) ⇒ Object



42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/agcaldav/client.rb', line 42

def find_events data
  result = ""
  events = []
  res = nil
  __create_http.start {|http|
    req = Net::HTTP::Report.new(@url, initheader = {'Content-Type'=>'application/xml'} )
    req.basic_auth @user, @password
    req.body = AgCalDAV::Request::ReportVEVENT.new(DateTime.parse(data[:start]).strftime("%Y%m%dT%H%M"), 
                                                   DateTime.parse(data[:end]).strftime("%Y%m%dT%H%M") ).to_xml
    res = http.request(req)
  } 
    errorhandling res
    result = ""
    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



158
159
160
161
162
163
164
165
166
167
168
# File 'lib/agcaldav/client.rb', line 158

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

#formatObject



10
11
12
# File 'lib/agcaldav/client.rb', line 10

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

#format=(fmt) ⇒ Object



6
7
8
# File 'lib/agcaldav/client.rb', line 6

def format=( fmt )
  @format = fmt
end

#update_event(event) ⇒ Object



137
138
139
140
141
142
143
144
# File 'lib/agcaldav/client.rb', line 137

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