user.js 13 KB

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