Skip to content

Commit 46e7139

Browse files
committed
fix versioning bugs
1 parent 354dac3 commit 46e7139

File tree

11 files changed

+348
-232
lines changed

11 files changed

+348
-232
lines changed

deno.jsonc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"fmt": {
3+
"options": {
4+
"useTabs": true,
5+
"semiColons": false,
6+
"singleQuote": true
7+
}
8+
}
9+
}

manager/deno.lock

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

manager/docker-compose.yml

-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
services:
22
mongodb:
33
image: mongo
4-
restart: always
54
ports:
65
- 27017:27017
76

87
influxdb:
98
image: influxdb
10-
restart: always
119
ports:
1210
- 8086:8086

manager/packages/local-arkive-provider/local-arkive-provider.ts

+19-13
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ import { logger } from '../logger.ts'
88

99
export class LocalArkiveProvider implements ArkiveProvider {
1010
newArkiveHandler?: (arkive: arkiverTypes.Arkive) => Promise<void>
11-
delArkiveHandler?: (arkiveId: { id: number }) => Promise<void>
11+
delArkiveHandler?: (arkiveId: { id: number }) => void
1212
currentId = 0
13+
idToDeploymentId = new Map<number, number>()
1314
nameToArkive = new Map<
1415
string,
1516
{ id: number; majorVersion: number; minorVersion: number; status: string }
@@ -84,14 +85,18 @@ export class LocalArkiveProvider implements ArkiveProvider {
8485

8586
let arkive = this.nameToArkive.get(arkiveData.name)
8687

87-
if (arkiveData.majorUpdate && arkive) {
88-
arkive.minorVersion = 0
89-
arkive.majorVersion++
90-
} else if (arkive) {
91-
arkive.minorVersion++
92-
}
88+
let deploymentId = 0
9389

94-
if (!arkive) {
90+
if (arkive) {
91+
if (arkiveData.majorUpdate) {
92+
arkive.minorVersion = 0
93+
arkive.majorVersion++
94+
} else {
95+
arkive.minorVersion++
96+
}
97+
deploymentId = (this.idToDeploymentId.get(arkive.id) ?? 0) + 1
98+
this.idToDeploymentId.set(arkive.id, deploymentId)
99+
} else {
95100
arkive = {
96101
id: this.currentId,
97102
majorVersion: 1,
@@ -100,6 +105,7 @@ export class LocalArkiveProvider implements ArkiveProvider {
100105
}
101106
this.currentId++
102107
this.nameToArkive.set(arkiveData.name, arkive)
108+
this.idToDeploymentId.set(arkive.id, deploymentId)
103109
}
104110

105111
const localDir = join(
@@ -121,7 +127,7 @@ export class LocalArkiveProvider implements ArkiveProvider {
121127
user_id: 'dev',
122128
deployment: {
123129
arkive_id: arkive.id,
124-
id: 0,
130+
id: deploymentId,
125131
created_at: new Date().toISOString(),
126132
file_path: localDir,
127133
major_version: arkive.majorVersion,
@@ -156,21 +162,21 @@ export class LocalArkiveProvider implements ArkiveProvider {
156162
return new Response('Invalid request', { status: 400 })
157163
}
158164

159-
getArkives(): Promise<arkiverTypes.Arkive[]> {
165+
getDeployments(): Promise<arkiverTypes.Arkive[]> {
160166
return Promise.resolve([])
161167
}
162-
listenNewArkive(
168+
listenNewDeployment(
163169
callback: (arkive: arkiverTypes.Arkive) => Promise<void>,
164170
): void {
165171
this.newArkiveHandler = callback
166172
}
167173
listenDeletedArkive(
168-
callback: (arkiveId: { id: number }) => Promise<void>,
174+
callback: (arkiveId: { id: number }) => void,
169175
): void {
170176
this.delArkiveHandler = callback
171177
}
172178

173-
async pullArkive(_arkives: arkiverTypes.Arkive): Promise<void> {}
179+
async pullDeployment(_arkives: arkiverTypes.Arkive): Promise<void> {}
174180

175181
// deno-lint-ignore require-await
176182
async updateDeploymentStatus(

manager/packages/manager/graphql-server.ts

+29-5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export class GraphQLServer {
1818
// deno-lint-ignore ban-types
1919
grapQLYoga.YogaServerInstance<{}, {}>
2020
> = new Map()
21+
private arkiveIdToHighestVersion: Map<number, number> = new Map()
2122
arkiverProvider: ArkiveProvider
2223

2324
constructor(arkiveProvider: ArkiveProvider) {
@@ -39,13 +40,18 @@ export class GraphQLServer {
3940
})
4041
}
4142

42-
async addNewArkive(arkive: arkiverTypes.Arkive) {
43+
async removeDeployment(arkive: arkiverTypes.Arkive) {
4344
const username = await this.arkiverProvider.getUsername(arkive.user_id)
44-
const path = `/${username}/${arkive.name}`
45-
const pathWithVersion = `${path}/${arkive.deployment.major_version}`
45+
const pathWithVersion =
46+
`/${username}/${arkive.name}/${arkive.deployment.major_version}`
4647
logger('graphQLServer').info(
47-
`[GraphQL Server] Adding new arkive: ${pathWithVersion}, ${path}`,
48+
`[GraphQL Server] Removing arkive: ${pathWithVersion}`,
4849
)
50+
this.pathToYoga.delete(pathWithVersion)
51+
}
52+
53+
async addNewDeployment(arkive: arkiverTypes.Arkive) {
54+
const username = await this.arkiverProvider.getUsername(arkive.user_id)
4955
const manifestPath = new URL(
5056
denoPath.join(
5157
arkivesDir,
@@ -102,6 +108,12 @@ export class GraphQLServer {
102108
landingPage: false,
103109
}
104110

111+
const path = `/${username}/${arkive.name}`
112+
const pathWithVersion = `${path}/${arkive.deployment.major_version}`
113+
logger('graphQLServer').info(
114+
`[GraphQL Server] Adding new arkive: ${pathWithVersion}`,
115+
)
116+
105117
const yogaWithVersion = grapQLYoga.createYoga({
106118
...options,
107119
graphqlEndpoint: `${pathWithVersion}/graphql`,
@@ -112,7 +124,19 @@ export class GraphQLServer {
112124
})
113125

114126
this.pathToYoga.set(`${pathWithVersion}/graphql`, yogaWithVersion)
115-
this.pathToYoga.set(`${path}/graphql`, yoga)
127+
128+
const highestVersion = this.arkiveIdToHighestVersion.get(arkive.id)
129+
130+
if (!highestVersion || highestVersion < arkive.deployment.major_version) {
131+
this.arkiveIdToHighestVersion.set(
132+
arkive.id,
133+
arkive.deployment.major_version,
134+
)
135+
this.pathToYoga.set(`${path}/graphql`, yoga)
136+
logger('graphQLServer').info(
137+
`[GraphQL Server] Updating highest version for ${path} to ${arkive.deployment.major_version}`,
138+
)
139+
}
116140
}
117141

118142
async handleRequest(req: Request) {

0 commit comments

Comments
 (0)