mirror of
https://github.com/getredash/redash.git
synced 2026-03-21 16:00:09 -04:00
* Prettier all the JS files * Add GitHub Action to autoformat code pushed to master * Fix eslint violation due to formatting. * Remove GitHub actions for styling * Add restyled.io config
154 lines
4.4 KiB
JavaScript
154 lines
4.4 KiB
JavaScript
import { isString, get } from "lodash";
|
|
import { $http, $sanitize } from "@/services/ng";
|
|
import notification from "@/services/notification";
|
|
import { clientConfig } from "@/services/auth";
|
|
|
|
export let User = null; // eslint-disable-line import/no-mutable-exports
|
|
|
|
function disableResource(user) {
|
|
return `api/users/${user.id}/disable`;
|
|
}
|
|
|
|
function enableUser(user) {
|
|
const userName = $sanitize(user.name);
|
|
|
|
return $http
|
|
.delete(disableResource(user))
|
|
.then(data => {
|
|
notification.success(`User ${userName} is now enabled.`);
|
|
user.is_disabled = false;
|
|
user.profile_image_url = data.data.profile_image_url;
|
|
return data;
|
|
})
|
|
.catch(response => {
|
|
let message = get(response, "data.message", response.statusText);
|
|
if (!isString(message)) {
|
|
message = "Unknown error";
|
|
}
|
|
notification.error("Cannot enable user", message);
|
|
});
|
|
}
|
|
|
|
function disableUser(user) {
|
|
const userName = $sanitize(user.name);
|
|
return $http
|
|
.post(disableResource(user))
|
|
.then(data => {
|
|
notification.warning(`User ${userName} is now disabled.`);
|
|
user.is_disabled = true;
|
|
user.profile_image_url = data.data.profile_image_url;
|
|
return data;
|
|
})
|
|
.catch((response = {}) => {
|
|
const message = get(response, "data.message", response.statusText);
|
|
notification.error("Cannot disable user", message);
|
|
});
|
|
}
|
|
|
|
function deleteUser(user) {
|
|
const userName = $sanitize(user.name);
|
|
return $http
|
|
.delete(`api/users/${user.id}`)
|
|
.then(data => {
|
|
notification.warning(`User ${userName} has been deleted.`);
|
|
return data;
|
|
})
|
|
.catch((response = {}) => {
|
|
const message = get(response, "data.message", response.statusText);
|
|
notification.error("Cannot delete user", message);
|
|
});
|
|
}
|
|
|
|
function convertUserInfo(user) {
|
|
return {
|
|
id: user.id,
|
|
name: user.name,
|
|
email: user.email,
|
|
profileImageUrl: user.profile_image_url,
|
|
apiKey: user.api_key,
|
|
groupIds: user.groups,
|
|
isDisabled: user.is_disabled,
|
|
isInvitationPending: user.is_invitation_pending,
|
|
};
|
|
}
|
|
|
|
function regenerateApiKey(user) {
|
|
return $http
|
|
.post(`api/users/${user.id}/regenerate_api_key`)
|
|
.then(({ data }) => {
|
|
notification.success("The API Key has been updated.");
|
|
return data.api_key;
|
|
})
|
|
.catch((response = {}) => {
|
|
const message = get(response, "data.message", response.statusText);
|
|
notification.error("Failed regenerating API Key", message);
|
|
});
|
|
}
|
|
|
|
function sendPasswordReset(user) {
|
|
return $http
|
|
.post(`api/users/${user.id}/reset_password`)
|
|
.then(({ data }) => {
|
|
if (clientConfig.mailSettingsMissing) {
|
|
notification.warning("The mail server is not configured.");
|
|
return data.reset_link;
|
|
}
|
|
notification.success("Password reset email sent.");
|
|
})
|
|
.catch((response = {}) => {
|
|
const message = get(response, "data.message", response.statusText);
|
|
notification.error("Failed to send password reset email", message);
|
|
});
|
|
}
|
|
|
|
function resendInvitation(user) {
|
|
return $http
|
|
.post(`api/users/${user.id}/invite`)
|
|
.then(({ data }) => {
|
|
if (clientConfig.mailSettingsMissing) {
|
|
notification.warning("The mail server is not configured.");
|
|
return data.invite_link;
|
|
}
|
|
notification.success("Invitation sent.");
|
|
})
|
|
.catch((response = {}) => {
|
|
const message = get(response, "data.message", response.statusText);
|
|
|
|
notification.error("Failed to resend invitation", message);
|
|
});
|
|
}
|
|
|
|
function UserService($resource) {
|
|
const actions = {
|
|
get: { method: "GET" },
|
|
create: { method: "POST" },
|
|
save: { method: "POST" },
|
|
query: { method: "GET", isArray: false },
|
|
delete: { method: "DELETE" },
|
|
disable: { method: "POST", url: "api/users/:id/disable" },
|
|
enable: { method: "DELETE", url: "api/users/:id/disable" },
|
|
};
|
|
|
|
const UserResource = $resource("api/users/:id", { id: "@id" }, actions);
|
|
|
|
UserResource.enableUser = enableUser;
|
|
UserResource.disableUser = disableUser;
|
|
UserResource.deleteUser = deleteUser;
|
|
UserResource.convertUserInfo = convertUserInfo;
|
|
UserResource.regenerateApiKey = regenerateApiKey;
|
|
UserResource.sendPasswordReset = sendPasswordReset;
|
|
UserResource.resendInvitation = resendInvitation;
|
|
|
|
return UserResource;
|
|
}
|
|
|
|
export default function init(ngModule) {
|
|
ngModule.factory("User", UserService);
|
|
|
|
ngModule.run($injector => {
|
|
User = $injector.get("User");
|
|
});
|
|
}
|
|
|
|
init.init = true;
|