Track and display build authors
All checks were successful
App Image CI / Build app image (pull_request) Successful in -1m26s
NPM Audit Check / Check NPM audit (pull_request) Successful in -2m14s

This commit is contained in:
2025-09-23 16:09:31 -05:00
parent 24d7b37583
commit b20bbf40fc
5 changed files with 41 additions and 24 deletions

View File

@@ -4,14 +4,6 @@ document.addEventListener('DOMContentLoaded', function () {
const buildStatusTxt = this.getElementById('buildStatus');
let started = logContainer.childElementCount > 0;
/**
* Get the correct path to establish a ws connection
* @param {Location} loc
*/
function wsPath(loc) {
return loc.pathname.replace(/\/$/, '') + '/ws';
}
/**
* Add log line to the DOM
* @param {string[]} str
@@ -52,7 +44,7 @@ document.addEventListener('DOMContentLoaded', function () {
const loc = window.location;
let new_uri = loc.protocol === 'https:' ? 'wss:' : 'ws:';
new_uri += "//" + loc.host;
new_uri += wsPath(loc);
new_uri += loc.pathname + 'ws';
var ws = new WebSocket(new_uri);
ws.onmessage = function (message) {

View File

@@ -149,13 +149,24 @@ class DB {
}
});
this.build.belongsTo(this.user);
this.user.hasMany(this.build);
this.sync();
}
private async sync(): Promise<void> {
await this.user.sync();
await this.build.sync();
await this.logChunk.sync();
await this.user.sync();
if (!(await this.getUser('-1'))) {
await this.createUser({
id: '-1',
username: '???',
displayName: 'Anonymous User'
});
}
}
public async getUser(id: string): Promise<User> {
@@ -171,13 +182,14 @@ class DB {
return user.id;
}
public async createBuild(repo: string, commit: string, patch: string, distro: string, dependencies: string): Promise<number> {
public async createBuild(repo: string, commit: string, patch: string, distro: string, dependencies: string, author: string): Promise<number> {
const buildRec = await this.build.create({
repo,
commit: commit || null,
patch: patch || null,
distro,
dependencies
dependencies,
userId: author || '-1'
});
return buildRec.id;
}
@@ -224,14 +236,17 @@ class DB {
}
public async getBuild(id: number): Promise<Build> {
return await this.build.findByPk(id);
return await this.build.findByPk(id, {
include: this.user
});
}
public async getBuilds(): Promise<Build[]> {
return await this.build.findAll({
attributes: SELECT,
order: [['id', 'DESC']],
where: FRESH
where: FRESH,
include: this.user
});
}
@@ -242,7 +257,8 @@ class DB {
where: {
...FRESH,
status
}
},
include: this.user
});
}
@@ -253,7 +269,8 @@ class DB {
where: {
...FRESH,
distro
}
},
include: this.user
});
}
@@ -264,7 +281,8 @@ class DB {
where: {
...FRESH,
...filterable
}
},
include: this.user
});
}
@@ -287,7 +305,8 @@ class DB {
{ repo: { [Op.iLike]: `%${query}%` } }
]
},
limit: 100
limit: 100,
include: this.user
});
}

View File

@@ -215,13 +215,14 @@ class Web {
req.body.commit || null,
req.body.patch || null,
req.body.distro || 'arch',
req.body.dependencies || 'stable'
req.body.dependencies || 'stable',
req?.user?.['id']
);
res.redirect(`/build/${sqids.encode([buildId])}`);
res.redirect(`/build/${sqids.encode([buildId])}/`);
this.buildController.triggerBuild();
});
app.get('/build/:id{/}', async (req, res) => {
app.get('/build/:id/', async (req, res) => {
const build = await this.db.getBuild(sqids.decode(req.params.id)?.[0]);
showBuild(req, res, build);
});

View File

@@ -18,17 +18,22 @@
<label>Distro</label> <span><%= build.distro %></span>
<label>Dependencies</label> <span><%= build.dependencies %></span>
<label>Start time</label> <span class="to-local-time"><%= build.startTime %></span>
<% if (build.userId !== '-1') { %>
<label>Triggered by</label> <span><%= build.user.displayName %> (<%= build.user.username %>)</span>
<% } %>
</div>
</div>
<% if (build.sqid) { %>
<div>
<a href="/build?id=<%= build.sqid %>" class="button">Clone</a>
</div>
<% } %>
<% if (!ended) { %>
<div id="cancelRow">
<a href="/build/<%= build.sqid %>/cancel" class="button">Cancel build</a>
<a href="cancel" class="button">Cancel build</a>
</div>
<% } %>
<p><a href="/build/<%= build.sqid %>/logs">Full logs</a></p>
<p><a href="logs">Full logs</a></p>
<pre class="overflow-x"><div class="logs" id="logs"><% (log || []).forEach(line => { %><p><%= line %></p><% }) %></div></pre>
<% if (!ended) { %>

View File

@@ -20,7 +20,7 @@
</tr>
<% builds.forEach(build => { %>
<tr>
<td><a href="/build/<%= build.sqid %>"><%= build.repo %></a></td>
<td><a href="/build/<%= build.sqid %>/"><%= build.repo %></a></td>
<td><%= build.distro %></td>
<td class="to-local-time"><%= build.startTime %></td>
<td><%= timeElapsed(build.startTime, build.endTime) %></td>