2018-09-14 12:50:30 +01:00
|
|
|
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
|
|
|
//
|
|
|
|
// This software (Documize Community Edition) is licensed under
|
|
|
|
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
|
|
|
|
//
|
|
|
|
// You can operate outside the AGPL restrictions by purchasing
|
|
|
|
// Documize Enterprise Edition and obtaining a commercial license
|
|
|
|
// by contacting <sales@documize.com>.
|
|
|
|
//
|
|
|
|
// https://documize.com
|
|
|
|
|
|
|
|
package database
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"sort"
|
|
|
|
|
2018-09-14 18:00:24 +01:00
|
|
|
"github.com/documize/community/core/env"
|
2018-09-14 12:50:30 +01:00
|
|
|
"github.com/documize/community/server/web"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Scripts holds all .SQL files for all supported database providers.
|
|
|
|
type Scripts struct {
|
2018-09-26 17:59:56 +01:00
|
|
|
MySQL []Script
|
|
|
|
PostgreSQL []Script
|
|
|
|
SQLServer []Script
|
2018-09-14 12:50:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Script holds SQL script and it's associated version number.
|
|
|
|
type Script struct {
|
|
|
|
Version int
|
|
|
|
Script []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
// LoadScripts returns .SQL scripts for supported database providers.
|
|
|
|
func LoadScripts() (s Scripts, err error) {
|
|
|
|
assetDir := "bindata/scripts"
|
|
|
|
|
|
|
|
// MySQL
|
2018-09-26 17:59:56 +01:00
|
|
|
s.MySQL, err = loadFiles(fmt.Sprintf("%s/mysql", assetDir))
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// PostgreSQL
|
|
|
|
s.PostgreSQL, err = loadFiles(fmt.Sprintf("%s/postgresql", assetDir))
|
2018-09-14 12:50:30 +01:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
return s, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SpecificScripts returns SQL scripts for current databasse provider.
|
|
|
|
func SpecificScripts(runtime *env.Runtime, all Scripts) (s []Script) {
|
2018-09-14 18:00:24 +01:00
|
|
|
switch runtime.StoreProvider.Type() {
|
2018-09-14 12:50:30 +01:00
|
|
|
case env.StoreTypeMySQL, env.StoreTypeMariaDB, env.StoreTypePercona:
|
2018-09-26 17:59:56 +01:00
|
|
|
return all.MySQL
|
2018-09-14 12:50:30 +01:00
|
|
|
case env.StoreTypePostgreSQL:
|
2018-09-26 17:59:56 +01:00
|
|
|
return all.PostgreSQL
|
2018-09-14 12:50:30 +01:00
|
|
|
case env.StoreTypeMSSQL:
|
2018-09-26 17:59:56 +01:00
|
|
|
return all.SQLServer
|
2018-09-14 12:50:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// loadFiles returns all SQL scripts in specified folder as [][]byte.
|
|
|
|
func loadFiles(path string) (b []Script, err error) {
|
|
|
|
buf := []byte{}
|
|
|
|
scripts, err := web.AssetDir(path)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
sort.Strings(scripts)
|
|
|
|
for _, file := range scripts {
|
|
|
|
buf, err = web.Asset(fmt.Sprintf("%s/%s", path, file))
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
b = append(b, Script{Version: extractVersionNumber(file), Script: buf})
|
|
|
|
}
|
|
|
|
|
|
|
|
return b, nil
|
|
|
|
}
|