Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
37b57559
Commit
37b57559
authored
12 years ago
by
Cho
Browse files
Options
Downloads
Patches
Plain Diff
updated to work with new /get-friends/ response format
parent
2c183a80
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/newview/llavatarlist.cpp
+6
-4
6 additions, 4 deletions
indra/newview/llavatarlist.cpp
indra/newview/llpanelpeople.cpp
+21
-13
21 additions, 13 deletions
indra/newview/llpanelpeople.cpp
with
27 additions
and
17 deletions
indra/newview/llavatarlist.cpp
+
6
−
4
View file @
37b57559
...
...
@@ -626,7 +626,7 @@ void LLAvalineListItem::setName(const std::string& name)
}
/************************************************************************/
/* class LLAvatarListSocial
*/
/* class LLAvatarListSocial */
/************************************************************************/
static
LLDefaultChildRegistry
::
Register
<
LLAvatarListSocial
>
s
(
"avatar_list_social"
);
...
...
@@ -638,10 +638,12 @@ LLAvatarListSocial::LLAvatarListSocial(const Params& p) : LLAvatarList(p)
void
LLAvatarListSocial
::
addSocialItem
(
const
LLUUID
&
id
,
const
std
::
string
&
name
,
BOOL
is_online
,
EAddPosition
pos
)
{
LLAvatarName
avatar_name
;
bool
has_avatar_name
=
id
.
notNull
()
&&
LLAvatarNameCache
::
get
(
id
,
&
avatar_name
);
LLAvatarListItem
*
item
=
new
LLAvatarListItem
();
// This sets the name as a side effect
item
->
setAvatarId
(
id
,
mSessionID
,
mIgnoreOnlineStatus
,
false
);
item
->
setAvatarName
(
name
);
item
->
setAvatarId
(
id
,
mSessionID
,
mIgnoreOnlineStatus
,
false
);
// this sets the name as a side effect
item
->
setAvatarName
(
has_avatar_name
?
avatar_name
.
mDisplayName
:
name
);
item
->
setOnline
(
mIgnoreOnlineStatus
?
true
:
is_online
);
item
->
showLastInteractionTime
(
mShowLastInteractionTime
);
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llpanelpeople.cpp
+
21
−
13
View file @
37b57559
...
...
@@ -1665,14 +1665,16 @@ void LLPanelPeople::openFacebookWeb(LLFloaterWebContent::Params& p)
void
LLPanelPeople
::
showFacebookFriends
(
const
LLSD
&
friends
)
{
std
::
string
text
=
"Facebook Friends"
;
mFacebookFriends
->
clear
();
for
(
LLSD
::
array_const_iterator
i
=
friends
.
beginArray
();
i
!=
friends
.
endArray
();
++
i
)
{
std
::
string
name
=
(
*
i
)[
"name"
].
asString
();
std
::
string
id
=
(
*
i
)[
"id"
].
asString
();
const
LLSD
&
fb_friend
=
*
i
;
text
=
name
+
" ("
+
id
+
")"
;
mFacebookFriends
->
addSocialItem
(
LLUUID
(
NULL
),
text
,
false
);
std
::
string
name
=
fb_friend
[
"name"
].
asString
();
LLUUID
agent_id
=
fb_friend
.
has
(
"agent_id"
)
?
fb_friend
[
"agent_id"
].
asUUID
()
:
LLUUID
(
NULL
);
mFacebookFriends
->
addSocialItem
(
agent_id
,
name
,
false
);
}
}
...
...
@@ -1692,20 +1694,19 @@ class FacebookLoginResponder : public LLHTTPClient::Responder
{
llinfos
<<
content
<<
llendl
;
// use the token to pull down graph data
bool
has_token
=
content
[
"has_access_token"
].
asBoolean
();
//use the token to pull down graph data
if
(
has_token
)
if
(
has_token
)
{
mPanelPeople
->
getFacebookFriends
();
}
//request user to login
//
request user to login
else
{
LLFloaterWebContent
::
Params
p
;
p
.
url
(
"https://www.facebook.com/dialog/oauth?client_id=565771023434202&redirect_uri="
+
FBC_SERVICES_URL
+
"/authenticate/"
+
gAgentID
.
asString
());
LLFloaterWebContent
::
Params
p
;
p
.
url
(
"https://www.facebook.com/dialog/oauth?client_id=565771023434202&redirect_uri="
+
FBC_SERVICES_URL
+
"/authenticate/"
+
gAgentID
.
asString
());
mPanelPeople
->
openFacebookWeb
(
p
);
}
}
}
else
{
...
...
@@ -1731,7 +1732,14 @@ class FacebookFriendsResponder : public LLHTTPClient::Responder
llinfos
<<
content
<<
llendl
;
// display the friend data
mPanelPeople
->
showFacebookFriends
(
content
[
"friends"
]);
if
(
content
.
has
(
"friends"
))
{
mPanelPeople
->
showFacebookFriends
(
content
[
"friends"
]);
}
else
if
(
content
.
has
(
"error"
))
{
llinfos
<<
"failed to get facebook friends. reason: "
<<
content
[
"error"
]
<<
llendl
;
}
}
else
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment