user.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. import { REST } from 'vuejs/api/rest-axios'
  2. // import { JSONAPI } from 'vuejs/api/json-axios'
  3. import { MA } from 'vuejs/api/ma-axios'
  4. import qs from 'querystring-es3'
  5. import materiauGQL from 'vuejs/api/gql/materiauflaglist.fragment.gql'
  6. import router from 'vuejs/route' // this is not working
  7. export default {
  8. namespaced: true,
  9. // router,
  10. // initial state
  11. state: {
  12. uid: null,
  13. // username: '',
  14. mail: '',
  15. csrf_token: null,
  16. logout_token: null,
  17. loginMessage: '',
  18. registerMessage: '',
  19. isloggedin: false,
  20. isAdmin: false,
  21. isAdherent: false,
  22. canSearch: false,
  23. roles: [],
  24. flagcolls: false,
  25. flagcollsLoadedItems: {},
  26. openedCollid: null
  27. },
  28. // getters
  29. getters: {},
  30. // mutations
  31. mutations: {
  32. SetCsrftoken (state, token) {
  33. console.log('SetCsrftoken', token)
  34. state.csrf_token = token
  35. },
  36. setToken (state, data) {
  37. console.log('setToken', data)
  38. state.uid = data.current_user.uid
  39. // state.username = data.username;
  40. state.mail = data.current_user.mail
  41. state.csrf_token = data.csrf_token
  42. state.isloggedin = true
  43. state.logout_token = data.logout_token
  44. },
  45. setLoginMessage (state, message) {
  46. console.log('setLoginMessage', message)
  47. state.loginMessage = message
  48. },
  49. setRegisterMessage (state, message) {
  50. console.log('setRegisterMessage', message)
  51. state.registerMessage = message
  52. },
  53. setUid (state, uid) {
  54. state.uid = uid
  55. state.isloggedin = true
  56. },
  57. setUser (state, data) {
  58. state.mail = data.mail[0].value
  59. state.uuid = data.uuid[0].value
  60. },
  61. setRoles (state, roles) {
  62. console.log('User setRoles', roles)
  63. state.roles = []
  64. for (let i = 0; i < roles.length; i++) {
  65. state.roles.push(roles[i].target_id)
  66. }
  67. // check if admin
  68. if (
  69. state.roles.indexOf('admin') !== -1 ||
  70. state.roles.indexOf('root') !== -1
  71. ) {
  72. // console.log('is admin')
  73. state.isAdmin = true
  74. }
  75. // check if has access to search
  76. if (state.roles.indexOf('adherent') !== -1 ||
  77. state.roles.indexOf('student') !== -1) {
  78. // console.log('is admin')
  79. state.canSearch = true
  80. state.isAdherent = true
  81. }
  82. },
  83. setLoggedOut (state) {
  84. console.log('setLoggedOut state', state)
  85. state.uid = null
  86. state.mail = ''
  87. state.csrf_token = null
  88. state.isloggedin = false
  89. state.logout_token = null
  90. state.asAdmin = false
  91. state.canSearch = false
  92. // if (state.isAdmin) {
  93. // // TODO: what if on a page where login is needed (as commerce checkout and cart)
  94. // window.location.reload(true)
  95. // } else {
  96. //
  97. // // return systematically to home page
  98. // this.$router.push({
  99. // name:`home`
  100. // // params: { alias:this.alias }
  101. // // query: { nid: this.item.nid }
  102. // // meta: { uuid:this.item.uuid },
  103. // })
  104. // }
  105. // redirect to home page in every case
  106. window.location = window.location.origin
  107. },
  108. setFlagColls (state, flagcolls) {
  109. console.log('User pre setFlagColls', state.flagcolls)
  110. state.flagcolls = flagcolls
  111. // console.log('User post setFlagColls', state.flagcolls)
  112. },
  113. openFlagColl (state, collid) {
  114. state.openedCollid = collid
  115. },
  116. closeFlagColl (state) {
  117. state.openedCollid = null
  118. },
  119. setLoadedCollItems (state, data) {
  120. console.log('setLoadedCollItems', data)
  121. // if no data, we are just calling the mutation to trigger the component update
  122. if (data) {
  123. state.flagcollsLoadedItems[data.collid] = data.items
  124. }
  125. }
  126. },
  127. // actions
  128. actions: {
  129. userRegister ({ dispatch, commit, state }, credentials) {
  130. return new Promise((resolve) => {
  131. REST.get('/session/token').then(({ token }) => {
  132. commit('SetCsrftoken', token)
  133. REST.post('/user/register?_format=json', credentials, {
  134. 'X-CSRF-Token': state.csrftoken,
  135. validateStatus: function (status) {
  136. return status >= 200 && status < 500
  137. }
  138. })
  139. .then((response) => {
  140. console.log('user REST registered', response)
  141. if (response.status === 200) {
  142. dispatch('userLogin', credentials).then(() => {
  143. resolve()
  144. })
  145. } else {
  146. let message = ''
  147. switch (response.status) {
  148. case 422:
  149. message = 'email is already registered'
  150. break
  151. default:
  152. message = response.data.message
  153. }
  154. commit('setRegisterMessage', message)
  155. }
  156. })
  157. .catch(error => {
  158. console.warn('Issue with register', error)
  159. Promise.reject(error)
  160. })
  161. })
  162. })
  163. },
  164. userLogin ({ dispatch, commit, state }, credentials) {
  165. return new Promise((resolve, reject) => {
  166. dispatch('getToken', credentials)
  167. // TODO: catch failed login
  168. .then((response) => {
  169. console.log('userLogin dispatch getToken response', response)
  170. if (response.status === 200) {
  171. commit('setToken', response.data)
  172. dispatch('getUser').then(userdata => {
  173. console.log('User Loggedin', state.isAdmin, state.isAdherent)
  174. if (state.isAdmin) {
  175. window.location.reload(true)
  176. }
  177. if (state.isAdherent) {
  178. router.push({
  179. name: 'base'
  180. })
  181. // TODO: openCloseHamMenu(false)
  182. dispatch('Common/openCloseHamMenu', false)
  183. }
  184. resolve()
  185. })
  186. } else {
  187. commit('setLoginMessage', response.data.message)
  188. console.warn('Issue with getToken', response)
  189. console.log('user loggein failed')
  190. Promise.reject(new Error('user loggein failed'))
  191. }
  192. })
  193. .catch(error => {
  194. console.warn('Issue with Dispatch getToken', error)
  195. Promise.reject(error)
  196. })
  197. })
  198. },
  199. getToken ({ dispatch, commit, state }, credentials) {
  200. return REST.post('/user/login?_format=json',
  201. credentials,
  202. {
  203. validateStatus: function (status) {
  204. return status >= 200 && status < 500
  205. }
  206. })
  207. },
  208. getUser ({ dispatch, commit, state }) {
  209. return new Promise((resolve, reject) => {
  210. REST.get('/session/token').then(({ data }) => {
  211. console.log('csrftoken', data)
  212. commit('SetCsrftoken', data)
  213. console.log('state.csrf_token', state.csrf_token)
  214. const params = {
  215. token: state.csrf_token
  216. }
  217. REST.get(`/user/${state.uid}?_format=json`, params)
  218. .then(({ data }) => {
  219. console.log('user REST getUser data', data)
  220. console.log('roles', data.roles)
  221. commit('setUser', data)
  222. if (data.roles) {
  223. commit('setRoles', data.roles)
  224. }
  225. dispatch('getUserFlagColls')
  226. resolve()
  227. })
  228. .catch(error => {
  229. console.warn('Issue with getUser', error)
  230. Promise.reject(error)
  231. })
  232. })
  233. })
  234. },
  235. getUserFlagColls ({ dispatch, commit, state }) {
  236. // flags
  237. // REST.get('/flagging_collection/1?_format=json')
  238. // .then((data) => {
  239. // console.log('TEST FLAG REST data', data)
  240. // })
  241. // .catch(error => {
  242. // console.warn('Issue USER TEST FLAG REST', error)
  243. // Promise.reject(error)
  244. // })
  245. return MA.get('materio_flag/user_flagging_collections')
  246. .then(({ data }) => {
  247. console.log('user MA getFlags data', data)
  248. commit('setFlagColls', data)
  249. })
  250. .catch(error => {
  251. console.warn('Issue USER MA getFlags', error)
  252. Promise.reject(error)
  253. })
  254. },
  255. // https://drupal.stackexchange.com/questions/248539/cant-get-flagging-api-to-accept-post-request
  256. createFlagColl ({ dispatch, commit, state }, newCollectionName) {
  257. console.log('user createFlagColl', newCollectionName)
  258. return new Promise((resolve, reject) => {
  259. const params = {
  260. name: newCollectionName
  261. }
  262. MA.post('materio_flag/create_user_flagging_collection', params)
  263. .then(({ data }) => {
  264. console.log('user MA createFlagColl data', data)
  265. if (data.status) {
  266. dispatch('getUserFlagColls').then(() => {
  267. resolve(data)
  268. })
  269. }
  270. })
  271. .catch(error => {
  272. console.warn('Issue USER MA createFlag', error)
  273. reject(error)
  274. })
  275. })
  276. },
  277. deleteFlagColl ({ dispatch, commit, state }, flagcollid) {
  278. console.log('user deleteFlagColl', flagcollid)
  279. return new Promise((resolve, reject) => {
  280. const params = {
  281. flagcollid: flagcollid
  282. }
  283. MA.post('materio_flag/delete_user_flagging_collection', params)
  284. .then(({ data }) => {
  285. console.log('user MA deleteFlagColl data', data)
  286. dispatch('getUserFlagColls').then(() => {
  287. resolve()
  288. })
  289. })
  290. .catch(error => {
  291. console.warn('Issue USER MA createFlag', error)
  292. reject(error)
  293. })
  294. })
  295. },
  296. flagUnflag ({ dispatch, commit, state }, { action, id, collid }) {
  297. console.log('user flagUnflag', action, id, collid)
  298. return new Promise((resolve, reject) => {
  299. const params = {
  300. flagid: state.flagcolls[collid].flag_id,
  301. id: id,
  302. flagcollid: collid
  303. }
  304. return MA.post(`materio_flag/${action}`, params)
  305. .then(({ data }) => {
  306. console.log('user MA flag', data)
  307. // reload the fulllist of flagcolleciton
  308. dispatch('getUserFlagColls').then(() => {
  309. if (state.flagcolls[collid].items.length) {
  310. dispatch('loadMaterialsGQL', {
  311. ids: state.flagcolls[collid].items,
  312. gqlfragment: materiauGQL,
  313. callBack: 'loadMaterialsCallBack',
  314. callBackArgs: { collid: collid }
  315. }).then(() => {
  316. resolve()
  317. })
  318. // dispatch('loadMaterials', {
  319. // uuids: state.flagcolls[collid].items_uuids,
  320. // imgStyle: ['card_medium_half'],
  321. // callBack: 'loadMaterialsCallBack',
  322. // callBackArgs: { collid: collid }
  323. // }).then(() => {
  324. // resolve()
  325. // })
  326. } else {
  327. commit('setLoadedCollItems', { collid: collid, items: [] })
  328. resolve()
  329. }
  330. })
  331. })
  332. .catch(error => {
  333. console.warn('Issue USER MA flagUnflag', error)
  334. })
  335. })
  336. },
  337. openFlagColl ({ commit, dispatch, state }, collid) {
  338. console.log('user openFlagColl', collid)
  339. commit('openFlagColl', collid)
  340. if (state.flagcolls[collid].items.length) {
  341. if (typeof state.flagcollsLoadedItems[collid] === 'undefined') {
  342. console.log('loading flagcoll items', state.flagcolls[collid])
  343. // if no loadedItems, load them
  344. // loadMaterials is on mixins
  345. // https://github.com/huybuidac/vuex-extensions
  346. dispatch('loadMaterialsGQL', {
  347. ids: state.flagcolls[collid].items,
  348. gqlfragment: materiauGQL,
  349. callBack: 'loadMaterialsCallBack',
  350. callBackArgs: { collid: collid }
  351. })
  352. // dispatch('loadMaterials', {
  353. // uuids: state.flagcolls[collid].items_uuids,
  354. // imgStyle: ['card_medium_half'],
  355. // callBack: 'loadMaterialsCallBack',
  356. // callBackArgs: { collid: collid }
  357. // })
  358. } else {
  359. // call the mutation without data to only trigger the FlagCollection component update
  360. console.log('committing setLoadedCollItems without args')
  361. commit('setLoadedCollItems')
  362. }
  363. } else {
  364. commit('setLoadedCollItems', { collid: collid, items: [] })
  365. }
  366. },
  367. loadMaterialsCallBack ({ commit }, { items, callBackArgs }) {
  368. console.log('user loadMaterialsCallBack', items, callBackArgs)
  369. commit('setLoadedCollItems', { collid: callBackArgs.collid, items: items })
  370. },
  371. closeFlagColl ({ commit, dispatch }) {
  372. console.log('user closeFlagColl')
  373. commit('closeFlagColl')
  374. },
  375. userLogout ({ commit, state }) {
  376. const credentials = qs.stringify({
  377. token: state.csrf_token
  378. })
  379. REST.post('/user/logout', credentials)
  380. .then(resp => {
  381. console.log('userLogout resp', resp)
  382. commit('setLoggedOut')
  383. // window.location.reload(true) ???
  384. })
  385. .catch(error => {
  386. console.warn('Issue with logout', error)
  387. Promise.reject(error)
  388. })
  389. }
  390. }
  391. }