user.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  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. resolve()
  177. })
  178. } else {
  179. commit('setLoginMessage', response.data.message)
  180. console.warn('Issue with getToken', response)
  181. console.log('user loggein failed')
  182. Promise.reject(new Error('user loggein failed'))
  183. }
  184. })
  185. .catch(error => {
  186. console.warn('Issue with Dispatch getToken', error)
  187. Promise.reject(error)
  188. })
  189. })
  190. },
  191. getToken ({ dispatch, commit, state }, credentials) {
  192. return REST.post('/user/login?_format=json',
  193. credentials,
  194. {
  195. validateStatus: function (status) {
  196. return status >= 200 && status < 500
  197. }
  198. })
  199. },
  200. getUser ({ dispatch, commit, state }) {
  201. return new Promise((resolve, reject) => {
  202. REST.get('/session/token').then(({ data }) => {
  203. console.log('csrftoken', data)
  204. commit('SetCsrftoken', data)
  205. console.log('state.csrf_token', state.csrf_token)
  206. const params = {
  207. token: state.csrf_token
  208. }
  209. REST.get(`/user/${state.uid}?_format=json`, params)
  210. .then(({ data }) => {
  211. console.log('user REST getUser data', data)
  212. console.log('roles', data.roles)
  213. commit('setUser', data)
  214. if (data.roles) {
  215. commit('setRoles', data.roles)
  216. }
  217. dispatch('getUserFlagColls')
  218. resolve()
  219. })
  220. .catch(error => {
  221. console.warn('Issue with getUser', error)
  222. Promise.reject(error)
  223. })
  224. })
  225. })
  226. },
  227. getUserFlagColls ({ dispatch, commit, state }) {
  228. // flags
  229. // REST.get('/flagging_collection/1?_format=json')
  230. // .then((data) => {
  231. // console.log('TEST FLAG REST data', data)
  232. // })
  233. // .catch(error => {
  234. // console.warn('Issue USER TEST FLAG REST', error)
  235. // Promise.reject(error)
  236. // })
  237. return MA.get('materio_flag/user_flagging_collections')
  238. .then(({ data }) => {
  239. console.log('user MA getFlags data', data)
  240. commit('setFlagColls', data)
  241. })
  242. .catch(error => {
  243. console.warn('Issue USER MA getFlags', error)
  244. Promise.reject(error)
  245. })
  246. },
  247. // https://drupal.stackexchange.com/questions/248539/cant-get-flagging-api-to-accept-post-request
  248. createFlagColl ({ dispatch, commit, state }, newCollectionName) {
  249. console.log('user createFlagColl', newCollectionName)
  250. return new Promise((resolve, reject) => {
  251. const params = {
  252. name: newCollectionName
  253. }
  254. MA.post('materio_flag/create_user_flagging_collection', params)
  255. .then(({ data }) => {
  256. console.log('user MA createFlagColl data', data)
  257. if (data.status) {
  258. dispatch('getUserFlagColls').then(() => {
  259. resolve(data)
  260. })
  261. }
  262. })
  263. .catch(error => {
  264. console.warn('Issue USER MA createFlag', error)
  265. reject(error)
  266. })
  267. })
  268. },
  269. deleteFlagColl ({ dispatch, commit, state }, flagcollid) {
  270. console.log('user deleteFlagColl', flagcollid)
  271. return new Promise((resolve, reject) => {
  272. const params = {
  273. flagcollid: flagcollid
  274. }
  275. MA.post('materio_flag/delete_user_flagging_collection', params)
  276. .then(({ data }) => {
  277. console.log('user MA deleteFlagColl data', data)
  278. dispatch('getUserFlagColls').then(() => {
  279. resolve()
  280. })
  281. })
  282. .catch(error => {
  283. console.warn('Issue USER MA createFlag', error)
  284. reject(error)
  285. })
  286. })
  287. },
  288. flagUnflag ({ dispatch, commit, state }, { action, id, collid }) {
  289. console.log('user flagUnflag', action, id, collid)
  290. return new Promise((resolve, reject) => {
  291. const params = {
  292. flagid: state.flagcolls[collid].flag_id,
  293. id: id,
  294. flagcollid: collid
  295. }
  296. return MA.post(`materio_flag/${action}`, params)
  297. .then(({ data }) => {
  298. console.log('user MA flag', data)
  299. // reload the fulllist of flagcolleciton
  300. dispatch('getUserFlagColls').then(() => {
  301. if (state.flagcolls[collid].items.length) {
  302. dispatch('loadMaterialsGQL', {
  303. ids: state.flagcolls[collid].items,
  304. gqlfragment: materiauGQL,
  305. callBack: 'loadMaterialsCallBack',
  306. callBackArgs: { collid: collid }
  307. }).then(() => {
  308. resolve()
  309. })
  310. // dispatch('loadMaterials', {
  311. // uuids: state.flagcolls[collid].items_uuids,
  312. // imgStyle: ['card_medium_half'],
  313. // callBack: 'loadMaterialsCallBack',
  314. // callBackArgs: { collid: collid }
  315. // }).then(() => {
  316. // resolve()
  317. // })
  318. } else {
  319. commit('setLoadedCollItems', { collid: collid, items: [] })
  320. resolve()
  321. }
  322. })
  323. })
  324. .catch(error => {
  325. console.warn('Issue USER MA flagUnflag', error)
  326. })
  327. })
  328. },
  329. openFlagColl ({ commit, dispatch, state }, collid) {
  330. console.log('user openFlagColl', collid)
  331. commit('openFlagColl', collid)
  332. if (state.flagcolls[collid].items.length) {
  333. if (typeof state.flagcollsLoadedItems[collid] === 'undefined') {
  334. console.log('loading flagcoll items', state.flagcolls[collid])
  335. // if no loadedItems, load them
  336. // loadMaterials is on mixins
  337. // https://github.com/huybuidac/vuex-extensions
  338. dispatch('loadMaterialsGQL', {
  339. ids: state.flagcolls[collid].items,
  340. gqlfragment: materiauGQL,
  341. callBack: 'loadMaterialsCallBack',
  342. callBackArgs: { collid: collid }
  343. })
  344. // dispatch('loadMaterials', {
  345. // uuids: state.flagcolls[collid].items_uuids,
  346. // imgStyle: ['card_medium_half'],
  347. // callBack: 'loadMaterialsCallBack',
  348. // callBackArgs: { collid: collid }
  349. // })
  350. } else {
  351. // call the mutation without data to only trigger the FlagCollection component update
  352. console.log('committing setLoadedCollItems without args')
  353. commit('setLoadedCollItems')
  354. }
  355. } else {
  356. commit('setLoadedCollItems', { collid: collid, items: [] })
  357. }
  358. },
  359. loadMaterialsCallBack ({ commit }, { items, callBackArgs }) {
  360. console.log('user loadMaterialsCallBack', items, callBackArgs)
  361. commit('setLoadedCollItems', { collid: callBackArgs.collid, items: items })
  362. },
  363. closeFlagColl ({ commit, dispatch }) {
  364. console.log('user closeFlagColl')
  365. commit('closeFlagColl')
  366. },
  367. userLogout ({ commit, state }) {
  368. const credentials = qs.stringify({
  369. token: state.csrf_token
  370. })
  371. REST.post('/user/logout', credentials)
  372. .then(resp => {
  373. console.log('userLogout resp', resp)
  374. commit('setLoggedOut')
  375. // window.location.reload(true) ???
  376. })
  377. .catch(error => {
  378. console.warn('Issue with logout', error)
  379. Promise.reject(error)
  380. })
  381. }
  382. }
  383. }