Skip to content

Commit 7cb48de

Browse files
committedAug 28, 2023
Api-User-Agent header (RESTBase)
1 parent de7bd37 commit 7cb48de

File tree

5 files changed

+38
-9
lines changed

5 files changed

+38
-9
lines changed
 

‎package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
">0.05% and supports fetch and not dead"
8585
],
8686
"dependencies": {
87-
"@chlodalejandro/parsoid": "2.0.0-f08be30",
87+
"@chlodalejandro/parsoid": "^2.0.1-37ea110",
8888
"broadcastchannel-polyfill": "^1.0.1",
8989
"idb": "^7.1.0",
9090
"tsx-dom": "^1.4.0"

‎src/DeputyVersion.ts

+3
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@ export {
2121
version as deputyVersion,
2222
version as default
2323
} from '../package.json';
24+
25+
import { dependencies } from '../package-lock.json';
26+
export const parsoidVersion = dependencies[ '@chlodalejandro/parsoid' ].version;

‎src/MwApi.ts

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ export default class MwApi {
88
private static _action: mw.Api;
99
private static _rest: mw.Rest;
1010

11+
public static readonly USER_AGENT = `Deputy/${
12+
deputyVersion
13+
} (https://w.wiki/5k$q; User:Chlod; wiki@chlod.net)`;
14+
1115
/**
1216
* @return A mw.Api for the current wiki.
1317
*/

‎src/modules/ante/models/CTEParsoidDocument.ts

+23-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ import TemplateFactory from './TemplateFactory';
1111
import moveToStart from '../../../util/moveToStart';
1212
import RowedAttributionNotice from './RowedAttributionNotice';
1313
import organize from '../../../util/organize';
14+
import MwApi from '../../../MwApi';
15+
import { parsoidVersion } from '../../../DeputyVersion';
1416

1517
/**
1618
* An object containing an {@link HTMLIFrameElement} along with helper functions
@@ -71,6 +73,21 @@ export default class CTEParsoidDocument extends ParsoidDocument {
7173
} );
7274
}
7375

76+
/**
77+
* @inheritDoc
78+
* @protected
79+
*/
80+
protected getRequestOptions(): Omit<RequestInit, 'body' | 'cache' | 'method'> {
81+
const ro = super.getRequestOptions();
82+
return {
83+
headers: {
84+
'Api-User-Agent': `${MwApi.USER_AGENT} ${
85+
( ro.headers as any )?.[ 'Api-User-Agent' ] ?? ''
86+
}`
87+
}
88+
};
89+
}
90+
7491
/**
7592
* @inheritDoc
7693
*/
@@ -113,12 +130,17 @@ export default class CTEParsoidDocument extends ParsoidDocument {
113130
return notices;
114131
}
115132

133+
/**
134+
* Find all notices which have rows using their 'href' fields.
135+
*
136+
* @return All found {@link RowedAttributionNotice}s
137+
*/
116138
findRowedNoticesByHref(): Record<string, RowedAttributionNotice<any>[]> {
117139
return organize(
118140
this.findNotices().filter(
119141
v => v instanceof RowedAttributionNotice
120142
) as RowedAttributionNotice<any>[],
121-
(v) => v.node.getTarget().href
143+
( v ) => v.node.getTarget().href
122144
);
123145
}
124146

0 commit comments

Comments
 (0)
Please sign in to comment.