Skip to content

Commit 4e87db5

Browse files
committedMar 14, 2022
[vue][app-select] Auth fixes
1 parent 38336e8 commit 4e87db5

File tree

3 files changed

+20
-11
lines changed

3 files changed

+20
-11
lines changed
 

‎frontend/express/public/javascripts/countly/countly.auth.js

+17
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,23 @@
168168
return validateWrite('d', feature, member, app_id);
169169
};
170170

171+
/**
172+
* validate all types of requests for specific feature on specific app
173+
* @param {string} accessType - write process type [c, r, u, d]
174+
* @param {string} feature - feature name that required access right
175+
* @param {object} member - countly member object
176+
* @param {string} app_id - countly application id
177+
* @return {boolean} result of permission check
178+
*/
179+
countlyAuth.validate = function(accessType, feature, member, app_id) {
180+
if (accessType === "r") {
181+
return countlyAuth.validateRead(feature, member, app_id);
182+
}
183+
else {
184+
return validateWrite(accessType, feature, member, app_id);
185+
}
186+
};
187+
171188
/**
172189
* Validate is this user global admin or not
173190
* @returns {boolean} is this user global admin or not?

‎frontend/express/public/javascripts/countly/vue/components/helpers.js

+2-10
Original file line numberDiff line numberDiff line change
@@ -474,17 +474,9 @@
474474
targetFeature = this.auth.feature;
475475

476476
return Object.keys(apps).reduce(function(acc, key) {
477-
var hasPermission,
478-
currentApp = apps[key];
477+
var currentApp = apps[key];
479478

480-
if (expectedPermission === "r") {
481-
hasPermission = countlyAuth.validateRead(targetFeature, null, currentApp._id);
482-
}
483-
else {
484-
hasPermission = countlyAuth.validateWrite(expectedPermission, targetFeature, null, currentApp._id);
485-
}
486-
487-
if (hasPermission) {
479+
if (countlyAuth.validate(expectedPermission, targetFeature, null, currentApp._id)) {
488480
acc.push({
489481
label: currentApp.name,
490482
value: currentApp._id

‎plugins/vue-example/frontend/public/templates/form.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ <h3>Checkbox group - plain</h3>
317317
</cly-section>
318318
<cly-section title="Helpers (cly-app-select, single)">
319319
<div class="example-cell">
320-
<cly-app-select v-model="selectedApp"></cly-app-select>
320+
<cly-app-select v-model="selectedApp" :auth='{"feature": "drill", "permission": "c"}'></cly-app-select>
321321
<cly-app-select v-model="selectedApp" allow-all></cly-app-select>
322322
</div>
323323
<div class="example-cell">

0 commit comments

Comments
 (0)