Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
337
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
24
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TransFem.org
Sharkey
Commits
41f37d09
Commit
41f37d09
authored
7 years ago
by
syuilo
Browse files
Options
Downloads
Patches
Plain Diff
#944
parent
cfedf1d0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/api/service/twitter.ts
+45
-52
45 additions, 52 deletions
src/api/service/twitter.ts
with
45 additions
and
52 deletions
src/api/service/twitter.ts
+
45
−
52
View file @
41f37d09
...
...
@@ -49,12 +49,6 @@ module.exports = (app: express.Application) => {
callbackUrl
:
`
${
config
.
api_url
}
/tw/cb`
});
const
twAuthSignin
=
autwh
({
consumerKey
:
config
.
twitter
.
consumer_key
,
consumerSecret
:
config
.
twitter
.
consumer_secret
,
callbackUrl
:
`
${
config
.
api_url
}
/signin/twitter/cb`
});
app
.
get
(
'
/connect/twitter
'
,
async
(
req
,
res
):
Promise
<
any
>
=>
{
if
(
res
.
locals
.
user
==
null
)
return
res
.
send
(
'
plz signin
'
);
const
ctx
=
await
twAuth
.
begin
();
...
...
@@ -62,36 +56,8 @@ module.exports = (app: express.Application) => {
res
.
redirect
(
ctx
.
url
);
});
app
.
get
(
'
/tw/cb
'
,
(
req
,
res
):
any
=>
{
if
(
res
.
locals
.
user
==
null
)
return
res
.
send
(
'
plz signin
'
);
redis
.
get
(
res
.
locals
.
user
,
async
(
_
,
ctx
)
=>
{
const
result
=
await
twAuth
.
done
(
JSON
.
parse
(
ctx
),
req
.
query
.
oauth_verifier
);
const
user
=
await
User
.
findOneAndUpdate
({
token
:
res
.
locals
.
user
},
{
$set
:
{
twitter
:
{
access_token
:
result
.
accessToken
,
access_token_secret
:
result
.
accessTokenSecret
,
user_id
:
result
.
userId
,
screen_name
:
result
.
screenName
}
}
});
res
.
send
(
`Twitter: @
${
result
.
screenName
}
を、Misskey: @
${
user
.
username
}
に接続しました!`
);
// Publish i updated event
event
(
user
.
_id
,
'
i_updated
'
,
await
serialize
(
user
,
user
,
{
detail
:
true
,
includeSecrets
:
true
}));
});
});
app
.
get
(
'
/signin/twitter
'
,
async
(
req
,
res
):
Promise
<
any
>
=>
{
const
ctx
=
await
twAuth
Signin
.
begin
();
const
ctx
=
await
twAuth
.
begin
();
const
sessid
=
uuid
();
...
...
@@ -110,29 +76,56 @@ module.exports = (app: express.Application) => {
res
.
redirect
(
ctx
.
url
);
});
app
.
get
(
'
/signin/twitter/cb
'
,
(
req
,
res
):
any
=>
{
// req.headers['cookie'] は常に string ですが、型定義の都合上
// string | string[] になっているので string を明示しています
const
cookies
=
cookie
.
parse
((
req
.
headers
[
'
cookie
'
]
as
string
||
''
));
app
.
get
(
'
/tw/cb
'
,
(
req
,
res
):
any
=>
{
if
(
res
.
locals
.
user
==
null
)
{
// req.headers['cookie'] は常に string ですが、型定義の都合上
// string | string[] になっているので string を明示しています
const
cookies
=
cookie
.
parse
((
req
.
headers
[
'
cookie
'
]
as
string
||
''
));
const
sessid
=
cookies
[
'
signin_with_twitter_session_id
'
];
const
sessid
=
cookies
[
'
signin_with_twitter_session_id
'
];
if
(
sessid
==
undefined
)
{
res
.
status
(
400
).
send
(
'
invalid session
'
);
}
if
(
sessid
==
undefined
)
{
res
.
status
(
400
).
send
(
'
invalid session
'
);
}
redis
.
get
(
sessid
,
async
(
_
,
ctx
)
=>
{
const
result
=
await
twAuth
.
done
(
JSON
.
parse
(
ctx
),
req
.
query
.
oauth_verifier
);
redis
.
get
(
sessid
,
async
(
_
,
ctx
)
=>
{
const
result
=
await
twAuthSignin
.
done
(
JSON
.
parse
(
ctx
),
req
.
query
.
oauth_verifier
);
const
user
=
await
User
.
findOne
({
'
twitter.user_id
'
:
result
.
userId
});
const
user
=
await
User
.
findOne
({
'
twitter.user_id
'
:
result
.
userId
if
(
user
==
null
)
{
res
.
status
(
404
).
send
(
`@
${
result
.
screenName
}
と連携しているMisskeyアカウントはありませんでした...`
);
}
signin
(
res
,
user
,
true
);
});
}
else
{
redis
.
get
(
res
.
locals
.
user
,
async
(
_
,
ctx
)
=>
{
const
result
=
await
twAuth
.
done
(
JSON
.
parse
(
ctx
),
req
.
query
.
oauth_verifier
);
const
user
=
await
User
.
findOneAndUpdate
({
token
:
res
.
locals
.
user
},
{
$set
:
{
twitter
:
{
access_token
:
result
.
accessToken
,
access_token_secret
:
result
.
accessTokenSecret
,
user_id
:
result
.
userId
,
screen_name
:
result
.
screenName
}
}
});
if
(
user
==
null
)
{
res
.
status
(
404
).
send
(
`@
${
result
.
screenName
}
と連携しているMisskeyアカウントはありませんでした...`
);
}
res
.
send
(
`Twitter: @
${
result
.
screenName
}
を、Misskey: @
${
user
.
username
}
に接続しました!`
);
signin
(
res
,
user
,
true
);
});
// Publish i updated event
event
(
user
.
_id
,
'
i_updated
'
,
await
serialize
(
user
,
user
,
{
detail
:
true
,
includeSecrets
:
true
}));
});
}
});
};
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