This repository was archived by the owner on Aug 7, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathowner.js
More file actions
302 lines (268 loc) · 6.62 KB
/
Copy pathowner.js
File metadata and controls
302 lines (268 loc) · 6.62 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
import chalk from 'chalk'
import Base from './base.js'
// Utilities
import wait from '../util/wait.js'
const {cyan} = chalk
/**
* Represents a GitHub organization or user with associated repositories.
* @extends Base
*/
export default class Owner extends Base {
#logger
// Private fields
#options
#login
#name
#type
#id
#node_id
#repositories
/**
* Creates a new Owner instance.
* @param {string} name - The login name of the owner (user or organization)
* @param {object} [options={}] - Configuration options for the owner
* @param {string|null} [options.token=null] - GitHub personal access token
* @param {string|null} [options.hostname=null] - GitHub hostname for Enterprise servers
* @param {boolean} [options.debug=false] - Enable debug mode
* @param {boolean} [options.archived=false] - Skip archived repositories
* @param {boolean} [options.forked=false] - Skip forked repositories
*/
constructor(
name,
options = {
token: null,
hostname: null,
debug: false,
archived: false,
forked: false,
},
) {
super(options)
this.#options = options
this.#login = name
this.#name = name
this.#type = undefined
this.#id = undefined
this.#node_id = undefined
this.#repositories = []
}
/**
* Gets the owner login name.
* @returns {string|undefined} The owner login name
*/
get login() {
return this.#login
}
/**
* Sets the owner login name.
* @param {string} login - The owner login name
*/
set login(login) {
this.#login = login
}
/**
* Gets the owner display name.
* @returns {string|undefined} The owner display name
*/
get name() {
return this.#name
}
/**
* Sets the owner display name.
* @param {string} name - The owner display name
*/
set name(name) {
this.#name = name
}
/**
* Gets the owner ID.
* @returns {number|undefined} The owner ID
*/
get id() {
return this.#id
}
/**
* Sets the owner ID.
* @param {number} id - The owner ID
*/
set id(id) {
this.#id = id
}
/**
* Gets the owner node ID.
* @returns {string|undefined} The owner node ID
*/
get node_id() {
return this.#node_id
}
/**
* Sets the owner node ID.
* @param {string} node_id - The owner node ID
*/
set node_id(node_id) {
this.#node_id = node_id
}
/**
* Gets the owner type (user or organization).
* @returns {string|undefined} The owner type
*/
get type() {
return this.#type
}
/**
* Sets the owner type.
* @param {string} type - The owner type (user or organization)
*/
set type(type) {
this.#type = type.toLowerCase()
}
/**
* Gets the repositories array.
* @returns {Array} The array of repositories
*/
get repositories() {
return this.#repositories
}
/**
* Sets the repositories array.
* @param {Array} repositories - The array of repositories
*/
set repositories(repositories) {
this.#repositories = repositories
}
/**
* Gets the options object.
* @returns {object} The options object
*/
get options() {
return this.#options
}
/**
* Fetches user information from GitHub API.
* @async
* @param {string} user - The login name of the user
* @returns {Promise<object>} User information including login, name, id, node_id, and type
* @throws {Error} Throws an error if the user is not found or API request fails
*/
async getUser(user) {
try {
const {
data: {login, id, node_id, type, name},
} = await this.octokit.request('GET /users/{username}', {
username: user,
})
this.login = login
this.name = name
this.id = id
this.node_id = node_id
this.type = type || ''
} catch (error) {
if (error.status === 404) {
this.logger.error(`User ${user} not found`)
throw new Error(`User ${user} not found`)
} else {
this.logger.error(`Error fetching user ${user}: ${error.message}`)
throw error
}
}
return {
login: this.login,
name: this.name,
id: this.id,
node_id: this.node_id,
type: this.type,
}
}
/**
* Fetches repositories for the owner using GraphQL pagination.
* @async
* @param {string} login - The login name of the owner (user or organization)
* @param {string|null} [cursor=null] - Pagination cursor for GraphQL query
* @returns {Promise<Array>} Array of repository objects
*/
async getRepositories(login, cursor = null) {
const query = this.getRepositoryQuery()
this.logger.debug(`Fetching repositories for user ${login}${cursor ? ` with cursor ${cursor}` : ''}`)
const {
repositoryOwner: {
repositories: {nodes, pageInfo},
},
} = await this.octokit.graphql(
query,
{
user: login,
cursor,
},
{
headers: {
'X-Github-Next-Global-ID': 1,
},
},
)
await Promise.all(
nodes.map(async data => {
this.spinner.text = `Loading repository ${cyan(data.nwo)}...`
// Add repository to the list
this.#repositories.push({
nwo: data.nwo,
owner: data.owner.login,
name: data.name,
repo: {
owner: data.owner.login,
name: data.name,
},
id: data.id,
node_id: data.node_id,
visibility: data.visibility,
isArchived: data.isArchived,
isFork: data.isFork,
branch: data.defaultBranchRef?.name || undefined,
})
}),
)
// Sleep for 1s to avoid hitting the rate limit
await wait(1000)
// Paginate through the repositories
if (pageInfo.hasNextPage) {
await this.getRepositories(login, pageInfo.endCursor)
}
return this.#repositories
}
getRepositoryQuery() {
const {archived, forked} = this.#options
archived && this.logger.warn('Skipping archived repositories.')
forked && this.logger.warn('Skipping forked repositories.')
return `query ($user: String!, $cursor: String = null) {
repositoryOwner(login: $user) {
repositories(
first: 50
after: $cursor
orderBy: { field: UPDATED_AT, direction: DESC }
ownerAffiliations: OWNER
${archived ? 'isArchived: false' : ''}
${forked ? 'isFork: false' : ''}
) {
pageInfo {
hasNextPage
endCursor
}
nodes {
nwo: nameWithOwner
owner {
login
}
name
id: databaseId
node_id: id
visibility
isArchived
isFork
defaultBranchRef {
name
}
}
}
}
}`
}
}