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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
/*
* Copyright (C) 2021 - 2022 Elytrium
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.elytrium.limboauth.dependencies;
import com.j256.ormlite.jdbc.JdbcSingleConnectionSource;
import com.j256.ormlite.support.ConnectionSource;
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import java.net.URL;
import java.nio.file.Files;
import java.nio.file.Path;
import java.sql.Connection;
import java.sql.Driver;
import java.sql.DriverManager;
import java.sql.Statement;
import java.util.Properties;
public enum DatabaseLibrary {
H2_LEGACY_V1(
BaseLibrary.H2_V1,
(classLoader, dir, jdbc, user, password) -> fromDriver(classLoader.loadClass("org.h2.Driver"), jdbc, null, null, false),
(dir, hostname, database) -> "jdbc:h2:" + dir + "/limboauth"
),
H2(
BaseLibrary.H2_V2,
(classLoader, dir, jdbc, user, password) -> {
Connection modernConnection = fromDriver(classLoader.loadClass("org.h2.Driver"), jdbc, null, null, true);
Path legacyDatabase = dir.resolve("limboauth.mv.db");
if (Files.exists(legacyDatabase)) {
Path dumpFile = dir.resolve("limboauth.dump.sql");
try (Connection legacyConnection = H2_LEGACY_V1.connect(dir, null, null, user, password)) {
try (Statement migrateStatement = legacyConnection.createStatement()) {
migrateStatement.execute("SCRIPT TO '" + dumpFile + "'");
}
}
try (Statement migrateStatement = modernConnection.createStatement()) {
migrateStatement.execute("RUNSCRIPT FROM '" + dumpFile + "'");
}
Files.delete(dumpFile);
Files.move(legacyDatabase, dir.resolve("limboauth-v1-backup.mv.db"));
}
return modernConnection;
},
(dir, hostname, database) -> "jdbc:h2:" + dir + "/limboauth-v2"
),
MYSQL(
BaseLibrary.MYSQL,
(classLoader, dir, jdbc, user, password) -> fromDriver(classLoader.loadClass("com.mysql.cj.jdbc.Driver"), jdbc, user, password, true),
(dir, hostname, database) ->
"jdbc:mysql://" + hostname + "/" + database
),
POSTGRESQL(
BaseLibrary.POSTGRESQL,
(classLoader, dir, jdbc, user, password) -> fromDriver(classLoader.loadClass("org.postgresql.Driver"), jdbc, user, password, true),
(dir, hostname, database) -> "jdbc:postgresql://" + hostname + "/" + database
),
SQLITE(
BaseLibrary.SQLITE,
(classLoader, dir, jdbc, user, password) -> fromDriver(classLoader.loadClass("org.sqlite.JDBC"), jdbc, user, password, true),
(dir, hostname, database) -> "jdbc:sqlite:" + dir + "/limboauth.db"
);
private final BaseLibrary baseLibrary;
private final DatabaseConnector connector;
private final DatabaseStringGetter stringGetter;
DatabaseLibrary(BaseLibrary baseLibrary, DatabaseConnector connector, DatabaseStringGetter stringGetter) {
this.baseLibrary = baseLibrary;
this.connector = connector;
this.stringGetter = stringGetter;
}
public Connection connect(ClassLoader classLoader, Path dir, String hostname, String database, String user, String password) throws Exception {
return this.connect(classLoader, dir, this.stringGetter.getJdbcString(dir, hostname, database), user, password);
}
public Connection connect(Path dir, String hostname, String database, String user, String password) throws Exception {
return this.connect(dir, this.stringGetter.getJdbcString(dir, hostname, database), user, password);
}
public Connection connect(ClassLoader classLoader, Path dir, String jdbc, String user, String password) throws Exception {
return this.connector.connect(classLoader, dir, jdbc, user, password);
}
public Connection connect(Path dir, String jdbc, String user, String password) throws Exception {
return this.connector.connect(new IsolatedClassLoader(new URL[]{this.baseLibrary.getClassLoaderURL()}), dir, jdbc, user, password);
}
public ConnectionSource connectToORM(Path dir, String hostname, String database, String user, String password) throws Exception {
String jdbc = this.stringGetter.getJdbcString(dir, hostname, database);
URL baseLibraryURL = this.baseLibrary.getClassLoaderURL();
ClassLoader currentClassLoader = DatabaseLibrary.class.getClassLoader();
Method addPath = currentClassLoader.getClass().getDeclaredMethod("addPath", Path.class);
addPath.setAccessible(true);
addPath.invoke(currentClassLoader, Path.of(baseLibraryURL.toURI()));
return new JdbcSingleConnectionSource(jdbc, this.connect(currentClassLoader, dir, jdbc, hostname, user, password));
}
private static Connection fromDriver(Class<?> connectionClass, String jdbc, String user, String password, boolean register) throws Exception {
Constructor<?> legacyConstructor = connectionClass.getConstructor();
Properties info = new Properties();
if (user != null) {
info.put("user", user);
}
if (password != null) {
info.put("password", password);
}
Object driver = legacyConstructor.newInstance();
if (!register) {
DriverManager.deregisterDriver((Driver) driver);
}
Method connect = connectionClass.getDeclaredMethod("connect", String.class, Properties.class);
connect.setAccessible(true);
return (Connection) connect.invoke(driver, jdbc, info);
}
public interface DatabaseConnector {
Connection connect(ClassLoader classLoader, Path dir, String jdbc, String user, String password) throws Exception;
}
public interface DatabaseStringGetter {
String getJdbcString(Path dir, String hostname, String database);
}
}
|