blob: 0219d1e3f49c08ed8a798134a307bed88d57954d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
import './mark-private-orgs.css';
import React from 'dom-chef';
import cache from 'webext-storage-cache';
import select from 'select-dom';
import {EyeClosedIcon} from '@primer/octicons-react';
import * as pageDetect from 'github-url-detection';
import features from '../feature-manager.js';
import * as api from '../github-helpers/api.js';
import {getUsername} from '../github-helpers/index.js';
const getPublicOrganizationsNames = cache.function('public-organizations', async (username: string): Promise<string[]> => {
// API v4 seems to *require* `org:read` permission AND it includes private organizations as well, which defeats the purpose. There's no way to filter them.
// GitHub's API explorer inexplicably only includes public organizations.
const response = await api.v3(`/users/${username}/orgs`);
return response.map((organization: AnyObject) => organization.login);
}, {
maxAge: {hours: 6},
staleWhileRevalidate: {days: 10},
});
async function init(): Promise<false | void> {
const orgs = select.all('a.avatar-group-item[data-hovercard-type="organization"][itemprop="follows"]'); // `itemprop` excludes sponsorships #3770
if (orgs.length === 0) {
return false;
}
const publicOrganizationsNames = await getPublicOrganizationsNames(getUsername()!);
for (const org of orgs) {
if (!publicOrganizationsNames.includes(org.pathname.replace(/^\/(organizations\/)?/, ''))) {
org.classList.add('rgh-private-org');
org.append(<EyeClosedIcon/>);
}
}
}
void features.add(import.meta.url, {
include: [
pageDetect.isOwnUserProfile,
],
deduplicate: 'has-rgh',
awaitDomReady: true, // TODO: Use the observer
init,
});
|