summaryrefslogtreecommitdiff
path: root/bin/migrate_from_fs_to_minio
blob: 72d7c70cf83c8e6f580355d8122ddcce83c523c7 (plain)
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
#!/usr/bin/env node

const { cloneDeep } = require('lodash');
const config = require('../lib/config');
const dbconfig = cloneDeep(config.db);
const fs = require('fs');
const { getImageMimeType } = require('../lib/utils');
const Minio = require('minio');
const path = require('path');
const Sequelize = require('sequelize');

if (config.dbURL) {
  sequelize = new Sequelize(config.dbURL, dbconfig)
} else {
  sequelize = new Sequelize(dbconfig.database, dbconfig.username, dbconfig.password, dbconfig)
}

const minioClient = new Minio.Client({
  endPoint: config.minio.endPoint,
  port: config.minio.port,
  useSSL: config.minio.secure,
  accessKey: config.minio.accessKey,
  secretKey: config.minio.secretKey
});

const minioProtocol = config.minio.secure ? 'https' : 'http';
const minioHidePort = [80, 443].includes(config.minio.port);
const minioUrlPort = minioHidePort ? '' : `:${config.minio.port}`;

const minioUrl = `${minioProtocol}://${config.minio.endPoint}${minioUrlPort}/${config.s3bucket}`;

console.log(`Make sure to stop your server before starting the procedure.`);

if (config.db.dialect !== 'postgres') {
  console.log('This procedure was only tested against postgres, aborting...');
  process.exit();
} else if (config.serverURL === '' || minioUrl === '' ) {
  console.log('You need your server URL AND the minio URL to be defined, aborting...');
  process.exit();
} else {
  console.log(`We'll migrate URLs and files from ${config.serverURL} to ${minioUrl}, proceeding with the file upload...`);
  console.log();
}

var key;
var filePath;
var metadata;
fs.readdir(config.uploadsPath, function (err, files) {
  if (err) {
    console.log('Unable to scan directory: ' + err);
    process.exit();
  }
  files.forEach(function (file) {
    key = path.join('uploads', file)
    filePath = path.join(config.uploadsPath, file)
    console.log(`Uploading ${filePath} to ${key}...`);
    metadata = {
      'Content-Type': getImageMimeType(filePath),
    }
    minioClient.fPutObject(config.s3bucket, key, filePath, metadata, function(err) {
      if (err) {
        console.log(err);
        process.exit();
      }
      console.log('File uploaded successfully.');
    });
  });
});

// You can only select to see what it will do
// sequelize.query(`SELECT regexp_replace(content, '${minioUrl}/uploads/', '${config.serverURL}/uploads/', 'g') FROM "Notes"`).then(([results, metadata]) => {
//   console.log(metadata);
// })

sequelize.query(`UPDATE "Notes" SET content = regexp_replace(content, '${config.serverURL}/uploads/', '${minioUrl}/uploads/', 'g')`); // if something goes wrong, then revert '${config.serverURL}', '${minioUrl}' by swapping their place in the query.

const updateStatement = String.raw`UPDATE "Notes" SET content = regexp_replace(content, '\(/uploads/', '(${minioUrl}/uploads/', 'g')`

sequelize.query(updateStatement)