mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 19:30:36 -06:00
af1e2d68da
* POC: Plugins CDN reverse proxy * CDN proxy POC: changed env var names * Add authorization: false for /public path in frontend plugin loader * Moved CDN settings to Cfg, add some comments * Fix error 500 in asset fetch if plugin is not using CDN * Fix EnterpriseLicensePath declared twice * Fix linter complaining about whitespaces * Plugins CDN: Skip signature verification for CDN plugins * Plugins CDN: Skip manifest and signature check for cdn plugins * Plugins: use IsValid() and IsInternal() rather than equality checks * Plugins CDN: remove comment * Plugins CDN: Fix seeker can't seek when serving plugins from local fs * Plugins CDN: add back error codes in getLocalPluginAssets * Plugins CDN: call asset.Close() rather than asset.readSeekCloser.Close() * Plugins CDN: Fix panic in JsonApiErr when errorMessageCoder wraps a nil error * Plugins CDN: Add error handling to proxyCDNPluginAsset * Plugins CDN: replace errorMessageCoder with errutil * Plugins CDN POC: expose cdn plugin paths to frontend for system.js * Plugins CDN: Fix cdn plugins showing as unsigned in frontend * WIP: Add support for formatted URL * Fix missing cdnPluginsBaseURLs in GrafanaConfig * Plugins CDN: Remove reverse proxy mode and reverse proxy references * Plugins CDN: Simplify asset serving logic * Plugins CDN: sanitize redirect path * Plugins CDN: Removed unused pluginAsset type * Plugins CDN: Removed system.js changes * Plugins CDN: Return different system.js baseURL and module for cdn plugins * Plugins CDN: Ensure CDN is disabled for non-external plugins * lint * Plugins CDN: serve images and screenshots from CDN, refactoring * Lint * Plugins CDN: Fix URLs for system.js (baseUrl and module) * Plugins CDN: Add more tests for RelativeURLForSystemJS * Plugins CDN: Iterate only on apps when preloading * Plugins CDN: Refactoring * Plugins CDN: Add comments to url_constructor.go * Plugins CDN: Update defaultHGPluginsCDNBaseURL * Plugins CDN: undo extract meta from system js config * refactor(plugins): migrate systemjs css plugin to typescript * feat(plugins): introduce systemjs cdn loader plugin * feat(plugins): add systemjs load type * Plugins CDN: Removed RelativeURLForSystemJS * Plugins CDN: Log backend redirect hits along with plugin info * Plugins CDN: Add pluginsCDNBasePath to getFrontendSettingsMap * feat(plugins): introduce cdn loading for angular plugins * refactor(plugins): move systemjs cache buster into systemjsplugins directory * Plugins CDN: Rename pluginsCDNBasePath to pluginsCDNBaseURL * refactor(plugins): introduce pluginsCDNBaseURL to the frontend * Plugins CDN: Renamed "cdn base path" to "cdn url template" in backend * Plugins CDN: lint * merge with main * Instrumentation: Add prometheus counter for backend hits, log from Info to Warn * Config: Changed key from plugins_cdn.url to plugins.plugins_cdn_base_url * CDN: Add backend tests * Lint: goimports * Default CDN URL to empty string, * Do not use CDN in setImages and module if the url template is empty * CDN: Backend: Add test for frontend settings * CDN: Do not log missing module.js warn if plugin is being loaded from CDN * CDN: Add backend test for CDN plugin loader * Removed 'cdn' signature level, switch to 'valid' * Fix pfs.TestParseTreeTestdata for cdn plugin testdata dir * Fix TestLoader_Load * Fix gocyclo complexity of loadPlugins * Plugins CDN: Moved prometheus metric to api package, removed asset_path label * Fix missing in config * Changes after review * Add pluginscdn.Service * Fix tests * Refactoring * Moved all remaining CDN checks inside pluginscdn.Service * CDN url constructor: Renamed stringURLFor to stringPath * CDN: Moved asset URL functionality to assetpath service * CDN: Renamed HasCDN() to IsEnabled() * CDN: Replace assert with require * CDN: Changes after review * Assetpath: Handle url.Parse error * Fix plugin_resource_test * CDN: Change fallback redirect from 302 to 307 * goimports * Fix tests * Switch to contextmodel.ReqContext in plugins.go Co-authored-by: Will Browne <will.browne@grafana.com> Co-authored-by: Jack Westbrook <jack.westbrook@gmail.com>
151 lines
4.8 KiB
TypeScript
151 lines
4.8 KiB
TypeScript
import 'angular';
|
|
import 'angular-route';
|
|
import 'angular-sanitize';
|
|
import 'angular-bindonce';
|
|
import 'vendor/bootstrap/bootstrap';
|
|
|
|
import angular from 'angular'; // eslint-disable-line no-duplicate-imports
|
|
import { extend } from 'lodash';
|
|
|
|
import { getTemplateSrv } from '@grafana/runtime';
|
|
import coreModule, { angularModules } from 'app/angular/core_module';
|
|
import appEvents from 'app/core/app_events';
|
|
import { config } from 'app/core/config';
|
|
import { contextSrv } from 'app/core/services/context_srv';
|
|
import { DashboardLoaderSrv } from 'app/features/dashboard/services/DashboardLoaderSrv';
|
|
import { getTimeSrv } from 'app/features/dashboard/services/TimeSrv';
|
|
import { exposeToPlugin } from 'app/features/plugins/plugin_loader';
|
|
import * as sdk from 'app/plugins/sdk';
|
|
|
|
import { registerAngularDirectives } from './angular_wrappers';
|
|
import { initAngularRoutingBridge } from './bridgeReactAngularRouting';
|
|
import { monkeyPatchInjectorWithPreAssignedBindings } from './injectorMonkeyPatch';
|
|
import { promiseToDigest } from './promiseToDigest';
|
|
import { registerComponents } from './registerComponents';
|
|
|
|
export class AngularApp {
|
|
ngModuleDependencies: any[];
|
|
preBootModules: any[];
|
|
registerFunctions: any;
|
|
|
|
constructor() {
|
|
this.preBootModules = [];
|
|
this.ngModuleDependencies = [];
|
|
this.registerFunctions = {};
|
|
}
|
|
|
|
init() {
|
|
const app = angular.module('grafana', []);
|
|
|
|
app.config([
|
|
'$controllerProvider',
|
|
'$compileProvider',
|
|
'$filterProvider',
|
|
'$httpProvider',
|
|
'$provide',
|
|
'$sceDelegateProvider',
|
|
(
|
|
$controllerProvider: angular.IControllerProvider,
|
|
$compileProvider: angular.ICompileProvider,
|
|
$filterProvider: angular.IFilterProvider,
|
|
$httpProvider: angular.IHttpProvider,
|
|
$provide: angular.auto.IProvideService,
|
|
$sceDelegateProvider: angular.ISCEDelegateProvider
|
|
) => {
|
|
if (config.buildInfo.env !== 'development') {
|
|
$compileProvider.debugInfoEnabled(false);
|
|
}
|
|
|
|
$httpProvider.useApplyAsync(true);
|
|
|
|
if (Boolean(config.pluginsCDNBaseURL)) {
|
|
$sceDelegateProvider.trustedResourceUrlList(['self', `${config.pluginsCDNBaseURL}/**`]);
|
|
}
|
|
|
|
this.registerFunctions.controller = $controllerProvider.register;
|
|
this.registerFunctions.directive = $compileProvider.directive;
|
|
this.registerFunctions.factory = $provide.factory;
|
|
this.registerFunctions.service = $provide.service;
|
|
this.registerFunctions.filter = $filterProvider.register;
|
|
|
|
$provide.decorator('$http', [
|
|
'$delegate',
|
|
'$templateCache',
|
|
($delegate: any, $templateCache: any) => {
|
|
const get = $delegate.get;
|
|
$delegate.get = (url: string, config: any) => {
|
|
if (url.match(/\.html$/)) {
|
|
// some template's already exist in the cache
|
|
if (!$templateCache.get(url)) {
|
|
url += '?v=' + new Date().getTime();
|
|
}
|
|
}
|
|
return get(url, config);
|
|
};
|
|
return $delegate;
|
|
},
|
|
]);
|
|
},
|
|
]);
|
|
|
|
this.ngModuleDependencies = ['grafana.core', 'ngSanitize', 'grafana', 'pasvaz.bindonce', 'react'];
|
|
|
|
// makes it possible to add dynamic stuff
|
|
angularModules.forEach((m: angular.IModule) => {
|
|
this.useModule(m);
|
|
});
|
|
|
|
// register react angular wrappers
|
|
angular.module('grafana.services').service('dashboardLoaderSrv', DashboardLoaderSrv);
|
|
|
|
coreModule.factory('timeSrv', () => getTimeSrv());
|
|
coreModule.factory('templateSrv', () => getTemplateSrv());
|
|
|
|
registerAngularDirectives();
|
|
registerComponents();
|
|
initAngularRoutingBridge();
|
|
|
|
// Angular plugins import this
|
|
exposeToPlugin('angular', angular);
|
|
exposeToPlugin('app/core/utils/promiseToDigest', { promiseToDigest, __esModule: true });
|
|
exposeToPlugin('app/plugins/sdk', sdk);
|
|
exposeToPlugin('app/core/core_module', coreModule);
|
|
exposeToPlugin('app/core/core', {
|
|
coreModule: coreModule,
|
|
appEvents: appEvents,
|
|
contextSrv: contextSrv,
|
|
__esModule: true,
|
|
});
|
|
|
|
// disable tool tip animation
|
|
$.fn.tooltip.defaults.animation = false;
|
|
}
|
|
|
|
useModule(module: angular.IModule) {
|
|
if (this.preBootModules) {
|
|
this.preBootModules.push(module);
|
|
} else {
|
|
extend(module, this.registerFunctions);
|
|
}
|
|
this.ngModuleDependencies.push(module.name);
|
|
return module;
|
|
}
|
|
|
|
bootstrap() {
|
|
const injector = angular.bootstrap(document.getElementById('ngRoot')!, this.ngModuleDependencies);
|
|
|
|
monkeyPatchInjectorWithPreAssignedBindings(injector);
|
|
|
|
injector.invoke(() => {
|
|
this.preBootModules.forEach((module) => {
|
|
extend(module, this.registerFunctions);
|
|
});
|
|
|
|
// I don't know
|
|
return () => {};
|
|
});
|
|
|
|
return injector;
|
|
}
|
|
}
|