base_service.js 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. 'use strict';
  2. /**
  3. * 业务逻辑基类
  4. *
  5. * @author CaiAoLin
  6. * @date 2017/10/11
  7. * @version
  8. */
  9. const Service = require('egg').Service;
  10. // sql拼装器
  11. const SqlBuilder = require('../lib/sql_builder');
  12. class BaseService extends Service {
  13. /**
  14. * 构造函数
  15. *
  16. * @param {Object} ctx - egg全局context
  17. * @return {void}
  18. */
  19. constructor(ctx) {
  20. super(ctx);
  21. this.db = this.app.mysql;
  22. this.cache = this.app.redis;
  23. this.uuid = this.app.uuid;
  24. this.transaction = null;
  25. this.sqlBuilder = null;
  26. this._ = this.app._;
  27. this.depart = 0;
  28. }
  29. /**
  30. * 设置表名
  31. *
  32. * @param {String} table - 表名
  33. * @return {void}
  34. */
  35. set tableName(table) {
  36. this._table = this.app.config.tablePrefix + table;
  37. }
  38. /**
  39. * 获取表名
  40. *
  41. * @return {String} - 返回表名
  42. */
  43. get tableName() {
  44. if (this.depart <= 0) return this._table;
  45. if (!this.ctx.tender) throw new TypeError('tableName error: Without Tender');
  46. return this._table + '_' + (this.ctx.tender.id % this.depart);
  47. }
  48. departTableName(key) {
  49. if (this.depart <= 0) return this._table;
  50. if (!key) throw new TypeError('tableName error: Without DepartKey');
  51. return this._table + '_' + (key % this.depart);
  52. }
  53. /**
  54. * 初始化sqlBuilder
  55. *
  56. * @return {void}
  57. */
  58. initSqlBuilder() {
  59. if (this.sqlBuilder === null) {
  60. this.sqlBuilder = new SqlBuilder();
  61. }
  62. }
  63. /**
  64. * 根据id查找数据
  65. *
  66. * @param {Number} id - 数据库中的id
  67. * @return {Object} - 返回单条数据
  68. */
  69. async getDataById(id) {
  70. return await this.db.get(this.tableName, { id });
  71. }
  72. /**
  73. * 根据条件查找单条数据
  74. *
  75. * @param {Object} condition - 筛选条件
  76. * @return {Object} - 返回单条数据
  77. */
  78. async getDataByCondition(condition) {
  79. return await this.db.get(this.tableName, condition);
  80. }
  81. /**
  82. * 根据条件查找列表数据
  83. *
  84. * @param {Object} condition - 筛选条件
  85. * @return {Array} - 返回数据
  86. */
  87. async getAllDataByCondition(condition) {
  88. if (!condition.where && !condition.limit) throw '缺少查询条件,如查询全表,请自建sql';
  89. return await this.db.select(this.tableName, condition);
  90. }
  91. /**
  92. * 主动分隔插入数据
  93. *
  94. * @param transaction 事务
  95. * @param tableName 表名
  96. * @param datas 插入数据
  97. * @param split 分隔条数,默认5000
  98. * @returns {Promise<void>}
  99. */
  100. async insertDatasSplit(transaction, tableName, datas, split = 5000) {
  101. const conn = transaction || this.db;
  102. for (let i = 0; i < datas.length; i += split) {
  103. await conn.insert(tableName, datas.slice(i, i + split));
  104. }
  105. }
  106. /**
  107. * 根据id删除数据
  108. *
  109. * @param {Number} id - 数据库中的id
  110. * @return {boolean} - 返回是否删除成功
  111. */
  112. async deleteById(id) {
  113. const result = await this.db.delete(this.tableName, { id });
  114. return result.affectedRows > 0;
  115. }
  116. /**
  117. * 获取总数
  118. *
  119. * @param {Object} option - 过滤条件(参考select方法中的condition)
  120. * @return {Number} - 返回查找的总数
  121. */
  122. async count(option = {}) {
  123. const result = await this.db.count(this.tableName, option);
  124. return result;
  125. }
  126. async defaultUpdate(data, options) {
  127. const result = await this.db.update(this.tableName, data, options);
  128. return result;
  129. }
  130. async defaultUpdateRows(data) {
  131. const result = await this.db.updateRows(this.tableName, data);
  132. return result;
  133. }
  134. /**
  135. * 更新数据
  136. *
  137. * @param {Object} data - 需要更新的数据
  138. * @param {Object} condition - 更新的条件筛选
  139. * @return {Boolean} - 返回更新结果
  140. */
  141. async update(data, condition, transaction = false) {
  142. if (Object.keys(data).length <= 0 || Object.keys(condition).length <= 0) {
  143. return false;
  144. }
  145. const sqlParam = [];
  146. const param = [];
  147. for (const key in data) {
  148. param.push(key + ' = ?');
  149. sqlParam.push(data[key]);
  150. }
  151. const paramString = param.join(',');
  152. const where = [];
  153. for (const key in condition) {
  154. where.push(key + ' = ?');
  155. sqlParam.push(condition[key]);
  156. }
  157. const whereString = where.join(' AND ');
  158. const sql = 'UPDATE ' + this.tableName + ' SET ' + paramString + ' WHERE ' + whereString;
  159. const result = transaction ? await transaction.query(sql, sqlParam) : await this.db.query(sql, sqlParam);
  160. return result.affectedRows > 0;
  161. }
  162. /**
  163. * 获取分页数据(SqlBuilder版本)
  164. *
  165. * @return {Array} - 返回分页数据
  166. */
  167. async getListWithBuilder() {
  168. // 由于egg-mysql不提供like、不等于操作,所以需要自己组sql
  169. if (this.sqlBuilder === null) {
  170. return [];
  171. }
  172. // 分页相关
  173. this.sqlBuilder.limit = this.ctx.pageSize ? this.ctx.pageSize : this.app.config.pageSize;
  174. this.sqlBuilder.offset = this.sqlBuilder.limit * (this.ctx.page - 1);
  175. // 数据筛选
  176. if (this.ctx.sort !== undefined && this.ctx.sort.length > 0) {
  177. this.sqlBuilder.orderBy = [this.ctx.sort];
  178. }
  179. const [sql, sqlParam] = this.sqlBuilder.build(this.tableName);
  180. const list = await this.db.query(sql, sqlParam);
  181. return list;
  182. }
  183. /**
  184. * 获取数据条数(SqlBuilder版本)
  185. *
  186. * @return {Array} - 返回分页数据
  187. */
  188. async getCountWithBuilder() {
  189. // 由于egg-mysql不提供like、不等于操作,所以需要自己组sql
  190. if (this.sqlBuilder === null) {
  191. return [];
  192. }
  193. const [sql, sqlParam] = this.sqlBuilder.buildCount(this.tableName);
  194. const result = await this.db.query(sql, sqlParam);
  195. return result ? result.length : 0;
  196. }
  197. /**
  198. * 获取分页数据
  199. *
  200. * @param {Object} condition - 搜索条件
  201. * @return {Array} - 返回分页数据
  202. */
  203. async getList(condition) {
  204. const page = this.ctx.page;
  205. // 分页设置
  206. condition.limit = condition.limit === undefined ? this.app.config.pageSize : condition.limit;
  207. condition.offset = condition.offset === undefined ? this.app.config.pageSize * (page - 1) : condition.offset;
  208. if (this.ctx.sort !== undefined && this.ctx.sort.length > 0) {
  209. condition.orders = [this.ctx.sort];
  210. }
  211. const list = await this.db.select(this.tableName, condition);
  212. return list;
  213. }
  214. round(value, decimal) {
  215. return this.ctx.helper.round(value, this._.isNumber(decimal) ? decimal : 8);
  216. }
  217. // 针对大批量数据插入,优化插入datas,按50条为分隔
  218. async insertBigDatas(transaction, insertDatas) {
  219. const batchSize = 50;
  220. for (let i = 0; i < insertDatas.length; i += batchSize) {
  221. const batchDatas = insertDatas.slice(i, i + batchSize);
  222. await transaction.insert(this.tableName, batchDatas);
  223. }
  224. }
  225. }
  226. module.exports = BaseService;