My favorites | Sign in
Google
                
1
2
3
4
5
6
7
8
9
10
11
12
13
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Copyright (C) 2009 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

class ContactsController < ApplicationController
before_filter :setup_client

CONTACTS_FEED = CONTACTS_SCOPE + 'contacts/default/full/'

def all
if !request.xhr?
redirect_to :controller => 'doclist', :action => 'documents' and return
end

feed = @client.get(CONTACTS_FEED +
"?max-results=#{MAX_CONTACTS_RESULTS.to_s}").to_xml

@contacts = []
feed.elements.each('entry') do |entry|
contact = GContact::Contact.new(entry.elements['title'].text, nil,
entry.to_s)
entry.elements.each('gd:email') do |email|
if email.attribute('primary')
contact.email = email.attribute('address').value
end
end
@contacts.push(contact)
end
@acl_feedlink = params[:acl_feedlink]
end

def my_contacts
if !request.xhr?
redirect_to :controller => 'doclist', :action => 'documents' and return
end

groups_feed = @client.get(CONTACTS_SCOPE + 'groups/default/full/').to_xml
group_id = my_contacts_group_id(groups_feed)
url = CONTACTS_FEED +
"?group=#{group_id}&max-results=#{MAX_CONTACTS_RESULTS.to_s}"
feed = @client.get(url).to_xml

session[:users_email] = feed.elements['id'].text if !session[:users_email]

@contacts = []
feed.elements.each('entry') do |entry|
contact = GContact::Contact.new(entry.elements['title'].text, nil,
entry.to_s)
entry.elements.each('gd:email') do |email|
if email.attribute('primary')
contact.email = email.attribute('address').value
end
end
@contacts.push(contact)
end
@acl_feedlink = params[:acl_feedlink]
render :action => 'all'
end

private

def my_contacts_group_id(feed)
feed.elements.each('entry') do |entry|
entry.each_element_with_attribute('id', 'Contacts', 0,
'gContact:systemGroup') do |e|
return e.parent.elements['id'].text
end
end
end

end
Show details Hide details

Change log

r143 by api.e...@google.com on Feb 20, 2009   Diff
updating code to conform with gdata 1.0.0
changes
Go to: 
Sign in to write a code review

Older revisions

r117 by api.e...@google.com on Feb 18, 2009   Diff
adding Apache License, Version 2.0
r116 by api.e...@google.com on Feb 18, 2009   Diff
[No log message]
All revisions of this file

File info

Size: 2645 bytes, 81 lines