summaryrefslogtreecommitdiff
path: root/wsmsg_unconfirm.go
diff options
context:
space:
mode:
Diffstat (limited to 'wsmsg_unconfirm.go')
-rw-r--r--wsmsg_unconfirm.go61
1 files changed, 61 insertions, 0 deletions
diff --git a/wsmsg_unconfirm.go b/wsmsg_unconfirm.go
new file mode 100644
index 0000000..9e12230
--- /dev/null
+++ b/wsmsg_unconfirm.go
@@ -0,0 +1,61 @@
+/*
+ * Handle the "C" message
+ *
+ * Copyright (C) 2024 Runxi Yu <https://runxiyu.org>
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+package main
+
+import (
+ "context"
+
+ "github.com/coder/websocket"
+)
+
+func messageUnconfirm(
+ ctx context.Context,
+ c *websocket.Conn,
+ reportError reportErrorT,
+ mar []string,
+ userID string,
+) error {
+ _ = mar
+
+ select {
+ case <-ctx.Done():
+ return wrapError(
+ errContextCanceled,
+ ctx.Err(),
+ )
+ default:
+ }
+
+ _, err := db.Exec(
+ ctx,
+ "UPDATE users SET confirmed = false WHERE id = $1",
+ userID,
+ )
+ if err != nil {
+ return reportError("error updating database setting confirmation")
+ }
+
+ return writeText(
+ ctx,
+ c,
+ "NC",
+ )
+}