芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/kwesioben.com/paymoney/vendor/livewire/livewire/js/connection/index.js
import store from '@/Store' import componentStore from '../Store' import { getCsrfToken } from '@/util' export default class Connection { constructor() { this.headers = {} } onMessage(message, payload) { message.component.receiveMessage(message, payload) } onError(message, status, response) { message.component.messageSendFailed() return componentStore.onErrorCallback(status, response) } showExpiredMessage(response, message) { if (store.sessionHasExpiredCallback) { store.sessionHasExpiredCallback(response, message) } else { confirm( 'This page has expired.\nWould you like to refresh the page?' ) && window.location.reload() } } sendMessage(message) { let payload = message.payload() let csrfToken = getCsrfToken() let socketId = this.getSocketId() let appUrl = window.livewire_app_url if (this.shouldUseLocalePrefix(payload)) { appUrl = `${appUrl}/${payload.fingerprint.locale}` } if (window.__testing_request_interceptor) { return window.__testing_request_interceptor(payload, this) } // Forward the query string for the ajax requests. fetch( `${appUrl}/livewire/message/${payload.fingerprint.name}`, { method: 'POST', body: JSON.stringify(payload), // This enables "cookies". credentials: 'same-origin', headers: { 'Content-Type': 'application/json', 'Accept': 'text/html, application/xhtml+xml', 'X-Livewire': true, // set Custom Headers ...(this.headers), // We'll set this explicitly to mitigate potential interference from ad-blockers/etc. 'Referer': window.location.href, ...(csrfToken && { 'X-CSRF-TOKEN': csrfToken }), ...(socketId && { 'X-Socket-ID': socketId }) }, } ) .then(response => { if (response.ok) { response.text().then(response => { if (this.isOutputFromDump(response)) { this.onError(message) this.showHtmlModal(response) } else { this.onMessage(message, JSON.parse(response)) } }) } else { if (this.onError(message, response.status, response) === false) return if (response.status === 419) { if (store.sessionHasExpired) return store.sessionHasExpired = true this.showExpiredMessage(response, message) } else { response.text().then(response => { this.showHtmlModal(response) }) } } }) .catch(() => { this.onError(message) }) } shouldUseLocalePrefix(payload) { let path = payload.fingerprint.path let locale = payload.fingerprint.locale if (path.split('/')[0] == locale) { return true } return false } isOutputFromDump(output) { return !!output.match(/