aboutsummaryrefslogtreecommitdiff
path: root/profile/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'profile/index.js')
-rw-r--r--profile/index.js36
1 files changed, 36 insertions, 0 deletions
diff --git a/profile/index.js b/profile/index.js
index ded1ec4..ee81632 100644
--- a/profile/index.js
+++ b/profile/index.js
@@ -179,4 +179,40 @@ app.delete("/api/comment", async (req, res) => {
}
});
+// Char API
+app.get("/api/char/:uid", async (req, res) => {
+ const uid = req.params.uid;
+ const char = await db.query(
+ "SELECT txt FROM profile_char WHERE profile_id = ? AND user_id = ?",
+ [uid, req.session.uid],
+ );
+ res.json(char.length > 0 ? char[0] : {});
+});
+
+app.post("/api/char/:uid", async (req, res) => {
+ const uid = req.params.uid;
+ const { char } = req.body;
+ if (!char || char.length > 255) return res.json({ success: false });
+ try {
+ await db.query("INSERT INTO profile_char (profile_id, user_id, txt) VALUE (?,?,?)", [uid, req.session.uid, char]);
+ res.json({ success: true });
+ } catch (e) {
+ console.error(e);
+ res.json({ success: false });
+ }
+});
+
+app.put("/api/char/:uid", async (req, res) => {
+ const uid = req.params.uid;
+ const { char } = req.body;
+ if (!char || char.length > 255) return res.json({ success: false });
+ try {
+ await db.query("UPDATE profile_char SET txt = ? WHERE profile_id = ? AND user_id = ?", [char, uid, req.session.uid]);
+ res.json({ success: true });
+ } catch (e) {
+ console.error(e);
+ res.json({ success: false });
+ }
+});
+
module.exports = app;