Merge pull request #12873 from wy65701436/fixes-12827

fix db migration issue
This commit is contained in:
Daniel Jiang 2020-08-26 14:42:24 +08:00 committed by GitHub
commit 37e0aa0798
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,48 @@
/*
Fixes https://github.com/goharbor/harbor/issues/12827
After user migrates Harbor from v2.0.2, user got 404 when to pull specific images, and no work after push the same images again.
Fix:
1, If the issue is caused by missing repository data, this fix can revert the missing repository data and all things should be fine.
2, If the issue is caused by missing blob data, this fix can revert the missing repository data and still left the media type of artifact
as 'UNKNOWN', which leads the meta data and build history of the image cannot be shown in UI. User can delete and push the image again to
resolve it.
*/
/* Insert the missing repository records */
INSERT INTO repository (name, project_id)
SELECT DISTINCT repository_name, project_id FROM artifact WHERE repository_id<0 AND
repository_name NOT IN (SELECT name from repository);
/* Update the repository id of artifact records */
UPDATE artifact AS art
SET repository_id=repo.repository_id
FROM repository AS repo
WHERE art.repository_name=repo.name AND art.repository_id!=repo.repository_id;
/* Update the media type of artifact records */
UPDATE artifact AS art
SET manifest_media_type=blob.content_type,
media_type=(
CASE
/*v2 manifest*/
WHEN blob.content_type='application/vnd.docker.distribution.manifest.v2+json' THEN
'application/vnd.docker.container.image.v1+json'
/*manifest list*/
WHEN blob.content_type='application/vnd.docker.distribution.manifest.list.v2+json' THEN
'application/vnd.docker.distribution.manifest.list.v2+json'
/*v1 manifest*/
ELSE
'application/vnd.docker.distribution.manifest.v1+prettyjws'
END
)
FROM blob AS blob
WHERE art.media_type='UNKNOWN' AND art.digest=blob.digest;
/* update tag records with negative repository id */
UPDATE tag SET
repository_id=art.repository_id
FROM artifact as art
WHERE tag.artifact_id=art.id AND tag.repository_id!=art.repository_id;