芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/socialdigiinnovator.com/wp-content/plugins/depicter/app/routes/ajax.php
methods(['POST']) ->where('ajax', 'depicter-member-login', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->middleware('userCan:edit_depicter') ->handle('UserAjaxController@login'); // User Logout Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-member-logout', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->middleware('userCan:edit_depicter') ->handle('UserAjaxController@logout'); // User Register Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-member-register', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->middleware('userCan:edit_depicter') ->handle('UserAjaxController@register'); // Get google app client id Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-auth-google-id', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->middleware('userCan:edit_depicter') ->handle('UserAjaxController@googleClientID'); // User Login Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-auth-google-login', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->middleware('userCan:edit_depicter') ->handle('UserAjaxController@googleLogin'); // Document Endpoints // ====================================== // Updates a document Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-document-store', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->middleware('userCan:edit_depicter') ->handle('EditorAjaxController@store'); // Upload multiple document posters Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-document-cover-image', true, true) ->middleware('csrf-api:depicter-editor') ->middleware('userCan:edit_depicter') ->handle('EditorAjaxController@uploadDocumentPosters'); // Retrieves list of document revision IDs Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-document-revisions', true, true) ->middleware('csrf-api:depicter-editor') ->handle('EditorAjaxController@getRevisions'); // Retrieves list of document revisions with details Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-document-history', true, true) ->middleware('csrf-api:depicter-editor') ->handle('EditorAjaxController@getHistory'); // Reverts a document to previous snapshots Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-document-revert', true, true) ->middleware('csrf-api:depicter-editor') ->middleware('userCan:edit_depicter') ->handle('EditorAjaxController@revert'); // Retrieves a document Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-document-show', true, true) ->middleware('csrf-api:depicter-editor') ->handle('EditorAjaxController@show'); // Retrieves a document status Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-document-status', true, true) ->middleware('csrf-api:depicter-editor') ->handle('EditorAjaxController@getDocumentStatus'); // Check slug Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-document-slug-check', true, true) ->middleware('csrf-api:depicter-editor') ->middleware('userCan:access_depicter') ->handle('EditorAjaxController@checkSlug'); // Renames a document Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-document-name-change', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->middleware('userCan:edit_depicter') ->handle('DashboardAjaxController@changeName'); // Retrieves a document Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-document-localization', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->handle('EditorAjaxController@getLocalization'); // Get document markup Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-document-render', true, true) ->middleware('csrf-api:depicter-editor') ->handle('EditorAjaxController@render'); Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-document-preview', true, false) ->middleware('userCan:access_depicter') ->middleware('cache:0,browser') ->handle('EditorAjaxController@preview'); // Get document data Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-document-editor', true, true) ->middleware('csrf-api:depicter-editor') ->middleware('userCan:access_depicter') ->handle('EditorAjaxController@getEditorData'); // ====================================== // Retrieves list of documents Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-document-index', true, true) ->middleware('csrf-api:depicter-dashboard') ->handle('DashboardAjaxController@index'); // Creates new document Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-document-create', true, true) ->middleware('csrf-api:depicter-dashboard') ->middleware('userCan:create_depicter') ->handle('DashboardAjaxController@create'); // Removes a document Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-document-destroy', true, true) ->middleware('csrf-api:depicter-dashboard') ->middleware('userCan:delete_depicter') ->handle('DashboardAjaxController@destroy'); // Duplicates a document Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-document-duplicate', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->middleware('userCan:duplicate_depicter') ->handle('DashboardAjaxController@duplicate'); // Changes a document slug Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-document-slug-change', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->middleware('userCan:edit_depicter') ->handle('DashboardAjaxController@changeSlug'); // Exports a document Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-document-export', true, true) ->middleware('csrf-api:depicter-dashboard') ->middleware('userCan:export_depicter') ->handle('DashboardAjaxController@export'); // Imports a document Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-document-import', true, true) ->middleware('csrf-api:depicter-dashboard') ->middleware('userCan:import_depicter') ->handle('DashboardAjaxController@import'); // AI Wizard // ====================================== // Generate keywords by AI Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-ai-text-keywords', true, true) ->middleware('csrf-api:depicter-dashboard') ->middleware('userCan:create_depicter') ->handle('AIWizardController@generateKeywords'); // Generate slides content by AI Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-ai-text-complete', true, true) ->middleware('csrf-api:depicter-dashboard') ->middleware('userCan:create_depicter') ->handle('AIWizardController@wizardComplete'); // todo: remove this endpoint because we don't have such controller method // Generate slides content by AI Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-ai-document-make', true, true) ->middleware('csrf-api:depicter-dashboard') ->handle('AIWizardController@make'); // DataSources // ====================================== Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-dataSources-v1-assets', true, true) ->middleware('csrf-api:depicter-editor') ->handle('DataSourceAjaxController@getAssets'); // WP Resources // ====================================== Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-wp-v1-posts-types', true, true) ->middleware('csrf-api:depicter-editor') ->handle('PostsAjaxController@getPostTypes'); Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-wp-v1-posts', true, true) ->middleware('csrf-api:depicter-editor') ->handle('PostsAjaxController@getPosts'); Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-wp-v1-products', true, true) ->middleware('csrf-api:depicter-editor') ->handle('ProductsAjaxController@getProducts'); Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-wp-v1-products-custom', true, true) ->middleware('csrf-api:depicter-editor') ->handle('ProductsAjaxController@getHandPickedProducts'); Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-wp-v1-posts-search', true, true) ->middleware('csrf-api:depicter-editor') ->handle('PostsAjaxController@searchPosts'); // Google Places Reviews // ====================================== Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-google-places-search', true, true) ->middleware('csrf-api:depicter-editor') ->handle('GooglePlacesController@search'); Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-google-places-reviews', true, true) ->middleware('csrf-api:depicter-editor') ->handle('GooglePlacesController@reviews'); // Media Libraries // ====================================== // Get list of all attachments Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-library-search-all', true, true) ->middleware('csrf-api:depicter-editor') ->handle('MediaLibraryAjaxController@query'); // get list of all media library images Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-library-search-images', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->handle('MediaLibraryAjaxController@images'); // get list of all media library audios Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-library-search-audios', true, true) ->middleware('csrf-api:depicter-editor') ->handle('MediaLibraryAjaxController@audios'); // get list of all media library videos Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-library-search-videos', true, true) ->middleware('csrf-api:depicter-editor') ->handle('MediaLibraryAjaxController@videos'); // get list of all media library vectors Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-library-search-vectors', true, true) ->middleware('csrf-api:depicter-editor') ->handle('MediaLibraryAjaxController@vectors'); // Third Parties Media // ====================================== // Search Unsplash photos Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-assets-search-images', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->middleware('cache:260000,browser') ->handle('MediaAssetsAPIAjaxController@searchImages'); // Search Pixabay Videos Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-assets-search-videos', true, true) ->middleware('csrf-api:depicter-editor') ->middleware('cache:260000,browser') ->handle('MediaAssetsAPIAjaxController@searchVideos'); // Search Pixabay Vector Photos Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-assets-search-vectors', true, true) ->middleware('csrf-api:depicter-editor') ->middleware('cache:260000,browser') ->handle('MediaAssetsAPIAjaxController@searchVectors'); // Search SVG Icons Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-assets-search-icons', true, true) ->middleware('csrf-api:depicter-editor') ->middleware('cache:260000,browser') ->handle('MediaAssetsAPIAjaxController@searchIcons'); // Retrieves Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-media-url', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->middleware('cache:3600,browser') ->handle('MediaAssetsAPIAjaxController@getMediaUrl'); // Return hotlinks Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-media-get', true, true) ->name('getMedia') ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->middleware('cache:900,browser') ->handle('MediaAssetsAPIAjaxController@getMedia'); Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-media-content', true, true) ->name('getMediaContent') ->middleware('csrf-api:depicter-editor') ->middleware('cache:900,browser') ->handle('MediaAssetsAPIAjaxController@getMediaContent'); // Upload media file Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-media-upload', true, true) ->middleware('csrf-api:depicter-editor') ->handle('FileUploaderController@uploadFile'); // Search and retrieve animation presets Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-assets-animations', true, true) ->middleware('csrf-api:depicter-editor') ->middleware('cache:86400,browser') ->handle('CuratedAPIAjaxController@searchAnimations'); // Retrieve animation phases Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-assets-animations-categories', true, true) ->middleware('csrf-api:depicter-editor') ->middleware('cache:86400,browser') ->handle('CuratedAPIAjaxController@getAnimationsCategories'); // Search and retrieve element presets Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-assets-elements', true, true) ->middleware('csrf-api:depicter-editor') ->middleware('cache:86400,browser') ->handle('CuratedAPIAjaxController@searchElements'); // Search and retrieve document templates Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-assets-document-templates', true, true) ->middleware('csrf-api:depicter-dashboard') ->middleware('cache:3600,browser') ->handle('CuratedAPIAjaxController@searchDocumentTemplates'); // Search and retrieve document templates Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-assets-document-v2-templates', true, true) ->middleware('csrf-api:depicter-dashboard') ->middleware('cache:3600,browser') ->handle('CuratedAPIAjaxController@searchDocumentTemplatesV2'); // Retrieve document template categories Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-assets-document-templates-categories', true, true) ->middleware('csrf-api:depicter-dashboard') ->middleware('cache:3600,browser') ->handle('CuratedAPIAjaxController@getDocumentTemplateCategories'); // Retrieve document template groups Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-assets-document-templates-groups', true, true) ->middleware('csrf-api:depicter-dashboard') ->middleware('cache:3600,browser') ->handle('CuratedAPIAjaxController@getDocumentTemplateGroups'); // Preview a document template Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-assets-document-templates-preview', true, true) ->middleware('cache:7200,browser') ->handle('CuratedAPIAjaxController@previewDocumentTemplate'); // Import document template Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-assets-document-templates-import', true, true) ->middleware('csrf-api:depicter-dashboard') ->handle('CuratedAPIAjaxController@importDocumentTemplate'); Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-assets-document-templates-ai-import', true, true) ->middleware('userCan:create_depicter') ->middleware('csrf-api:depicter-dashboard') ->handle('AIWizardController@importAIDocumentTemplate'); // Send user feedbacks Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-report-issue', true, true) ->middleware('csrf-api:depicter-editor') ->handle('ReportIssueAjaxController@sendIssue'); Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-report-error', true, true) ->middleware('csrf-api:depicter-editor') ->handle('ReportIssueAjaxController@sendError'); Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-subscriber-store', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->handle('SubscriberAjaxController@store'); // General // ====================================== Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-deactivate-feedback', true, true) ->middleware('nonce') ->handle('PluginDeactivationController@sendFeedback'); Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-document-export-file-zip', true, true) ->middleware('csrf-api:depicter-dashboard') ->middleware('userCan:export_depicter') ->handle('ExportAjaxController@pack'); Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-document-import-file-zip', true, true) ->middleware('csrf-api:depicter-dashboard') ->middleware('userCan:import_depicter') ->handle('ImportAjaxController@unpack'); Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-info-changelog', true, true) ->handle('AppInfoAjaxController@changelogs'); Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-info-promotion', true, true) ->handle('AppInfoAjaxController@getPromotion'); Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-info-notification', true, true) ->handle('AppInfoAjaxController@getNotifications'); Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-info-notification-status', true, true) ->handle('AppInfoAjaxController@updateNotificationsStatus'); // Depicter Rules // ======================================================== Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-document-rules-store', true, true) ->handle('RulesAjaxController@store'); Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-document-rules-show', true, true) ->handle('RulesAjaxController@show'); Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-condition-all', true, true) ->handle('RulesAjaxController@all'); Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-document-condition-options', true, true) ->handle('RulesAjaxController@conditionValues'); Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-document-flush-cache', true, true) ->middleware('csrf-api:depicter-dashboard') ->handle('DashboardAjaxController@flushDocumentsCache'); // Depicter Elements // ======================================================== Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-render-shortcode', true, true) ->middleware('csrf-api:depicter-editor') ->handle('EditorAjaxController@renderShortcode'); // Depicter Lead Directory // ======================================================== Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-lead-index', true, true) ->middleware('csrf-api:depicter-dashboard') ->handle('LeadsAjaxController@index'); Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-lead-list', true, true) ->middleware('csrf-api:depicter-dashboard') ->handle('LeadsAjaxController@list'); Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-lead-submit', true, true) ->handle('LeadsAjaxController@submit'); Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-lead-update', true, true) ->middleware('csrf-api:depicter-dashboard') ->handle('LeadsAjaxController@update'); Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-lead-delete', true, true) ->middleware('csrf-api:depicter-dashboard') ->handle('LeadsAjaxController@delete'); Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-lead-spam-check', true, true) ->handle('GoogleRecaptchaController@verify'); Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-lead-export', true, true) ->middleware('csrf-api:depicter-dashboard') ->handle('LeadsAjaxController@export'); // Depicter Options // ======================================================== Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-dataCollect-consent', true, true) ->middleware('csrf-api:depicter-dashboard') ->handle('DataCollectController@getPermission'); Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-settings-index', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->handle('OptionsAjaxController@index'); Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-settings-update', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->handle('OptionsAjaxController@update'); Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-settings-get', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->handle('OptionsAjaxController@get'); Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-settings-store', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->handle('OptionsAjaxController@store'); Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-settings-flush-cache', true, true) ->middleware('csrf-api:depicter-editor|depicter-dashboard') ->handle('OptionsAjaxController@flushCache'); // Depicter background removal // ======================================================== Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-background-removal-upload', true, true) ->middleware('csrf-api:depicter-editor') ->handle('BackgroundRemovalAjaxController@upload'); Depicter::route()->methods(['GET']) ->where('ajax', 'depicter-background-removal-check', true, true) ->middleware('csrf-api:depicter-editor') ->handle('BackgroundRemovalAjaxController@getRemovedBackgroundImage'); // Woocommerce ajax Add to cart // ======================================================== Depicter::route()->methods(['POST']) ->where('ajax', 'depicter-wc-add-to-cart', true, true) ->handle('WooCommerceAjaxController@addToCart');