Security.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. <template>
  2. <div class="content security-tab">
  3. <div v-if="isPasswordLinked">
  4. <h4 class="section-title">Change password</h4>
  5. <p class="section-description">
  6. You will need to know your previous password.
  7. </p>
  8. <hr class="section-horizontal-rule" />
  9. <p class="control is-expanded margin-top-zero">
  10. <label for="previous-password">Previous password</label>
  11. <input
  12. class="input"
  13. id="previous-password"
  14. type="password"
  15. placeholder="Enter your old password here..."
  16. v-model="previousPassword"
  17. />
  18. </p>
  19. <p id="new-password-again-input" class="control is-expanded">
  20. <label for="new-password">New password</label>
  21. <input
  22. class="input"
  23. id="new-password"
  24. type="password"
  25. placeholder="Enter new password here..."
  26. v-model="validation.newPassword.value"
  27. @keyup.enter="changePassword()"
  28. @blur="onInputBlur('newPassword')"
  29. />
  30. </p>
  31. <transition name="fadein-helpbox">
  32. <input-help-box
  33. v-if="validation.newPassword.entered"
  34. :valid="validation.newPassword.valid"
  35. :message="validation.newPassword.message"
  36. ></input-help-box>
  37. </transition>
  38. <p class="control">
  39. <button
  40. id="change-password-button"
  41. class="button is-success"
  42. @click.prevent="changePassword()"
  43. >
  44. Change password
  45. </button>
  46. </p>
  47. <div class="section-margin-bottom" />
  48. </div>
  49. <div v-if="!isPasswordLinked">
  50. <h4 class="section-title">Add a password</h4>
  51. <p class="section-description">
  52. Add a password, as an alternative to signing in with GitHub.
  53. </p>
  54. <hr class="section-horizontal-rule" />
  55. <router-link to="/set_password" class="button is-default" href="#"
  56. ><i class="material-icons icon-with-button">create</i>Set
  57. Password
  58. </router-link>
  59. <div class="section-margin-bottom" />
  60. </div>
  61. <div v-if="!isGithubLinked">
  62. <h4 class="section-title">Link GitHub</h4>
  63. <p class="section-description">
  64. Link your Musare account with GitHub.
  65. </p>
  66. <hr class="section-horizontal-rule" />
  67. <a
  68. class="button is-github"
  69. :href="`${serverDomain}/auth/github/link`"
  70. >
  71. <div class="icon">
  72. <img class="invert" src="/assets/social/github.svg" />
  73. </div>
  74. &nbsp; Link GitHub to account
  75. </a>
  76. <div class="section-margin-bottom" />
  77. </div>
  78. <div v-if="isPasswordLinked && isGithubLinked">
  79. <h4 class="section-title">Remove login methods</h4>
  80. <p class="section-description">
  81. Remove your password as a login method or unlink GitHub.
  82. </p>
  83. <hr class="section-horizontal-rule" />
  84. <div>
  85. <a
  86. v-if="isPasswordLinked"
  87. class="button is-danger"
  88. href="#"
  89. @click.prevent="unlinkPassword()"
  90. >
  91. <i class="material-icons icon-with-button">close</i>
  92. Remove password
  93. </a>
  94. <a
  95. class="button is-danger"
  96. href="#"
  97. @click.prevent="unlinkGitHub()"
  98. >
  99. <i class="material-icons icon-with-button">link_off</i>
  100. Remove GitHub from account
  101. </a>
  102. </div>
  103. <div class="section-margin-bottom" />
  104. </div>
  105. <div>
  106. <h4 class="section-title">Log out everywhere</h4>
  107. <p class="section-description">
  108. Remove all currently logged-in sessions for your account.
  109. </p>
  110. <hr class="section-horizontal-rule" />
  111. <a
  112. class="button is-warning"
  113. href="#"
  114. @click.prevent="removeSessions()"
  115. >
  116. <i class="material-icons icon-with-button">exit_to_app</i>
  117. Log out everywhere
  118. </a>
  119. </div>
  120. </div>
  121. </template>
  122. <script>
  123. import Toast from "toasters";
  124. import { mapGetters, mapState } from "vuex";
  125. import validation from "../../../validation";
  126. import InputHelpBox from "../../../components/ui/InputHelpBox.vue";
  127. export default {
  128. components: { InputHelpBox },
  129. data() {
  130. return {
  131. serverDomain: "",
  132. previousPassword: "",
  133. validation: {
  134. newPassword: {
  135. value: "",
  136. valid: false,
  137. entered: false,
  138. message: "Please enter a valid password."
  139. }
  140. }
  141. };
  142. },
  143. computed: {
  144. ...mapGetters({
  145. isPasswordLinked: "settings/isPasswordLinked",
  146. isGithubLinked: "settings/isGithubLinked",
  147. socket: "websockets/getSocket"
  148. }),
  149. ...mapState({
  150. userId: state => state.user.auth.userId
  151. })
  152. },
  153. watch: {
  154. // eslint-disable-next-line func-names
  155. "validation.newPassword.value": function(value) {
  156. if (!validation.isLength(value, 6, 200)) {
  157. this.validation.newPassword.message =
  158. "Password must have between 6 and 200 characters.";
  159. this.validation.newPassword.valid = false;
  160. } else if (!validation.regex.password.test(value)) {
  161. this.validation.newPassword.message =
  162. "Invalid password format. Must have one lowercase letter, one uppercase letter, one number and one special character.";
  163. this.validation.newPassword.valid = false;
  164. } else {
  165. this.validation.newPassword.message = "Everything looks great!";
  166. this.validation.newPassword.valid = true;
  167. }
  168. }
  169. },
  170. async mounted() {
  171. this.serverDomain = await lofig.get("serverDomain");
  172. },
  173. methods: {
  174. onInputBlur(inputName) {
  175. this.validation[inputName].entered = true;
  176. },
  177. changePassword() {
  178. const newPassword = this.validation.newPassword.value;
  179. if (this.previousPassword === "")
  180. return new Toast({
  181. content: "Please enter a previous password.",
  182. timeout: 8000
  183. });
  184. if (!this.validation.newPassword.valid)
  185. return new Toast({
  186. content: "Please enter a valid new password.",
  187. timeout: 8000
  188. });
  189. return this.socket.dispatch(
  190. "users.updatePassword",
  191. this.previousPassword,
  192. newPassword,
  193. res => {
  194. if (res.status !== "success")
  195. new Toast({ content: res.message, timeout: 8000 });
  196. else {
  197. this.previousPassword = "";
  198. this.validation.newPassword.value = "";
  199. new Toast({
  200. content: "Successfully changed password.",
  201. timeout: 4000
  202. });
  203. }
  204. }
  205. );
  206. },
  207. unlinkPassword() {
  208. this.socket.dispatch("users.unlinkPassword", res => {
  209. new Toast({ content: res.message, timeout: 8000 });
  210. });
  211. },
  212. unlinkGitHub() {
  213. this.socket.dispatch("users.unlinkGitHub", res => {
  214. new Toast({ content: res.message, timeout: 8000 });
  215. });
  216. },
  217. removeSessions() {
  218. this.socket.dispatch(`users.removeSessions`, this.userId, res => {
  219. new Toast({ content: res.message, timeout: 4000 });
  220. });
  221. }
  222. }
  223. };
  224. </script>
  225. <style lang="scss" scoped>
  226. #change-password-button {
  227. margin-top: 10px;
  228. }
  229. </style>