Compare commits
No commits in common. "4872c4d82c580e21ea4554accfa5d5fb27705737" and "52ac5b73e42574c76f124618999d044fe9db714b" have entirely different histories.
4872c4d82c
...
52ac5b73e4
8 changed files with 20 additions and 124 deletions
13
package.json
13
package.json
|
@ -27,6 +27,9 @@
|
||||||
},
|
},
|
||||||
"license": "GPL-3.0-or-later",
|
"license": "GPL-3.0-or-later",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@babel/cli": "^7.17.0",
|
||||||
|
"@babel/core": "^7.17.2",
|
||||||
|
"@babel/preset-env": "^7.16.11",
|
||||||
"eslint": "^8.9.0",
|
"eslint": "^8.9.0",
|
||||||
"eslint-config-airbnb-base": "^15.0.0",
|
"eslint-config-airbnb-base": "^15.0.0",
|
||||||
"eslint-config-prettier": "^8.3.0",
|
"eslint-config-prettier": "^8.3.0",
|
||||||
|
@ -35,12 +38,11 @@
|
||||||
"husky": "^7.0.4",
|
"husky": "^7.0.4",
|
||||||
"lint-staged": "^12.3.3",
|
"lint-staged": "^12.3.3",
|
||||||
"nodemon": "^2.0.15",
|
"nodemon": "^2.0.15",
|
||||||
"prettier": "^2.5.1"
|
"npm-run-all": "^4.1.5",
|
||||||
|
"prettier": "^2.5.1",
|
||||||
|
"rimraf": "^3.0.2"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/cli": "^7.17.0",
|
|
||||||
"@babel/core": "^7.17.2",
|
|
||||||
"@babel/preset-env": "^7.16.11",
|
|
||||||
"axios": "^0.26.0",
|
"axios": "^0.26.0",
|
||||||
"connect-ensure-login": "^0.1.1",
|
"connect-ensure-login": "^0.1.1",
|
||||||
"connect-flash": "^0.1.1",
|
"connect-flash": "^0.1.1",
|
||||||
|
@ -52,17 +54,14 @@
|
||||||
"excel4node": "^1.7.2",
|
"excel4node": "^1.7.2",
|
||||||
"express": "^4.17.2",
|
"express": "^4.17.2",
|
||||||
"express-session": "^1.17.2",
|
"express-session": "^1.17.2",
|
||||||
"joi": "^17.6.0",
|
|
||||||
"knacss": "^8.0.4",
|
"knacss": "^8.0.4",
|
||||||
"moment": "^2.29.1",
|
"moment": "^2.29.1",
|
||||||
"moment-timezone": "^0.5.34",
|
"moment-timezone": "^0.5.34",
|
||||||
"mongoose": "^6.2.1",
|
"mongoose": "^6.2.1",
|
||||||
"mongoose-unique-validator": "^3.0.0",
|
"mongoose-unique-validator": "^3.0.0",
|
||||||
"npm-run-all": "^4.1.5",
|
|
||||||
"passport": "^0.5.2",
|
"passport": "^0.5.2",
|
||||||
"passport-http": "^0.3.0",
|
"passport-http": "^0.3.0",
|
||||||
"passport-local": "^1.0.0",
|
"passport-local": "^1.0.0",
|
||||||
"rimraf": "^3.0.2",
|
|
||||||
"sass": "^1.49.7",
|
"sass": "^1.49.7",
|
||||||
"vue": "^3.2.31"
|
"vue": "^3.2.31"
|
||||||
},
|
},
|
||||||
|
|
|
@ -16,7 +16,6 @@ import maCollectionRouter from "./routes/ma-collection";
|
||||||
|
|
||||||
import importAlbumRouterApiV1 from "./routes/api/v1/albums";
|
import importAlbumRouterApiV1 from "./routes/api/v1/albums";
|
||||||
import importSearchRouterApiV1 from "./routes/api/v1/search";
|
import importSearchRouterApiV1 from "./routes/api/v1/search";
|
||||||
import importMeRouterApiV1 from "./routes/api/v1/me";
|
|
||||||
|
|
||||||
// Mongoose schema init
|
// Mongoose schema init
|
||||||
require("./models/users");
|
require("./models/users");
|
||||||
|
@ -85,7 +84,6 @@ app.use("/", indexRouter);
|
||||||
app.use("/ma-collection", maCollectionRouter);
|
app.use("/ma-collection", maCollectionRouter);
|
||||||
app.use("/api/v1/albums", importAlbumRouterApiV1);
|
app.use("/api/v1/albums", importAlbumRouterApiV1);
|
||||||
app.use("/api/v1/search", importSearchRouterApiV1);
|
app.use("/api/v1/search", importSearchRouterApiV1);
|
||||||
app.use("/api/v1/me", importMeRouterApiV1);
|
|
||||||
|
|
||||||
// Handle 404
|
// Handle 404
|
||||||
app.use((req, res) => {
|
app.use((req, res) => {
|
||||||
|
|
|
@ -11,12 +11,6 @@ import ErrorEvent from "../libs/error";
|
||||||
* Classe permettant la gestion des albums d'un utilisateur
|
* Classe permettant la gestion des albums d'un utilisateur
|
||||||
*/
|
*/
|
||||||
class Albums extends Pages {
|
class Albums extends Pages {
|
||||||
/**
|
|
||||||
* Méthode permettant de remplacer certains cartactères par leur équivalents html
|
|
||||||
* @param {String} str
|
|
||||||
*
|
|
||||||
* @return {String}
|
|
||||||
*/
|
|
||||||
static replaceSpecialChars(str) {
|
static replaceSpecialChars(str) {
|
||||||
if (!str) {
|
if (!str) {
|
||||||
return "";
|
return "";
|
||||||
|
|
|
@ -1,46 +0,0 @@
|
||||||
import Joi from "joi";
|
|
||||||
import mongoose from "mongoose";
|
|
||||||
|
|
||||||
const Users = mongoose.model("Users");
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Classe permettant la gestion de l'utilisateur connecté
|
|
||||||
*/
|
|
||||||
class Me {
|
|
||||||
constructor(req) {
|
|
||||||
this.req = req;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Méthode permettant de modifier le profil d'un utilisateur
|
|
||||||
* @return {Object}
|
|
||||||
*/
|
|
||||||
async patchMe() {
|
|
||||||
const { body, user } = this.req;
|
|
||||||
|
|
||||||
const schema = Joi.object({
|
|
||||||
isPublicCollection: Joi.boolean(),
|
|
||||||
});
|
|
||||||
|
|
||||||
const value = await schema.validateAsync(body);
|
|
||||||
const update = await Users.findByIdAndUpdate(
|
|
||||||
user._id,
|
|
||||||
{ $set: value },
|
|
||||||
{ new: true }
|
|
||||||
);
|
|
||||||
|
|
||||||
await new Promise((resolve, reject) => {
|
|
||||||
this.req.login(update, (err) => {
|
|
||||||
if (err) {
|
|
||||||
return reject(err);
|
|
||||||
}
|
|
||||||
|
|
||||||
return resolve(null);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
return update;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default Me;
|
|
|
@ -1,7 +1,5 @@
|
||||||
/* eslint-disable func-names */
|
/* eslint-disable func-names */
|
||||||
/* eslint-disable no-invalid-this */
|
/* eslint-disable no-invalid-this */
|
||||||
/* eslint-disable no-param-reassign */
|
|
||||||
|
|
||||||
import mongoose from "mongoose";
|
import mongoose from "mongoose";
|
||||||
import uniqueValidator from "mongoose-unique-validator";
|
import uniqueValidator from "mongoose-unique-validator";
|
||||||
import crypto from "crypto";
|
import crypto from "crypto";
|
||||||
|
@ -30,15 +28,7 @@ const UserSchema = new mongoose.Schema(
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{ timestamps: true }
|
||||||
timestamps: true,
|
|
||||||
toJSON: {
|
|
||||||
transform(doc, ret) {
|
|
||||||
delete ret.hash;
|
|
||||||
delete ret.salt;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
);
|
);
|
||||||
|
|
||||||
UserSchema.plugin(uniqueValidator, { message: "est déjà utilisé" });
|
UserSchema.plugin(uniqueValidator, { message: "est déjà utilisé" });
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
import express from "express";
|
|
||||||
import { ensureLoggedIn } from "connect-ensure-login";
|
|
||||||
|
|
||||||
import { sendResponse } from "../../../libs/format";
|
|
||||||
|
|
||||||
import Me from "../../../middleware/Me";
|
|
||||||
|
|
||||||
// eslint-disable-next-line new-cap
|
|
||||||
const router = express.Router();
|
|
||||||
|
|
||||||
router
|
|
||||||
.route("/")
|
|
||||||
.patch(ensureLoggedIn("/connexion"), async (req, res, next) => {
|
|
||||||
try {
|
|
||||||
const me = new Me(req);
|
|
||||||
const data = await me.patchMe();
|
|
||||||
|
|
||||||
return sendResponse(req, res, data);
|
|
||||||
} catch (err) {
|
|
||||||
return next(err);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
export default router;
|
|
|
@ -10,7 +10,7 @@ const router = express.Router();
|
||||||
|
|
||||||
router.route("/").get(ensureLoggedIn("/connexion"), async (req, res, next) => {
|
router.route("/").get(ensureLoggedIn("/connexion"), async (req, res, next) => {
|
||||||
try {
|
try {
|
||||||
const page = new Albums(req, "mon-compte/ma-collection/index");
|
const page = new Albums(req, "mon-compte/ma-collection");
|
||||||
|
|
||||||
await page.loadMyCollection();
|
await page.loadMyCollection();
|
||||||
|
|
||||||
|
|
|
@ -115,26 +115,16 @@
|
||||||
Partager ma collection
|
Partager ma collection
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<template v-if="!isPublicCollection">
|
Votre collection sera visible de toute personne disposant du lien suivant :
|
||||||
Votre collection sera visible de toute personne disposant du lien suivant :
|
<br />
|
||||||
<br />
|
<a :href="shareLink" target="_blank">{{shareLink}}</a>
|
||||||
<a :href="shareLink" target="_blank">{{shareLink}}</a>
|
<br />
|
||||||
<br />
|
Ce lien permet uniquement de visualiser l'ensemble de votre collection mais ne perment <strong class="is-danger">en aucun cas</strong> de la modifier.
|
||||||
Ce lien permet uniquement de visualiser l'ensemble de votre collection mais ne perment <strong class="is-danger">en aucun cas</strong> de la modifier.
|
<br />
|
||||||
<br />
|
Vous pourrez à tout moment supprimer le lien de partage en cliquant à nouveau sur l'icône <i class="icon-share"></i> sur votre collection.
|
||||||
Vous pourrez à tout moment supprimer le lien de partage en cliquant à nouveau sur l'icône <i class="icon-share"></i> sur votre collection.
|
|
||||||
</template>
|
|
||||||
<template v-if="isPublicCollection">
|
|
||||||
Vous êtes sur le point de rendre votre collection privée.
|
|
||||||
<br />
|
|
||||||
Toute les personnes ayant le lien partagé ne pourront plus accéder à votre collection.
|
|
||||||
<br />
|
|
||||||
Vous pourrez à tout moment rendre à nouveau votre collection publique en cliquant sur l'icône <i class="icon-share"></i>.
|
|
||||||
</template>
|
|
||||||
</section>
|
</section>
|
||||||
<footer>
|
<footer>
|
||||||
<button v-if="!isPublicCollection" class="button is-primary" @click="shareCollection">Partager</button>
|
<button class="button is-primary" @click="shareCollection">Partager</button>
|
||||||
<button v-if="isPublicCollection" class="button is-danger" @click="shareCollection">Supprimer</button>
|
|
||||||
<button class="button" @click="toggleModalShare">Annuler</button>
|
<button class="button" @click="toggleModalShare">Annuler</button>
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
|
@ -165,7 +155,6 @@
|
||||||
showModalDelete: false,
|
showModalDelete: false,
|
||||||
showModalShare: false,
|
showModalShare: false,
|
||||||
shareLink: `${protocol}//${host}/collection/<%= user._id %>`,
|
shareLink: `${protocol}//${host}/collection/<%= user._id %>`,
|
||||||
isPublicCollection: <%= user.isPublicCollection ? 'true' : 'false' %>,
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
@ -252,17 +241,13 @@
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
shareCollection() {
|
shareCollection() {
|
||||||
axios.patch(`/api/v1/me`, {
|
axios.post(`/api/v1/me`, {
|
||||||
isPublicCollection: !this.isPublicCollection,
|
isPublicCollection: true,
|
||||||
})
|
})
|
||||||
.then( (res) => {
|
.then( () => {
|
||||||
this.isPublicCollection = res.data.isPublicCollection;
|
|
||||||
showToastr("Collection partagée", true);
|
showToastr("Collection partagée", true);
|
||||||
|
|
||||||
if ( this.isPublicCollection ) {
|
window.open(this.shareLink, '_blank');
|
||||||
console.log('ici', this.shareLink)
|
|
||||||
window.open(this.shareLink, '_blank');
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
showToastr(err.response?.data?.message || "Impossible de supprimer cet album");
|
showToastr(err.response?.data?.message || "Impossible de supprimer cet album");
|
Loading…
Reference in a new issue