mirror of https://github.com/nocodb/nocodb
Ramesh Mane
2 days ago
1 changed files with 134 additions and 0 deletions
@ -0,0 +1,134 @@ |
|||||||
|
import Noco from '~/Noco'; |
||||||
|
import { extractProps } from '~/helpers/extractProps'; |
||||||
|
import { |
||||||
|
CacheGetType, |
||||||
|
CacheScope, |
||||||
|
MetaTable, |
||||||
|
RootScopes, |
||||||
|
} from '~/utils/globals'; |
||||||
|
import NocoCache from '~/cache/NocoCache'; |
||||||
|
|
||||||
|
export default class CustomUrl { |
||||||
|
id?: string; |
||||||
|
fk_workspace_id?: string; |
||||||
|
base_id?: string; |
||||||
|
fk_model_id?: string; |
||||||
|
view_id?: string; |
||||||
|
original_path?: string; |
||||||
|
custom_path?: string; |
||||||
|
|
||||||
|
constructor(customUrl: Partial<CustomUrl>) { |
||||||
|
Object.assign(this, customUrl); |
||||||
|
} |
||||||
|
|
||||||
|
public static async get( |
||||||
|
params: { |
||||||
|
id?: string; |
||||||
|
view_id?: string; |
||||||
|
custom_path?: string; |
||||||
|
}, |
||||||
|
ncMeta = Noco.ncMeta, |
||||||
|
) { |
||||||
|
const condition = extractProps(params, ['id', 'view_id', 'custom_path']); |
||||||
|
|
||||||
|
return await ncMeta.metaGet2( |
||||||
|
RootScopes.ROOT, |
||||||
|
RootScopes.ROOT, |
||||||
|
MetaTable.CUSTOM_URLS, |
||||||
|
condition, |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
public static async getByCustomPath( |
||||||
|
customPath: string, |
||||||
|
ncMeta = Noco.ncMeta, |
||||||
|
) { |
||||||
|
let customUrl = await NocoCache.get( |
||||||
|
`${CacheScope.CUSTOM_URLS}:${customPath}`, |
||||||
|
CacheGetType.TYPE_OBJECT, |
||||||
|
); |
||||||
|
|
||||||
|
if (!customUrl) { |
||||||
|
customUrl = await ncMeta.metaGet2( |
||||||
|
RootScopes.ROOT, |
||||||
|
RootScopes.ROOT, |
||||||
|
MetaTable.CUSTOM_URLS, |
||||||
|
{ |
||||||
|
custom_path: customPath, |
||||||
|
}, |
||||||
|
); |
||||||
|
|
||||||
|
if (customUrl) { |
||||||
|
NocoCache.set(`${CacheScope.CUSTOM_URLS}:${customPath}`, customUrl); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
return customUrl && new CustomUrl(customUrl); |
||||||
|
} |
||||||
|
|
||||||
|
public static async insert( |
||||||
|
customUrl: Partial<CustomUrl>, |
||||||
|
ncMeta = Noco.ncMeta, |
||||||
|
) { |
||||||
|
const insertData = extractProps(customUrl, [ |
||||||
|
'fk_workspace_id', |
||||||
|
'base_id', |
||||||
|
'fk_model_id', |
||||||
|
'view_id', |
||||||
|
'original_path', |
||||||
|
'custom_path', |
||||||
|
]); |
||||||
|
|
||||||
|
return await ncMeta.metaInsert2( |
||||||
|
RootScopes.ROOT, |
||||||
|
RootScopes.ROOT, |
||||||
|
MetaTable.CUSTOM_URLS, |
||||||
|
insertData, |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
public static async list( |
||||||
|
params: { |
||||||
|
fk_workspace_id?: string; |
||||||
|
base_id?: string; |
||||||
|
fk_model_id?: string; |
||||||
|
}, |
||||||
|
ncMeta = Noco.ncMeta, |
||||||
|
) { |
||||||
|
const condition = extractProps(params, [ |
||||||
|
'fk_workspace_id', |
||||||
|
'base_id', |
||||||
|
'fk_model_id', |
||||||
|
]); |
||||||
|
|
||||||
|
const customUrlList = await ncMeta.metaList2( |
||||||
|
RootScopes.ROOT, |
||||||
|
RootScopes.ROOT, |
||||||
|
MetaTable.CUSTOM_URLS, |
||||||
|
{ |
||||||
|
condition, |
||||||
|
}, |
||||||
|
); |
||||||
|
|
||||||
|
return customUrlList; |
||||||
|
} |
||||||
|
|
||||||
|
public static async update( |
||||||
|
id: string, |
||||||
|
customUrl: Partial<CustomUrl>, |
||||||
|
ncMeta = Noco.ncMeta, |
||||||
|
) { |
||||||
|
const updateData = extractProps(customUrl, [ |
||||||
|
'original_path', |
||||||
|
'custom_path', |
||||||
|
]); |
||||||
|
|
||||||
|
return await ncMeta.metaUpdate( |
||||||
|
RootScopes.ROOT, |
||||||
|
RootScopes.ROOT, |
||||||
|
MetaTable.CUSTOM_URLS, |
||||||
|
updateData, |
||||||
|
id, |
||||||
|
); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue