Skip to content

Commit 41d072e

Browse files
cyb3rkochris48s
andauthored
Renew [Mastodon] docs and improve parameter handling (#10789)
* refactor: handle parameter as domain and not url * docs: update Mastodon documentation * test: adapt Mastodon tests to changes * style: replace substring expressions with RegEx Co-authored-by: chris48s <chris48s@users.noreply.github.com> --------- Co-authored-by: chris48s <chris48s@users.noreply.github.com>
1 parent 1b00489 commit 41d072e

File tree

2 files changed

+20
-12
lines changed

2 files changed

+20
-12
lines changed

services/mastodon/mastodon-follow.service.js

+9-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Joi from 'joi'
22
import { metric } from '../text-formatters.js'
3-
import { optionalUrl, nonNegativeInteger } from '../validators.js'
3+
import { nonNegativeInteger } from '../validators.js'
44
import { BaseJsonService, NotFound, pathParam, queryParam } from '../index.js'
55

66
const schema = Joi.object({
@@ -9,15 +9,11 @@ const schema = Joi.object({
99
})
1010

1111
const queryParamSchema = Joi.object({
12-
domain: optionalUrl,
12+
domain: Joi.string().optional(),
1313
}).required()
1414

1515
const description = `
16-
To find your user id, you can use [this tool](https://prouser123.me/misc/mastodon-userid-lookup.html).
17-
18-
Alternatively you can make a request to \`https://your.mastodon.server/.well-known/webfinger?resource=acct:<user>@<domain>\`
19-
20-
Failing that, you can also visit your profile page, where your user ID will be in the header in a tag like this: \`<link href='https://your.mastodon.server/api/salmon/<your-user-id>' rel='salmon'>\`
16+
To find your user id, you can make a request to \`https://your.mastodon.server/api/v1/accounts/lookup?acct=yourusername\`.
2117
`
2218

2319
export default class MastodonFollow extends BaseJsonService {
@@ -41,7 +37,7 @@ export default class MastodonFollow extends BaseJsonService {
4137
}),
4238
queryParam({
4339
name: 'domain',
44-
example: 'https://mastodon.social',
40+
example: 'mastodon.social',
4541
}),
4642
],
4743
},
@@ -58,22 +54,23 @@ export default class MastodonFollow extends BaseJsonService {
5854
message: metric(followers),
5955
style: 'social',
6056
link: [
61-
`${domain}/users/${username}`,
62-
`${domain}/users/${username}/followers`,
57+
`https://${domain}/users/${username}`,
58+
`https://${domain}/users/${username}/followers`,
6359
],
6460
}
6561
}
6662

6763
async fetch({ id, domain }) {
6864
return this._requestJson({
6965
schema,
70-
url: `${domain}/api/v1/accounts/${id}/`,
66+
url: `https://${domain}/api/v1/accounts/${id}/`,
7167
})
7268
}
7369

74-
async handle({ id }, { domain = 'https://mastodon.social' }) {
70+
async handle({ id }, { domain = 'mastodon.social' }) {
7571
if (isNaN(id))
7672
throw new NotFound({ prettyMessage: 'invalid user id format' })
73+
domain = domain.replace(/^https?:\/\//, '')
7774
const data = await this.fetch({ id, domain })
7875
return this.constructor.render({
7976
username: data.username,

services/mastodon/mastodon-follow.tester.js

+11
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,17 @@ t.create('Followers - default domain - invalid user ID (id not in use)')
2828
})
2929

3030
t.create('Followers - alternate domain')
31+
.get('/2214.json?domain=mastodon.xyz')
32+
.expectBadge({
33+
label: 'follow @PhotonQyv',
34+
message: isMetric,
35+
link: [
36+
'https://mastodon.xyz/users/PhotonQyv',
37+
'https://mastodon.xyz/users/PhotonQyv/followers',
38+
],
39+
})
40+
41+
t.create('Followers - alternate domain legacy')
3142
.get('/2214.json?domain=https%3A%2F%2Fmastodon.xyz')
3243
.expectBadge({
3344
label: 'follow @PhotonQyv',

0 commit comments

Comments
 (0)