|
| 1 | +/*Copyright ©2016 TommyLemon(https://github.com/TommyLemon/APIJSON) |
| 2 | +
|
| 3 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +you may not use this file except in compliance with the License. |
| 5 | +You may obtain a copy of the License at |
| 6 | +
|
| 7 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +
|
| 9 | +Unless required by applicable law or agreed to in writing, software |
| 10 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +See the License for the specific language governing permissions and |
| 13 | +limitations under the License.*/ |
| 14 | + |
| 15 | +package apijson.framework.javax; |
| 16 | + |
| 17 | +import apijson.RequestMethod; |
| 18 | +import apijson.column.ColumnUtil; |
| 19 | +import apijson.orm.AbstractSQLConfig; |
| 20 | +import apijson.orm.Join; |
| 21 | +import apijson.orm.SQLConfig; |
| 22 | +import com.alibaba.fastjson.JSONObject; |
| 23 | +import com.alibaba.fastjson.annotation.JSONField; |
| 24 | + |
| 25 | +import java.util.List; |
| 26 | + |
| 27 | +import static apijson.framework.javax.APIJSONConstant.*; |
| 28 | + |
| 29 | + |
| 30 | +/**SQL配置 |
| 31 | + * TiDB 用法和 MySQL 一致 |
| 32 | + * @author Lemon |
| 33 | + */ |
| 34 | +public class APIJSONSQLConfig<T extends Object> extends AbstractSQLConfig<T> { |
| 35 | + public static final String TAG = "APIJSONSQLConfig"; |
| 36 | + |
| 37 | + public static boolean ENABLE_COLUMN_CONFIG = false; |
| 38 | + |
| 39 | + public static Callback<? extends Object> SIMPLE_CALLBACK; |
| 40 | + public static APIJSONCreator<? extends Object> APIJSON_CREATOR; |
| 41 | + |
| 42 | + static { |
| 43 | + DEFAULT_DATABASE = DATABASE_MYSQL; //TODO 默认数据库类型,改成你自己的 |
| 44 | + DEFAULT_SCHEMA = "sys"; //TODO 默认模式名,改成你自己的,默认情况是 MySQL: sys, PostgreSQL: public, SQL Server: dbo, Oracle: |
| 45 | + // TABLE_KEY_MAP.put(Access.class.getSimpleName(), "apijson_access"); |
| 46 | + |
| 47 | + // 由 APIJSONVerifier.init 方法读取数据库 Access 表来替代手动输入配置 |
| 48 | + // //表名映射,隐藏真实表名,对安全要求很高的表可以这么做 |
| 49 | + // TABLE_KEY_MAP.put(User.class.getSimpleName(), "apijson_user"); |
| 50 | + // TABLE_KEY_MAP.put(Privacy.class.getSimpleName(), "apijson_privacy"); |
| 51 | + |
| 52 | + APIJSON_CREATOR = new APIJSONCreator<>(); |
| 53 | + |
| 54 | + SIMPLE_CALLBACK = new SimpleCallback<>() { |
| 55 | + |
| 56 | + @Override |
| 57 | + public SQLConfig<Object> getSQLConfig(RequestMethod method, String database, String schema,String datasource, String table) { |
| 58 | + SQLConfig<Object> config = (SQLConfig<Object>) APIJSON_CREATOR.createSQLConfig(); |
| 59 | + config.setMethod(method); |
| 60 | + config.setDatabase(database); |
| 61 | + config.setDatasource(datasource); |
| 62 | + config.setSchema(schema); |
| 63 | + config.setTable(table); |
| 64 | + return config; |
| 65 | + } |
| 66 | + |
| 67 | + //取消注释来实现自定义各个表的主键名 |
| 68 | + // @Override |
| 69 | + // public String getIdKey(String database, String schema, String datasource, String table) { |
| 70 | + // return StringUtil.firstCase(table + "Id"); // userId, comemntId ... |
| 71 | + // // return StringUtil.toLowerCase(t) + "_id"; // user_id, comemnt_id ... |
| 72 | + // // return StringUtil.toUpperCase(t) + "_ID"; // USER_ID, COMMENT_ID ... |
| 73 | + // } |
| 74 | + |
| 75 | + @Override |
| 76 | + public String getUserIdKey(String database, String schema, String datasource, String table) { |
| 77 | + return USER_.equals(table) || PRIVACY_.equals(table) ? ID : USER_ID; // id / userId |
| 78 | + } |
| 79 | + |
| 80 | + //取消注释来实现数据库自增 id |
| 81 | + // @Override |
| 82 | + // public Object newId(RequestMethod method, String database, String schema, String datasource, String table) { |
| 83 | + // return null; // return null 则不生成 id,一般用于数据库自增 id |
| 84 | + // } |
| 85 | + }; |
| 86 | + |
| 87 | + } |
| 88 | + |
| 89 | + |
| 90 | + |
| 91 | + @Override |
| 92 | + public String getDBVersion() { |
| 93 | + if (isMySQL()) { |
| 94 | + return "5.7.22"; //"8.0.11"; //TODO 改成你自己的 MySQL 或 PostgreSQL 数据库版本号 //MYSQL 8 和 7 使用的 JDBC 配置不一样 |
| 95 | + } |
| 96 | + if (isPostgreSQL()) { |
| 97 | + return "9.6.15"; //TODO 改成你自己的 |
| 98 | + } |
| 99 | + if (isSQLServer()) { |
| 100 | + return "2016"; //TODO 改成你自己的 |
| 101 | + } |
| 102 | + if (isOracle()) { |
| 103 | + return "18c"; //TODO 改成你自己的 |
| 104 | + } |
| 105 | + return null; |
| 106 | + } |
| 107 | + |
| 108 | + @JSONField(serialize = false) // 不在日志打印 账号/密码 等敏感信息,用了 UnitAuto 则一定要加 |
| 109 | + @Override |
| 110 | + public String getDBUri() { |
| 111 | + if (isMySQL()) { |
| 112 | + return "jdbc:mysql://localhost:3306"; //TODO 改成你自己的,TiDB 可以当成 MySQL 使用,默认端口为 4000 |
| 113 | + } |
| 114 | + if (isPostgreSQL()) { |
| 115 | + return "jdbc:postgresql://localhost:5432/postgres"; //TODO 改成你自己的 |
| 116 | + } |
| 117 | + if (isSQLServer()) { |
| 118 | + return "jdbc:jtds:sqlserver://localhost:1433/pubs;instance=SQLEXPRESS"; //TODO 改成你自己的 |
| 119 | + } |
| 120 | + if (isOracle()) { |
| 121 | + return "jdbc:oracle:thin:@localhost:1521:orcl"; //TODO 改成你自己的 |
| 122 | + } |
| 123 | + return null; |
| 124 | + } |
| 125 | + |
| 126 | + @JSONField(serialize = false) // 不在日志打印 账号/密码 等敏感信息,用了 UnitAuto 则一定要加 |
| 127 | + @Override |
| 128 | + public String getDBAccount() { |
| 129 | + if (isMySQL()) { |
| 130 | + return "root"; //TODO 改成你自己的 |
| 131 | + } |
| 132 | + if (isPostgreSQL()) { |
| 133 | + return "postgres"; //TODO 改成你自己的 |
| 134 | + } |
| 135 | + if (isSQLServer()) { |
| 136 | + return "sa"; //TODO 改成你自己的 |
| 137 | + } |
| 138 | + if (isOracle()) { |
| 139 | + return "scott"; //TODO 改成你自己的 |
| 140 | + } |
| 141 | + return null; |
| 142 | + } |
| 143 | + |
| 144 | + @JSONField(serialize = false) // 不在日志打印 账号/密码 等敏感信息,用了 UnitAuto 则一定要加 |
| 145 | + @Override |
| 146 | + public String getDBPassword() { |
| 147 | + if (isMySQL()) { |
| 148 | + return "apijson"; //TODO 改成你自己的,TiDB 可以当成 MySQL 使用, 默认密码为空字符串 "" |
| 149 | + } |
| 150 | + if (isPostgreSQL()) { |
| 151 | + return null; //TODO 改成你自己的 |
| 152 | + } |
| 153 | + if (isSQLServer()) { |
| 154 | + return "apijson@123"; //TODO 改成你自己的 |
| 155 | + } |
| 156 | + if (isOracle()) { |
| 157 | + return "tiger"; //TODO 改成你自己的 |
| 158 | + } |
| 159 | + return null; |
| 160 | + } |
| 161 | + |
| 162 | + /**获取 APIJSON 配置表所在数据库模式 database,默认与业务表一块 |
| 163 | + * @return |
| 164 | + */ |
| 165 | + public String getConfigDatabase() { |
| 166 | + return getDatabase(); |
| 167 | + } |
| 168 | + /**获取 APIJSON 配置表所在数据库模式 schema,默认与业务表一块 |
| 169 | + * @return |
| 170 | + */ |
| 171 | + public String getConfigSchema() { |
| 172 | + return getSchema(); |
| 173 | + } |
| 174 | + /**是否为 APIJSON 配置表,如果和业务表一块,可以重写这个方法,固定 return false 来提高性能 |
| 175 | + * @return |
| 176 | + */ |
| 177 | + public boolean isConfigTable() { |
| 178 | + return CONFIG_TABLE_LIST.contains(getTable()); |
| 179 | + } |
| 180 | + @Override |
| 181 | + public String getSQLDatabase() { |
| 182 | + String db = isConfigTable() ? getConfigDatabase() : super.getSQLDatabase(); |
| 183 | + return db == null ? DEFAULT_DATABASE : db; |
| 184 | + } |
| 185 | + @Override |
| 186 | + public String getSQLSchema() { |
| 187 | + String sch = isConfigTable() ? getConfigSchema() : super.getSQLSchema(); |
| 188 | + return sch == null ? DEFAULT_SCHEMA : sch; |
| 189 | + } |
| 190 | + |
| 191 | + |
| 192 | + @Override |
| 193 | + public String getIdKey() { |
| 194 | + return SIMPLE_CALLBACK.getIdKey(getDatabase(), getSchema(), getDatasource(), getTable()); |
| 195 | + } |
| 196 | + |
| 197 | + @Override |
| 198 | + public String getUserIdKey() { |
| 199 | + return SIMPLE_CALLBACK.getUserIdKey(getDatabase(), getSchema(), getDatasource(), getTable()); |
| 200 | + } |
| 201 | + |
| 202 | + |
| 203 | + public APIJSONSQLConfig() { |
| 204 | + this(RequestMethod.GET); |
| 205 | + } |
| 206 | + public APIJSONSQLConfig(RequestMethod method) { |
| 207 | + super(method); |
| 208 | + } |
| 209 | + public APIJSONSQLConfig(RequestMethod method, String table) { |
| 210 | + super(method, table); |
| 211 | + } |
| 212 | + public APIJSONSQLConfig(RequestMethod method, int count, int page) { |
| 213 | + super(method, count, page); |
| 214 | + } |
| 215 | + |
| 216 | + |
| 217 | + |
| 218 | + /**获取SQL配置 |
| 219 | + * @param table |
| 220 | + * @param alias |
| 221 | + * @param request |
| 222 | + * @param isProcedure |
| 223 | + * @return |
| 224 | + * @throws Exception |
| 225 | + */ |
| 226 | + public static <T extends Object> SQLConfig<T> newSQLConfig(RequestMethod method, String table, String alias, JSONObject request, List<Join> joinList, boolean isProcedure) throws Exception { |
| 227 | + return (SQLConfig<T>) newSQLConfig(method, table, alias, request, joinList, isProcedure, SIMPLE_CALLBACK); |
| 228 | + } |
| 229 | + |
| 230 | + |
| 231 | + // 支持 !key 反选字段 和 字段名映射,依赖插件 https://github.com/APIJSON/apijson-column |
| 232 | + @Override |
| 233 | + public AbstractSQLConfig<T> setColumn(List<String> column) { |
| 234 | + if (ENABLE_COLUMN_CONFIG) { |
| 235 | + column = ColumnUtil.compatInputColumn(column, getTable(), getMethod(), getVersion(), ! isConfigTable()); |
| 236 | + } |
| 237 | + return super.setColumn(column); |
| 238 | + } |
| 239 | + |
| 240 | + @Override |
| 241 | + public String getKey(String key) { |
| 242 | + if (ENABLE_COLUMN_CONFIG) { |
| 243 | + key = ColumnUtil.compatInputKey(key, getTable(), getMethod(), getVersion(), ! isConfigTable()); |
| 244 | + } |
| 245 | + return super.getKey(key); |
| 246 | + } |
| 247 | + |
| 248 | +} |
0 commit comments