|
|
@ -1,439 +1,72 @@ |
|
|
|
import { Request, Response, Router } from 'express'; |
|
|
|
import { Request, Response, Router } from 'express'; |
|
|
|
import Model from '../../models/Model'; |
|
|
|
|
|
|
|
import { nocoExecute } from 'nc-help'; |
|
|
|
|
|
|
|
import Base from '../../models/Base'; |
|
|
|
|
|
|
|
import NcConnectionMgrv2 from '../../utils/common/NcConnectionMgrv2'; |
|
|
|
|
|
|
|
import { PagedResponseImpl } from '../../meta/helpers/PagedResponse'; |
|
|
|
|
|
|
|
import View from '../../models/View'; |
|
|
|
|
|
|
|
import catchError, { NcError } from '../../meta/helpers/catchError'; |
|
|
|
|
|
|
|
import multer from 'multer'; |
|
|
|
import multer from 'multer'; |
|
|
|
import { ErrorMessages, UITypes, ViewTypes } from 'nocodb-sdk'; |
|
|
|
|
|
|
|
import Column from '../../models/Column'; |
|
|
|
|
|
|
|
import LinkToAnotherRecordColumn from '../../models/LinkToAnotherRecordColumn'; |
|
|
|
|
|
|
|
import NcPluginMgrv2 from '../../meta/helpers/NcPluginMgrv2'; |
|
|
|
|
|
|
|
import path from 'path'; |
|
|
|
|
|
|
|
import { nanoid } from 'nanoid'; |
|
|
|
|
|
|
|
import { mimeIcons } from '../../utils/mimeTypes'; |
|
|
|
|
|
|
|
import slash from 'slash'; |
|
|
|
|
|
|
|
import { sanitizeUrlPath } from '../../services/attachmentService'; |
|
|
|
|
|
|
|
import getAst from '../../db/sql-data-mapper/lib/sql/helpers/getAst'; |
|
|
|
|
|
|
|
import { getColumnByIdOrName } from '../dataApis/helpers'; |
|
|
|
|
|
|
|
import { NC_ATTACHMENT_FIELD_SIZE } from '../../constants'; |
|
|
|
import { NC_ATTACHMENT_FIELD_SIZE } from '../../constants'; |
|
|
|
|
|
|
|
import catchError from '../../meta/helpers/catchError'; |
|
|
|
|
|
|
|
import { publicDataService } from '../../services'; |
|
|
|
|
|
|
|
|
|
|
|
export async function dataList(req: Request, res: Response) { |
|
|
|
export async function dataList(req: Request, res: Response) { |
|
|
|
try { |
|
|
|
const pagedResponse = await publicDataService.dataList({ |
|
|
|
const view = await View.getByUUID(req.params.sharedViewUuid); |
|
|
|
query: req.query, |
|
|
|
|
|
|
|
password: req.headers?.['xc-password'] as string, |
|
|
|
if (!view) NcError.notFound('Not found'); |
|
|
|
sharedViewUuid: req.params.sharedViewUuid, |
|
|
|
if ( |
|
|
|
}); |
|
|
|
view.type !== ViewTypes.GRID && |
|
|
|
res.json({ data: pagedResponse }); |
|
|
|
view.type !== ViewTypes.KANBAN && |
|
|
|
|
|
|
|
view.type !== ViewTypes.GALLERY && |
|
|
|
|
|
|
|
view.type !== ViewTypes.MAP |
|
|
|
|
|
|
|
) { |
|
|
|
|
|
|
|
NcError.notFound('Not found'); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (view.password && view.password !== req.headers?.['xc-password']) { |
|
|
|
|
|
|
|
return NcError.forbidden(ErrorMessages.INVALID_SHARED_VIEW_PASSWORD); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const model = await Model.getByIdOrName({ |
|
|
|
|
|
|
|
id: view?.fk_model_id, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const base = await Base.get(model.base_id); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const baseModel = await Model.getBaseModelSQL({ |
|
|
|
|
|
|
|
id: model.id, |
|
|
|
|
|
|
|
viewId: view?.id, |
|
|
|
|
|
|
|
dbDriver: NcConnectionMgrv2.get(base), |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const listArgs: any = { ...req.query }; |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
listArgs.filterArr = JSON.parse(listArgs.filterArrJson); |
|
|
|
|
|
|
|
} catch (e) {} |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
listArgs.sortArr = JSON.parse(listArgs.sortArrJson); |
|
|
|
|
|
|
|
} catch (e) {} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let data = []; |
|
|
|
|
|
|
|
let count = 0; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
data = await nocoExecute( |
|
|
|
|
|
|
|
await getAst({ |
|
|
|
|
|
|
|
query: req.query, |
|
|
|
|
|
|
|
model, |
|
|
|
|
|
|
|
view, |
|
|
|
|
|
|
|
}), |
|
|
|
|
|
|
|
await baseModel.list(listArgs), |
|
|
|
|
|
|
|
{}, |
|
|
|
|
|
|
|
listArgs |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
count = await baseModel.count(listArgs); |
|
|
|
|
|
|
|
} catch (e) { |
|
|
|
|
|
|
|
// show empty result instead of throwing error here
|
|
|
|
|
|
|
|
// e.g. search some text in a numeric field
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
res.json({ |
|
|
|
|
|
|
|
data: new PagedResponseImpl(data, { ...req.query, count }), |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} catch (e) { |
|
|
|
|
|
|
|
console.log(e); |
|
|
|
|
|
|
|
res.status(500).json({ msg: e.message }); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// todo: Handle the error case where view doesnt belong to model
|
|
|
|
// todo: Handle the error case where view doesnt belong to model
|
|
|
|
async function groupedDataList(req: Request, res: Response) { |
|
|
|
async function groupedDataList(req: Request, res: Response) { |
|
|
|
try { |
|
|
|
const groupedData = await publicDataService.groupedDataList({ |
|
|
|
const view = await View.getByUUID(req.params.sharedViewUuid); |
|
|
|
query: req.query, |
|
|
|
|
|
|
|
password: req.headers?.['xc-password'] as string, |
|
|
|
if (!view) NcError.notFound('Not found'); |
|
|
|
sharedViewUuid: req.params.sharedViewUuid, |
|
|
|
|
|
|
|
groupColumnId: req.params.columnId, |
|
|
|
if ( |
|
|
|
|
|
|
|
view.type !== ViewTypes.GRID && |
|
|
|
|
|
|
|
view.type !== ViewTypes.KANBAN && |
|
|
|
|
|
|
|
view.type !== ViewTypes.GALLERY |
|
|
|
|
|
|
|
) { |
|
|
|
|
|
|
|
NcError.notFound('Not found'); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (view.password && view.password !== req.headers?.['xc-password']) { |
|
|
|
|
|
|
|
return NcError.forbidden(ErrorMessages.INVALID_SHARED_VIEW_PASSWORD); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const model = await Model.getByIdOrName({ |
|
|
|
|
|
|
|
id: view?.fk_model_id, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
res.json(await getGroupedDataList(model, view, req)); |
|
|
|
|
|
|
|
} catch (e) { |
|
|
|
|
|
|
|
console.log(e); |
|
|
|
|
|
|
|
res.status(500).json({ msg: e.message }); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async function getGroupedDataList(model, view: View, req) { |
|
|
|
|
|
|
|
const base = await Base.get(model.base_id); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const baseModel = await Model.getBaseModelSQL({ |
|
|
|
|
|
|
|
id: model.id, |
|
|
|
|
|
|
|
viewId: view?.id, |
|
|
|
|
|
|
|
dbDriver: NcConnectionMgrv2.get(base), |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
res.json(groupedData); |
|
|
|
const requestObj = await getAst({ model, query: req.query, view }); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const listArgs: any = { ...req.query }; |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
listArgs.filterArr = JSON.parse(listArgs.filterArrJson); |
|
|
|
|
|
|
|
} catch (e) {} |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
listArgs.sortArr = JSON.parse(listArgs.sortArrJson); |
|
|
|
|
|
|
|
} catch (e) {} |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
listArgs.options = JSON.parse(listArgs.optionsArrJson); |
|
|
|
|
|
|
|
} catch (e) {} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let data = []; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
const groupedData = await baseModel.groupedList({ |
|
|
|
|
|
|
|
...listArgs, |
|
|
|
|
|
|
|
groupColumnId: req.params.columnId, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
data = await nocoExecute( |
|
|
|
|
|
|
|
{ key: 1, value: requestObj }, |
|
|
|
|
|
|
|
groupedData, |
|
|
|
|
|
|
|
{}, |
|
|
|
|
|
|
|
listArgs |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
const countArr = await baseModel.groupedListCount({ |
|
|
|
|
|
|
|
...listArgs, |
|
|
|
|
|
|
|
groupColumnId: req.params.columnId, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
data = data.map((item) => { |
|
|
|
|
|
|
|
// todo: use map to avoid loop
|
|
|
|
|
|
|
|
const count = |
|
|
|
|
|
|
|
countArr.find((countItem: any) => countItem.key === item.key)?.count ?? |
|
|
|
|
|
|
|
0; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
item.value = new PagedResponseImpl(item.value, { |
|
|
|
|
|
|
|
...req.query, |
|
|
|
|
|
|
|
count: count, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
return item; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} catch (e) { |
|
|
|
|
|
|
|
// show empty result instead of throwing error here
|
|
|
|
|
|
|
|
// e.g. search some text in a numeric field
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return data; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
async function dataInsert( |
|
|
|
async function dataInsert(req: Request & { files: any[] }, res: Response) { |
|
|
|
req: Request & { files: any[] }, |
|
|
|
const insertResult = await publicDataService.dataInsert({ |
|
|
|
res: Response, |
|
|
|
sharedViewUuid: req.params.sharedViewUuid, |
|
|
|
next |
|
|
|
password: req.headers?.['xc-password'] as string, |
|
|
|
) { |
|
|
|
body: req.body?.data, |
|
|
|
const view = await View.getByUUID(req.params.sharedViewUuid); |
|
|
|
siteUrl: (req as any).ncSiteUrl, |
|
|
|
|
|
|
|
files: req.files, |
|
|
|
if (!view) return next(new Error('Not found')); |
|
|
|
|
|
|
|
if (view.type !== ViewTypes.FORM) return next(new Error('Not found')); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (view.password && view.password !== req.headers?.['xc-password']) { |
|
|
|
|
|
|
|
return res.status(403).json(ErrorMessages.INVALID_SHARED_VIEW_PASSWORD); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const model = await Model.getByIdOrName({ |
|
|
|
|
|
|
|
id: view?.fk_model_id, |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
const base = await Base.get(model.base_id); |
|
|
|
|
|
|
|
const project = await base.getProject(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const baseModel = await Model.getBaseModelSQL({ |
|
|
|
|
|
|
|
id: model.id, |
|
|
|
|
|
|
|
viewId: view?.id, |
|
|
|
|
|
|
|
dbDriver: NcConnectionMgrv2.get(base), |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
await view.getViewWithInfo(); |
|
|
|
|
|
|
|
await view.getColumns(); |
|
|
|
|
|
|
|
await view.getModelWithInfo(); |
|
|
|
|
|
|
|
await view.model.getColumns(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const fields = (view.model.columns = view.columns |
|
|
|
|
|
|
|
.filter((c) => c.show) |
|
|
|
|
|
|
|
.reduce((o, c) => { |
|
|
|
|
|
|
|
o[view.model.columnsById[c.fk_column_id].title] = new Column({ |
|
|
|
|
|
|
|
...c, |
|
|
|
|
|
|
|
...view.model.columnsById[c.fk_column_id], |
|
|
|
|
|
|
|
} as any); |
|
|
|
|
|
|
|
return o; |
|
|
|
|
|
|
|
}, {}) as any); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let body = req.body?.data; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (typeof body === 'string') body = JSON.parse(body); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const insertObject = Object.entries(body).reduce((obj, [key, val]) => { |
|
|
|
|
|
|
|
if (key in fields) { |
|
|
|
|
|
|
|
obj[key] = val; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return obj; |
|
|
|
|
|
|
|
}, {}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const attachments = {}; |
|
|
|
|
|
|
|
const storageAdapter = await NcPluginMgrv2.storageAdapter(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (const file of req.files || []) { |
|
|
|
|
|
|
|
// remove `_` prefix and `[]` suffix
|
|
|
|
|
|
|
|
const fieldName = file?.fieldname?.replace(/^_|\[\d*]$/g, ''); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const filePath = sanitizeUrlPath([ |
|
|
|
|
|
|
|
'v1', |
|
|
|
|
|
|
|
project.title, |
|
|
|
|
|
|
|
model.title, |
|
|
|
|
|
|
|
fieldName, |
|
|
|
|
|
|
|
]); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (fieldName in fields && fields[fieldName].uidt === UITypes.Attachment) { |
|
|
|
res.json(insertResult); |
|
|
|
attachments[fieldName] = attachments[fieldName] || []; |
|
|
|
|
|
|
|
const fileName = `${nanoid(6)}_${file.originalname}`; |
|
|
|
|
|
|
|
let url = await storageAdapter.fileCreate( |
|
|
|
|
|
|
|
slash(path.join('nc', 'uploads', ...filePath, fileName)), |
|
|
|
|
|
|
|
file |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!url) { |
|
|
|
|
|
|
|
url = `${(req as any).ncSiteUrl}/download/${filePath.join( |
|
|
|
|
|
|
|
'/' |
|
|
|
|
|
|
|
)}/${fileName}`;
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
attachments[fieldName].push({ |
|
|
|
|
|
|
|
url, |
|
|
|
|
|
|
|
title: file.originalname, |
|
|
|
|
|
|
|
mimetype: file.mimetype, |
|
|
|
|
|
|
|
size: file.size, |
|
|
|
|
|
|
|
icon: mimeIcons[path.extname(file.originalname).slice(1)] || undefined, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (const [column, data] of Object.entries(attachments)) { |
|
|
|
|
|
|
|
insertObject[column] = JSON.stringify(data); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
res.json(await baseModel.nestedInsert(insertObject, null)); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
async function relDataList(req, res) { |
|
|
|
async function relDataList(req, res) { |
|
|
|
const view = await View.getByUUID(req.params.sharedViewUuid); |
|
|
|
const pagedResponse = await publicDataService.relDataList({ |
|
|
|
|
|
|
|
|
|
|
|
if (!view) NcError.notFound('Not found'); |
|
|
|
|
|
|
|
if (view.type !== ViewTypes.FORM) NcError.notFound('Not found'); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (view.password && view.password !== req.headers?.['xc-password']) { |
|
|
|
|
|
|
|
NcError.forbidden(ErrorMessages.INVALID_SHARED_VIEW_PASSWORD); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const column = await Column.get({ colId: req.params.columnId }); |
|
|
|
|
|
|
|
const colOptions = await column.getColOptions<LinkToAnotherRecordColumn>(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const model = await colOptions.getRelatedTable(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const base = await Base.get(model.base_id); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const baseModel = await Model.getBaseModelSQL({ |
|
|
|
|
|
|
|
id: model.id, |
|
|
|
|
|
|
|
viewId: view?.id, |
|
|
|
|
|
|
|
dbDriver: NcConnectionMgrv2.get(base), |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const requestObj = await getAst({ |
|
|
|
|
|
|
|
query: req.query, |
|
|
|
query: req.query, |
|
|
|
model, |
|
|
|
password: req.headers?.['xc-password'] as string, |
|
|
|
extractOnlyPrimaries: true, |
|
|
|
sharedViewUuid: req.params.sharedViewUuid, |
|
|
|
|
|
|
|
columnId: req.params.columnId, |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
let data = []; |
|
|
|
res.json(pagedResponse); |
|
|
|
let count = 0; |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
data = data = await nocoExecute( |
|
|
|
|
|
|
|
requestObj, |
|
|
|
|
|
|
|
await baseModel.list(req.query), |
|
|
|
|
|
|
|
{}, |
|
|
|
|
|
|
|
req.query |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
count = await baseModel.count(req.query); |
|
|
|
|
|
|
|
} catch (e) { |
|
|
|
|
|
|
|
// show empty result instead of throwing error here
|
|
|
|
|
|
|
|
// e.g. search some text in a numeric field
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
res.json(new PagedResponseImpl(data, { ...req.query, count })); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
export async function publicMmList(req: Request, res: Response) { |
|
|
|
export async function publicMmList(req: Request, res: Response) { |
|
|
|
const view = await View.getByUUID(req.params.sharedViewUuid); |
|
|
|
const paginatedResponse = await publicDataService.publicMmList({ |
|
|
|
|
|
|
|
query: req.query, |
|
|
|
if (!view) NcError.notFound('Not found'); |
|
|
|
password: req.headers?.['xc-password'] as string, |
|
|
|
if (view.type !== ViewTypes.GRID) NcError.notFound('Not found'); |
|
|
|
sharedViewUuid: req.params.sharedViewUuid, |
|
|
|
|
|
|
|
columnId: req.params.columnId, |
|
|
|
if (view.password && view.password !== req.headers?.['xc-password']) { |
|
|
|
rowId: req.params.rowId, |
|
|
|
NcError.forbidden(ErrorMessages.INVALID_SHARED_VIEW_PASSWORD); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const column = await getColumnByIdOrName( |
|
|
|
|
|
|
|
req.params.colId, |
|
|
|
|
|
|
|
await view.getModel() |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (column.fk_model_id !== view.fk_model_id) |
|
|
|
|
|
|
|
NcError.badRequest("Column doesn't belongs to the model"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const base = await Base.get(view.base_id); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const baseModel = await Model.getBaseModelSQL({ |
|
|
|
|
|
|
|
id: view.fk_model_id, |
|
|
|
|
|
|
|
viewId: view?.id, |
|
|
|
|
|
|
|
dbDriver: NcConnectionMgrv2.get(base), |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const key = `List`; |
|
|
|
|
|
|
|
const requestObj: any = { |
|
|
|
|
|
|
|
[key]: 1, |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const data = ( |
|
|
|
|
|
|
|
await nocoExecute( |
|
|
|
|
|
|
|
requestObj, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
[key]: async (args) => { |
|
|
|
|
|
|
|
return await baseModel.mmList( |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
colId: req.params.colId, |
|
|
|
|
|
|
|
parentId: req.params.rowId, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
args |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{ nested: { [key]: req.query } } |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
)?.[key]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const count: any = await baseModel.mmListCount({ |
|
|
|
|
|
|
|
colId: req.params.colId, |
|
|
|
|
|
|
|
parentId: req.params.rowId, |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
res.json(paginatedResponse); |
|
|
|
res.json(new PagedResponseImpl(data, { ...req.query, count })); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
export async function publicHmList(req: Request, res: Response) { |
|
|
|
export async function publicHmList(req: Request, res: Response) { |
|
|
|
const view = await View.getByUUID(req.params.sharedViewUuid); |
|
|
|
const paginatedResponse = await publicDataService.publicHmList({ |
|
|
|
|
|
|
|
query: req.query, |
|
|
|
if (!view) NcError.notFound('Not found'); |
|
|
|
password: req.headers?.['xc-password'] as string, |
|
|
|
if (view.type !== ViewTypes.GRID) NcError.notFound('Not found'); |
|
|
|
sharedViewUuid: req.params.sharedViewUuid, |
|
|
|
|
|
|
|
columnId: req.params.columnId, |
|
|
|
if (view.password && view.password !== req.headers?.['xc-password']) { |
|
|
|
rowId: req.params.rowId, |
|
|
|
NcError.forbidden(ErrorMessages.INVALID_SHARED_VIEW_PASSWORD); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const column = await getColumnByIdOrName( |
|
|
|
|
|
|
|
req.params.colId, |
|
|
|
|
|
|
|
await view.getModel() |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (column.fk_model_id !== view.fk_model_id) |
|
|
|
|
|
|
|
NcError.badRequest("Column doesn't belongs to the model"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const base = await Base.get(view.base_id); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const baseModel = await Model.getBaseModelSQL({ |
|
|
|
|
|
|
|
id: view.fk_model_id, |
|
|
|
|
|
|
|
viewId: view?.id, |
|
|
|
|
|
|
|
dbDriver: NcConnectionMgrv2.get(base), |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const key = `List`; |
|
|
|
|
|
|
|
const requestObj: any = { |
|
|
|
|
|
|
|
[key]: 1, |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const data = ( |
|
|
|
|
|
|
|
await nocoExecute( |
|
|
|
|
|
|
|
requestObj, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
[key]: async (args) => { |
|
|
|
|
|
|
|
return await baseModel.hmList( |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
colId: req.params.colId, |
|
|
|
|
|
|
|
id: req.params.rowId, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
args |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{}, |
|
|
|
|
|
|
|
{ nested: { [key]: req.query } } |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
)?.[key]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const count = await baseModel.hmListCount({ |
|
|
|
|
|
|
|
colId: req.params.colId, |
|
|
|
|
|
|
|
id: req.params.rowId, |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
res.json(paginatedResponse); |
|
|
|
res.json(new PagedResponseImpl(data, { ...req.query, count })); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const router = Router({ mergeParams: true }); |
|
|
|
const router = Router({ mergeParams: true }); |
|
|
|