|
@@ -1522,6 +1522,17 @@ xs_dict *msg_pong(snac *user, const char *rcpt, const char *object)
|
|
|
}
|
|
|
|
|
|
|
|
|
+xs_dict *msg_move(snac *user, const char *new_account)
|
|
|
+
|
|
|
+{
|
|
|
+ xs_dict *msg = msg_base(user, "Move", "@dummy", user->actor, NULL, user->actor);
|
|
|
+
|
|
|
+ msg = xs_dict_append(msg, "target", new_account);
|
|
|
+
|
|
|
+ return msg;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
xs_dict *msg_question(snac *user, const char *content, xs_list *attach,
|
|
|
const xs_list *opts, int multiple, int end_secs)
|
|
|
|
|
@@ -2653,6 +2664,22 @@ int process_queue(void)
|
|
|
}
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+int migrate_account(snac *user)
|
|
|
+
|
|
|
+{
|
|
|
+ const char *new_account = xs_dict_get(user->config, "aka");
|
|
|
+
|
|
|
+ if (xs_type(new_account) != XSTYPE_STRING) {
|
|
|
+ snac_log(user, xs_fmt("Cannot migrate: 'aka' (new account) not defined"));
|
|
|
+ return 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
int activitypub_get_handler(const xs_dict *req, const char *q_path,
|