forked from ttc/micro-service-api
- เพิ่ม interface prjmst
- เพิ่ม interface trnmst
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
import jwt from 'jsonwebtoken'
|
import jwt from 'jsonwebtoken'
|
||||||
import { BdgmstInterface } from './table/bdgmstInterface.js'
|
import { BdgmstInterface } from './table/bdgmstInterface.js'
|
||||||
|
import { PrjmstInterface } from './table/prjmstInterface.js'
|
||||||
|
import { TrnmstInterface } from './table/trnmstInterface.js'
|
||||||
import { sendError } from '../utils/response.js'
|
import { sendError } from '../utils/response.js'
|
||||||
|
|
||||||
// import { ActmstInterface } from './actmstInterface.js'
|
// import { ActmstInterface } from './actmstInterface.js'
|
||||||
@@ -13,6 +15,8 @@ export class Interface {
|
|||||||
constructor() {
|
constructor() {
|
||||||
this.map = {
|
this.map = {
|
||||||
bdgmst: new BdgmstInterface(),
|
bdgmst: new BdgmstInterface(),
|
||||||
|
prjmst: new PrjmstInterface(),
|
||||||
|
trnmst: new TrnmstInterface(),ห
|
||||||
// actmst: new ActmstInterface(),
|
// actmst: new ActmstInterface(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
84
exthernal-ttc-api/src/interfaces/table/prjmstInterface.js
Normal file
84
exthernal-ttc-api/src/interfaces/table/prjmstInterface.js
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
import { GeneralService } from '../../share/generalservice.js'
|
||||||
|
|
||||||
|
export class PrjmstInterface {
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
this.general = new GeneralService()
|
||||||
|
this.table = 'prjmst'
|
||||||
|
this.pk = ['prjseq', 'prjnam']
|
||||||
|
}
|
||||||
|
|
||||||
|
async saveInterface(database, data) {
|
||||||
|
const method = data.methods.toLowerCase()
|
||||||
|
const { methods, ...payload } = data
|
||||||
|
|
||||||
|
if (method === 'put') return this.update(database, payload)
|
||||||
|
if (method === 'post') return this.insert(database, payload)
|
||||||
|
if (method === 'delete') return this.remove(database, payload)
|
||||||
|
|
||||||
|
throw new Error(`Unknown method: ${method}`)
|
||||||
|
}
|
||||||
|
|
||||||
|
async insert(database, payload) {
|
||||||
|
const cols = Object.keys(payload)
|
||||||
|
const vals = Object.values(payload)
|
||||||
|
const placeholders = cols.map((_, i) => `$${i + 1}`).join(', ')
|
||||||
|
|
||||||
|
const sql = `
|
||||||
|
INSERT INTO ${database}.${this.table} (${cols.join(', ')})
|
||||||
|
VALUES (${placeholders})
|
||||||
|
RETURNING *
|
||||||
|
`
|
||||||
|
return await this.general.executeQueryParam(database, sql, vals)
|
||||||
|
}
|
||||||
|
|
||||||
|
async update(database, payload) {
|
||||||
|
const where = {}
|
||||||
|
const update = {}
|
||||||
|
|
||||||
|
for (const col in payload) {
|
||||||
|
if (this.pk.includes(col)) where[col] = payload[col]
|
||||||
|
else update[col] = payload[col]
|
||||||
|
}
|
||||||
|
|
||||||
|
const setCols = Object.keys(update)
|
||||||
|
.map((col, i) => `${col} = $${i + 1}`)
|
||||||
|
.join(', ')
|
||||||
|
|
||||||
|
const whereCols = Object.keys(where)
|
||||||
|
.map((col, i) => `${col} = $${i + 1 + Object.keys(update).length}`)
|
||||||
|
.join(' AND ')
|
||||||
|
|
||||||
|
const params = [...Object.values(update), ...Object.values(where)]
|
||||||
|
|
||||||
|
const sql = `
|
||||||
|
UPDATE ${database}.${this.table}
|
||||||
|
SET ${setCols}
|
||||||
|
WHERE ${whereCols}
|
||||||
|
RETURNING *
|
||||||
|
`
|
||||||
|
return await this.general.executeQueryParam(database, sql, params)
|
||||||
|
}
|
||||||
|
|
||||||
|
async remove(database, payload) {
|
||||||
|
const where = {}
|
||||||
|
|
||||||
|
this.pk.forEach(pk => {
|
||||||
|
if (!payload[pk]) throw new Error(`Missing PK: ${pk}`)
|
||||||
|
where[pk] = payload[pk]
|
||||||
|
})
|
||||||
|
|
||||||
|
const whereCols = Object.keys(where)
|
||||||
|
.map((col, i) => `${col} = $${i + 1}`)
|
||||||
|
.join(' AND ')
|
||||||
|
|
||||||
|
const params = Object.values(where)
|
||||||
|
|
||||||
|
const sql = `
|
||||||
|
DELETE FROM ${database}.${this.table}
|
||||||
|
WHERE ${whereCols}
|
||||||
|
RETURNING *
|
||||||
|
`
|
||||||
|
return await this.general.executeQueryParam(database, sql, params)
|
||||||
|
}
|
||||||
|
}
|
||||||
84
exthernal-ttc-api/src/interfaces/table/trnmstInterface.js
Normal file
84
exthernal-ttc-api/src/interfaces/table/trnmstInterface.js
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
import { GeneralService } from '../../share/generalservice.js'
|
||||||
|
|
||||||
|
export class TrnmstInterface {
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
this.general = new GeneralService()
|
||||||
|
this.table = 'trnmst'
|
||||||
|
this.pk = ['trnseq', 'trnprjnam'] // ⭐ PK จาก table
|
||||||
|
}
|
||||||
|
|
||||||
|
async saveInterface(database, data) {
|
||||||
|
const method = data.methods.toLowerCase()
|
||||||
|
const { methods, ...payload } = data
|
||||||
|
|
||||||
|
if (method === 'put') return this.update(database, payload)
|
||||||
|
if (method === 'post') return this.insert(database, payload)
|
||||||
|
if (method === 'delete') return this.remove(database, payload)
|
||||||
|
|
||||||
|
throw new Error(`Unknown method: ${method}`)
|
||||||
|
}
|
||||||
|
|
||||||
|
async insert(database, payload) {
|
||||||
|
const cols = Object.keys(payload)
|
||||||
|
const vals = Object.values(payload)
|
||||||
|
const placeholders = cols.map((_, i) => `$${i + 1}`).join(', ')
|
||||||
|
|
||||||
|
const sql = `
|
||||||
|
INSERT INTO ${database}.${this.table} (${cols.join(', ')})
|
||||||
|
VALUES (${placeholders})
|
||||||
|
RETURNING *
|
||||||
|
`
|
||||||
|
return await this.general.executeQueryParam(database, sql, vals)
|
||||||
|
}
|
||||||
|
|
||||||
|
async update(database, payload) {
|
||||||
|
const where = {}
|
||||||
|
const update = {}
|
||||||
|
|
||||||
|
for (const col in payload) {
|
||||||
|
if (this.pk.includes(col)) where[col] = payload[col]
|
||||||
|
else update[col] = payload[col]
|
||||||
|
}
|
||||||
|
|
||||||
|
const setCols = Object.keys(update)
|
||||||
|
.map((col, i) => `${col} = $${i + 1}`)
|
||||||
|
.join(', ')
|
||||||
|
|
||||||
|
const whereCols = Object.keys(where)
|
||||||
|
.map((col, i) => `${col} = $${i + 1 + Object.keys(update).length}`)
|
||||||
|
.join(' AND ')
|
||||||
|
|
||||||
|
const params = [...Object.values(update), ...Object.values(where)]
|
||||||
|
|
||||||
|
const sql = `
|
||||||
|
UPDATE ${database}.${this.table}
|
||||||
|
SET ${setCols}
|
||||||
|
WHERE ${whereCols}
|
||||||
|
RETURNING *
|
||||||
|
`
|
||||||
|
return await this.general.executeQueryParam(database, sql, params)
|
||||||
|
}
|
||||||
|
|
||||||
|
async remove(database, payload) {
|
||||||
|
const where = {}
|
||||||
|
|
||||||
|
this.pk.forEach(pk => {
|
||||||
|
if (!payload[pk]) throw new Error(`Missing PK: ${pk}`)
|
||||||
|
where[pk] = payload[pk]
|
||||||
|
})
|
||||||
|
|
||||||
|
const whereCols = Object.keys(where)
|
||||||
|
.map((col, i) => `${col} = $${i + 1}`)
|
||||||
|
.join(' AND ')
|
||||||
|
|
||||||
|
const params = Object.values(where)
|
||||||
|
|
||||||
|
const sql = `
|
||||||
|
DELETE FROM ${database}.${this.table}
|
||||||
|
WHERE ${whereCols}
|
||||||
|
RETURNING *
|
||||||
|
`
|
||||||
|
return await this.general.executeQueryParam(database, sql, params)
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user