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
5a23bf50
Commit
5a23bf50
authored
11 years ago
by
Cho
Browse files
Options
Downloads
Patches
Plain Diff
Added slshare SLapp support for ACME-1214
parent
9108354e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/newview/llfacebookconnect.cpp
+69
-0
69 additions, 0 deletions
indra/newview/llfacebookconnect.cpp
with
69 additions
and
0 deletions
indra/newview/llfacebookconnect.cpp
+
69
−
0
View file @
5a23bf50
...
@@ -69,6 +69,75 @@ void toast_user_for_facebook_success()
...
@@ -69,6 +69,75 @@ void toast_user_for_facebook_success()
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//
//
class
LLSLShareHandler
:
public
LLCommandHandler
{
public:
LLSLShareHandler
()
:
LLCommandHandler
(
"slshare"
,
UNTRUSTED_THROTTLE
)
{
}
bool
handle
(
const
LLSD
&
tokens
,
const
LLSD
&
query_map
,
LLMediaCtrl
*
web
)
{
if
(
tokens
.
size
()
>=
1
)
{
if
(
tokens
[
0
].
asString
()
==
"connect"
)
{
if
(
tokens
.
size
()
>=
2
&&
tokens
[
1
].
asString
()
==
"flickr"
)
{
// this command probably came from the flickr_web browser, so close it
LLFloater
*
flickr_web
=
LLFloaterReg
::
getInstance
(
"flickr_web"
);
if
(
flickr_web
)
{
flickr_web
->
closeFloater
();
}
// connect to flickr
if
(
query_map
.
has
(
"oauth_token"
))
{
LLFlickrConnect
::
instance
().
connectToFlickr
(
query_map
[
"oauth_token"
],
query_map
.
get
(
"oauth_verifier"
));
}
return
true
;
}
else
if
(
tokens
.
size
()
>=
2
&&
tokens
[
1
].
asString
()
==
"twitter"
)
{
// this command probably came from the twitter_web browser, so close it
LLFloater
*
twitter_web
=
LLFloaterReg
::
getInstance
(
"twitter_web"
);
if
(
twitter_web
)
{
twitter_web
->
closeFloater
();
}
// connect to twitter
if
(
query_map
.
has
(
"oauth_token"
))
{
LLTwitterConnect
::
instance
().
connectToTwitter
(
query_map
[
"oauth_token"
],
query_map
.
get
(
"oauth_verifier"
));
}
return
true
;
}
else
//if (tokens.size() >= 2 && tokens[1].asString() == "facebook")
{
// this command probably came from the fbc_web browser, so close it
LLFloater
*
fbc_web
=
LLFloaterReg
::
getInstance
(
"fbc_web"
);
if
(
fbc_web
)
{
fbc_web
->
closeFloater
();
}
// connect to facebook
if
(
query_map
.
has
(
"code"
))
{
LLFacebookConnect
::
instance
().
connectToFacebook
(
query_map
[
"code"
],
query_map
.
get
(
"state"
));
}
return
true
;
}
}
}
return
false
;
}
};
LLSLShareHandler
gSLShareHandler
;
///////////////////////////////////////////////////////////////////////////////
//
// DEPRECATED - please remove once "fbc" is phased out of the web service
class
LLFacebookConnectHandler
:
public
LLCommandHandler
class
LLFacebookConnectHandler
:
public
LLCommandHandler
{
{
public:
public:
...
...
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