mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-16 02:44:51 +00:00
109 lines
2.8 KiB
TypeScript
109 lines
2.8 KiB
TypeScript
import consola from 'consola'
|
|
import fse from 'fs-extra'
|
|
import globby from 'globby'
|
|
import { join, resolve } from 'pathe'
|
|
import { hl, prettyPath, writeFile } from '../utils'
|
|
import { NitroPreset, NitroContext } from '../context'
|
|
|
|
export const azure: NitroPreset = {
|
|
entry: '{{ _internal.runtimeDir }}/entries/azure',
|
|
externals: true,
|
|
output: {
|
|
serverDir: '{{ output.dir }}/server/functions'
|
|
},
|
|
hooks: {
|
|
async 'nitro:compiled' (ctx: NitroContext) {
|
|
await writeRoutes(ctx)
|
|
}
|
|
}
|
|
}
|
|
|
|
async function writeRoutes ({ output }: NitroContext) {
|
|
const host = {
|
|
version: '2.0'
|
|
}
|
|
|
|
const config = {
|
|
routes: [],
|
|
navigationFallback: {
|
|
rewrite: '/api/server'
|
|
}
|
|
}
|
|
|
|
const indexPath = resolve(output.publicDir, 'index.html')
|
|
const indexFileExists = fse.existsSync(indexPath)
|
|
if (!indexFileExists) {
|
|
config.routes.unshift(
|
|
{
|
|
route: '/index.html',
|
|
redirect: '/'
|
|
},
|
|
{
|
|
route: '/',
|
|
rewrite: '/api/server'
|
|
}
|
|
)
|
|
}
|
|
|
|
const folderFiles = await globby([
|
|
join(output.publicDir, 'index.html'),
|
|
join(output.publicDir, '**/index.html')
|
|
])
|
|
const prefix = output.publicDir.length
|
|
const suffix = '/index.html'.length
|
|
folderFiles.forEach(file =>
|
|
config.routes.unshift({
|
|
route: file.slice(prefix, -suffix) || '/',
|
|
rewrite: file.slice(prefix)
|
|
})
|
|
)
|
|
|
|
const otherFiles = await globby([join(output.publicDir, '**/*.html'), join(output.publicDir, '*.html')])
|
|
otherFiles.forEach((file) => {
|
|
if (file.endsWith('index.html')) {
|
|
return
|
|
}
|
|
const route = file.slice(prefix, '.html'.length)
|
|
const existingRouteIndex = config.routes.findIndex(_route => _route.route === route)
|
|
if (existingRouteIndex > -1) {
|
|
config.routes.splice(existingRouteIndex, 1)
|
|
}
|
|
config.routes.unshift(
|
|
{
|
|
route,
|
|
rewrite: file.slice(prefix)
|
|
}
|
|
)
|
|
})
|
|
|
|
const functionDefinition = {
|
|
entryPoint: 'handle',
|
|
bindings: [
|
|
{
|
|
authLevel: 'anonymous',
|
|
type: 'httpTrigger',
|
|
direction: 'in',
|
|
name: 'req',
|
|
route: '{*url}',
|
|
methods: ['delete', 'get', 'head', 'options', 'patch', 'post', 'put']
|
|
},
|
|
{
|
|
type: 'http',
|
|
direction: 'out',
|
|
name: 'res'
|
|
}
|
|
]
|
|
}
|
|
|
|
await writeFile(resolve(output.serverDir, 'function.json'), JSON.stringify(functionDefinition))
|
|
await writeFile(resolve(output.serverDir, '../host.json'), JSON.stringify(host))
|
|
await writeFile(resolve(output.publicDir, 'staticwebapp.config.json'), JSON.stringify(config))
|
|
if (!indexFileExists) {
|
|
await writeFile(indexPath, '')
|
|
}
|
|
|
|
const apiDir = resolve(output.serverDir, '..')
|
|
|
|
consola.success('Ready to run', hl('npx @azure/static-web-apps-cli start ' + prettyPath(output.publicDir) + ' --api-location ' + prettyPath(apiDir)), 'for local testing')
|
|
}
|