Commit 96d28703 by Torkel Ödegaard Committed by GitHub

Merge pull request #14963 from grafana/hugoh/bug-viewers-can-edit-not-working-for-explore

Viewers can edit now means that viewers have access to Explore
parents c188a44b 721e40db
......@@ -165,6 +165,7 @@ func (hs *HTTPServer) getFrontendSettingsMap(c *m.ReqContext) (map[string]interf
"externalUserMngInfo": setting.ExternalUserMngInfo,
"externalUserMngLinkUrl": setting.ExternalUserMngLinkUrl,
"externalUserMngLinkName": setting.ExternalUserMngLinkName,
"viewersCanEdit": setting.ViewersCanEdit,
"buildInfo": map[string]interface{}{
"version": setting.BuildVersion,
"commit": setting.BuildCommit,
......
......@@ -140,7 +140,7 @@ func (hs *HTTPServer) setIndexViewData(c *m.ReqContext) (*dtos.IndexViewData, er
Children: dashboardChildNavs,
})
if setting.ExploreEnabled && (c.OrgRole == m.ROLE_ADMIN || c.OrgRole == m.ROLE_EDITOR) {
if setting.ExploreEnabled && (c.OrgRole == m.ROLE_ADMIN || c.OrgRole == m.ROLE_EDITOR || setting.ViewersCanEdit) {
data.NavTree = append(data.NavTree, &dtos.NavLink{
Text: "Explore",
Id: "explore",
......
......@@ -34,6 +34,7 @@ export class Settings {
disableUserSignUp: boolean;
loginHint: any;
loginError: any;
viewersCanEdit: boolean;
constructor(options) {
const defaults = {
......@@ -50,6 +51,7 @@ export class Settings {
env: 'production',
isEnterprise: false,
},
viewersCanEdit: false,
};
_.extend(this, defaults, options);
......
......@@ -61,6 +61,10 @@ export class ContextSrv {
store.set('grafana.sidemenu', this.sidemenu);
}
hasAccessToExplore() {
return (this.isEditor || config.viewersCanEdit) && config.exploreEnabled;
}
getTheme(): ThemeName {
return this.user.lightTheme ? ThemeNames.Light : ThemeNames.Dark;
}
......
import $ from 'jquery';
import _ from 'lodash';
import config from 'app/core/config';
import coreModule from 'app/core/core_module';
import appEvents from 'app/core/app_events';
import { getExploreUrl } from 'app/core/utils/explore';
import Mousetrap from 'mousetrap';
import 'mousetrap-global-bind';
import { ContextSrv } from './context_srv';
export class KeybindingSrv {
helpModal: boolean;
......@@ -21,7 +21,7 @@ export class KeybindingSrv {
private $timeout,
private datasourceSrv,
private timeSrv,
private contextSrv
private contextSrv: ContextSrv
) {
// clear out all shortcuts on route change
$rootScope.$on('$routeChangeSuccess', () => {
......@@ -196,7 +196,7 @@ export class KeybindingSrv {
});
// jump to explore if permissions allow
if (this.contextSrv.isEditor && config.exploreEnabled) {
if (this.contextSrv.hasAccessToExplore()) {
this.bind('x', async () => {
if (dashboard.meta.focusPanelId) {
const panel = dashboard.getPanelById(dashboard.meta.focusPanelId);
......
import _ from 'lodash';
import kbn from 'app/core/utils/kbn';
import config from 'app/core/config';
import { PanelCtrl } from 'app/features/panel/panel_ctrl';
import { getExploreUrl } from 'app/core/utils/explore';
import { applyPanelTimeOverrides, getResolution } from 'app/features/dashboard/utils/panel';
import { ContextSrv } from 'app/core/services/context_srv';
class MetricsPanelCtrl extends PanelCtrl {
scope: any;
datasource: any;
$q: any;
$timeout: any;
contextSrv: any;
contextSrv: ContextSrv;
datasourceSrv: any;
timeSrv: any;
templateSrv: any;
......@@ -231,7 +231,7 @@ class MetricsPanelCtrl extends PanelCtrl {
getAdditionalMenuItems() {
const items = [];
if (config.exploreEnabled && this.contextSrv.isEditor && this.datasource) {
if (this.contextSrv.hasAccessToExplore() && this.datasource) {
items.push({
text: 'Explore',
click: 'ctrl.explore();',
......
jest.mock('app/core/core', () => ({}));
jest.mock('app/core/config', () => {
return {
exploreEnabled: true,
panels: {
test: {
id: 'test',
......@@ -16,46 +15,45 @@ import { PanelModel } from 'app/features/dashboard/panel_model';
import { MetricsPanelCtrl } from '../metrics_panel_ctrl';
describe('MetricsPanelCtrl', () => {
let ctrl;
beforeEach(() => {
ctrl = setupController();
});
describe('when getting additional menu items', () => {
let additionalItems;
describe('and has no datasource set but user has access to explore', () => {
it('should not return any items', () => {
const ctrl = setupController({ hasAccessToExplore: true });
describe('and has no datasource set', () => {
beforeEach(() => {
additionalItems = ctrl.getAdditionalMenuItems();
expect(ctrl.getAdditionalMenuItems().length).toBe(0);
});
});
describe('and has datasource set that supports explore and user does not have access to explore', () => {
it('should not return any items', () => {
expect(additionalItems.length).toBe(0);
const ctrl = setupController({ hasAccessToExplore: false });
ctrl.datasource = { meta: { explore: true } };
expect(ctrl.getAdditionalMenuItems().length).toBe(0);
});
});
describe('and has datasource set that supports explore and user has powers', () => {
beforeEach(() => {
ctrl.contextSrv = { isEditor: true };
describe('and has datasource set that supports explore and user has access to explore', () => {
it('should return one item', () => {
const ctrl = setupController({ hasAccessToExplore: true });
ctrl.datasource = { meta: { explore: true } };
additionalItems = ctrl.getAdditionalMenuItems();
});
it('should not return any items', () => {
expect(additionalItems.length).toBe(1);
expect(ctrl.getAdditionalMenuItems().length).toBe(1);
});
});
});
});
function setupController() {
function setupController({ hasAccessToExplore } = { hasAccessToExplore: false }) {
const injectorStub = {
get: type => {
switch (type) {
case '$q': {
return q;
}
case 'contextSrv': {
return { hasAccessToExplore: () => hasAccessToExplore };
}
default: {
return jest.fn();
}
......
......@@ -16,6 +16,7 @@ import UsersListPage from 'app/features/users/UsersListPage';
import DataSourceDashboards from 'app/features/datasources/DataSourceDashboards';
import DataSourceSettingsPage from '../features/datasources/settings/DataSourceSettingsPage';
import OrgDetailsPage from '../features/org/OrgDetailsPage';
import config from 'app/core/config';
/** @ngInject */
export function setupAngularRoutes($routeProvider, $locationProvider) {
......@@ -129,7 +130,7 @@ export function setupAngularRoutes($routeProvider, $locationProvider) {
template: '<react-container />',
reloadOnSearch: false,
resolve: {
roles: () => ['Editor', 'Admin'],
roles: () => (config.viewersCanEdit ? [] : ['Editor', 'Admin']),
component: () => import(/* webpackChunkName: "explore" */ 'app/features/explore/Wrapper'),
},
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment