Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
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
Charlotte
Sharkey
Commits
21015e7d
Verified
Commit
21015e7d
authored
1 year ago
by
Mar0xy
Browse files
Options
Downloads
Patches
Plain Diff
add: account endpoint
- Still work in progress
parent
763d7c3a
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
packages/backend/src/server/api/mastodon/endpoints/account.ts
+147
-0
147 additions, 0 deletions
...ages/backend/src/server/api/mastodon/endpoints/account.ts
with
147 additions
and
0 deletions
packages/backend/src/server/api/mastodon/endpoints/account.ts
0 → 100644
+
147
−
0
View file @
21015e7d
import
{
FindOptionsWhere
,
IsNull
}
from
"
typeorm
"
;
import
type
{
MegalodonInterface
}
from
"
megalodon
"
;
import
type
{
FastifyRequest
}
from
'
fastify
'
;
import
{
argsToBools
,
convertTimelinesArgsId
,
limitToInt
}
from
"
./timeline.js
"
;
import
{
convertId
,
IdConvertType
as
IdType
,
convertAccount
,
convertFeaturedTag
,
convertList
,
convertRelationship
,
convertStatus
}
from
'
../converters.js
'
;
const
relationshipModel
=
{
id
:
""
,
following
:
false
,
followed_by
:
false
,
delivery_following
:
false
,
blocking
:
false
,
blocked_by
:
false
,
muting
:
false
,
muting_notifications
:
false
,
requested
:
false
,
domain_blocking
:
false
,
showing_reblogs
:
false
,
endorsed
:
false
,
notifying
:
false
,
note
:
""
,
};
export
class
apiAccountMastodon
{
private
request
:
FastifyRequest
;
private
client
:
MegalodonInterface
;
private
BASE_URL
:
string
;
constructor
(
request
:
FastifyRequest
,
client
:
MegalodonInterface
,
BASE_URL
:
string
)
{
this
.
request
=
request
;
this
.
client
=
client
;
this
.
BASE_URL
=
BASE_URL
;
}
public
async
verifyCredentials
()
{
try
{
const
data
=
await
this
.
client
.
verifyAccountCredentials
();
let
acct
=
data
.
data
;
acct
.
id
=
convertId
(
acct
.
id
,
IdType
.
MastodonId
);
acct
.
display_name
=
acct
.
display_name
||
acct
.
username
;
acct
.
url
=
`
${
this
.
BASE_URL
}
/@
${
acct
.
url
}
`
;
acct
.
note
=
acct
.
note
||
""
;
acct
.
avatar_static
=
acct
.
avatar
;
acct
.
header
=
acct
.
header
||
"
/static-assets/transparent.png
"
;
acct
.
header_static
=
acct
.
header
||
"
/static-assets/transparent.png
"
;
acct
.
source
=
{
note
:
acct
.
note
,
fields
:
acct
.
fields
,
privacy
:
await
(
this
.
client
as
any
).
getDefaultPostPrivacy
(),
sensitive
:
false
,
language
:
""
,
};
console
.
log
(
acct
);
return
acct
;
}
catch
(
e
:
any
)
{
console
.
error
(
e
);
console
.
error
(
e
.
response
.
data
);
return
e
.
response
.
data
;
}
}
public
async
updateCredentials
()
{
try
{
const
data
=
await
this
.
client
.
updateCredentials
(
this
.
request
.
body
as
any
);
return
convertAccount
(
data
.
data
);
}
catch
(
e
:
any
)
{
console
.
error
(
e
);
console
.
error
(
e
.
response
.
data
);
return
e
.
response
.
data
;
}
}
public
async
lookup
()
{
try
{
const
data
=
await
this
.
client
.
search
((
this
.
request
.
query
as
any
).
acct
,
"
accounts
"
);
return
convertAccount
(
data
.
data
.
accounts
[
0
]);
}
catch
(
e
:
any
)
{
console
.
error
(
e
);
console
.
error
(
e
.
response
.
data
);
return
e
.
response
.
data
;
}
}
public
async
getRelationships
(
users
:
[
string
])
{
try
{
relationshipModel
.
id
=
users
?.
toString
()
||
"
1
"
;
if
(
!
users
)
{
return
[
relationshipModel
];
}
let
reqIds
=
[];
for
(
let
i
=
0
;
i
<
users
.
length
;
i
++
)
{
reqIds
.
push
(
convertId
(
users
[
i
],
IdType
.
SharkeyId
));
}
const
data
=
await
this
.
client
.
getRelationships
(
reqIds
);
return
data
.
data
.
map
((
relationship
)
=>
convertRelationship
(
relationship
));
}
catch
(
e
:
any
)
{
console
.
error
(
e
);
console
.
error
(
e
.
response
.
data
);
return
e
.
response
.
data
;
}
}
public
async
getStatuses
()
{
try
{
const
data
=
await
this
.
client
.
getAccountStatuses
(
convertId
((
this
.
request
.
params
as
any
).
id
,
IdType
.
SharkeyId
),
convertTimelinesArgsId
(
argsToBools
(
limitToInt
(
this
.
request
.
query
as
any
)))
);
return
data
.
data
.
map
((
status
)
=>
convertStatus
(
status
));
}
catch
(
e
:
any
)
{
console
.
error
(
e
);
console
.
error
(
e
.
response
.
data
);
return
e
.
response
.
data
;
}
}
public
async
getFollowers
()
{
try
{
const
data
=
await
this
.
client
.
getAccountFollowers
(
convertId
((
this
.
request
.
params
as
any
).
id
,
IdType
.
SharkeyId
),
convertTimelinesArgsId
(
limitToInt
(
this
.
request
.
query
as
any
))
);
return
data
.
data
.
map
((
account
)
=>
convertAccount
(
account
));
}
catch
(
e
:
any
)
{
console
.
error
(
e
);
console
.
error
(
e
.
response
.
data
);
return
e
.
response
.
data
;
}
}
public
async
getFollowing
()
{
try
{
const
data
=
await
this
.
client
.
getAccountFollowing
(
convertId
((
this
.
request
.
params
as
any
).
id
,
IdType
.
SharkeyId
),
convertTimelinesArgsId
(
limitToInt
(
this
.
request
.
query
as
any
))
);
return
data
.
data
.
map
((
account
)
=>
convertAccount
(
account
));
}
catch
(
e
:
any
)
{
console
.
error
(
e
);
console
.
error
(
e
.
response
.
data
);
return
e
.
response
.
data
;
}
}
}
\ No newline at end of file
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