Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
3c6665e7
Unverified
Commit
3c6665e7
authored
Jan 07, 2021
by
Péter Szilágyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmd/faucet: switch Facebook auth over to mobile site
parent
38310f90
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
2 deletions
+51
-2
faucet.go
cmd/faucet/faucet.go
+8
-2
faucet_test.go
cmd/faucet/faucet_test.go
+43
-0
No files found.
cmd/faucet/faucet.go
View file @
3c6665e7
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// You should have received a copy of the GNU General Public License
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
// faucet is a Ether faucet backed by a light client.
// faucet is a
n
Ether faucet backed by a light client.
package
main
package
main
//go:generate go-bindata -nometadata -o website.go faucet.html
//go:generate go-bindata -nometadata -o website.go faucet.html
...
@@ -847,7 +847,13 @@ func authFacebook(url string) (string, string, common.Address, error) {
...
@@ -847,7 +847,13 @@ func authFacebook(url string) (string, string, common.Address, error) {
// Facebook's Graph API isn't really friendly with direct links. Still, we don't
// Facebook's Graph API isn't really friendly with direct links. Still, we don't
// want to do ask read permissions from users, so just load the public posts and
// want to do ask read permissions from users, so just load the public posts and
// scrape it for the Ethereum address and profile URL.
// scrape it for the Ethereum address and profile URL.
res
,
err
:=
http
.
Get
(
url
)
//
// Facebook recently changed their desktop webpage to use AJAX for loading post
// content, so switch over to the mobile site for now. Will probably end up having
// to use the API eventually.
crawl
:=
strings
.
Replace
(
url
,
"www.facebook.com"
,
"m.facebook.com"
,
1
)
res
,
err
:=
http
.
Get
(
crawl
)
if
err
!=
nil
{
if
err
!=
nil
{
return
""
,
""
,
common
.
Address
{},
err
return
""
,
""
,
common
.
Address
{},
err
}
}
...
...
cmd/faucet/faucet_test.go
0 → 100644
View file @
3c6665e7
// Copyright 2021 The go-ethereum Authors
// This file is part of go-ethereum.
//
// go-ethereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// go-ethereum is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
package
main
import
(
"testing"
"github.com/ethereum/go-ethereum/common"
)
func
TestFacebook
(
t
*
testing
.
T
)
{
for
_
,
tt
:=
range
[]
struct
{
url
string
want
common
.
Address
}{
{
"https://www.facebook.com/fooz.gazonk/posts/2837228539847129"
,
common
.
HexToAddress
(
"0xDeadDeaDDeaDbEefbEeFbEEfBeeFBeefBeeFbEEF"
),
},
}
{
_
,
_
,
gotAddress
,
err
:=
authFacebook
(
tt
.
url
)
if
err
!=
nil
{
t
.
Fatal
(
err
)
}
if
gotAddress
!=
tt
.
want
{
t
.
Fatalf
(
"address wrong, have %v want %v"
,
gotAddress
,
tt
.
want
)
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment