diff options
author | Mario <mario@mariovavti.com> | 2024-01-07 15:50:50 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-01-07 15:50:50 +0000 |
commit | 256b66de41b2cd8dcdeb39fc5f080c5ff957e5d2 (patch) | |
tree | 32b76ffa2ad1703f1d5531d5a0fd916e40212e41 /Zotlabs | |
parent | 5ee4f37b8d2bfaee253e0e65acb74a414c602a33 (diff) | |
download | volse-hubzilla-256b66de41b2cd8dcdeb39fc5f080c5ff957e5d2.tar.gz volse-hubzilla-256b66de41b2cd8dcdeb39fc5f080c5ff957e5d2.tar.bz2 volse-hubzilla-256b66de41b2cd8dcdeb39fc5f080c5ff957e5d2.zip |
Revert "DB update 1260 - REQUIRES SODIUM PHP EXTENSION!!!"
This reverts commit 5ee4f37b8d2bfaee253e0e65acb74a414c602a33
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Update/_1260.php | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/Zotlabs/Update/_1260.php b/Zotlabs/Update/_1260.php deleted file mode 100644 index 1e1f1ebf0..000000000 --- a/Zotlabs/Update/_1260.php +++ /dev/null @@ -1,46 +0,0 @@ -<?php -namespace Zotlabs\Update; - -class _1260 { - public function run() { - - $has_sodium = function_exists('sodium_crypto_sign_keypair'); - - if (!$has_sodium) { - return UPDATE_FAILED; - } - - q("START TRANSACTION"); - - $r1 = q("ALTER TABLE channel ADD channel_epubkey text NOT NULL"); - $r2 = q("ALTER TABLE channel ADD channel_eprvkey text NOT NULL"); - - $channels = q("select channel_id from channel where true"); - if ($channels) { - foreach ($channels as $channel) { - $keys = sodium_crypto_sign_keypair(); - $pubkey = sodium_bin2base64(sodium_crypto_sign_publickey($keys), SODIUM_BASE64_VARIANT_ORIGINAL_NO_PADDING); - $prvkey = sodium_bin2base64(sodium_crypto_sign_secretkey($keys), SODIUM_BASE64_VARIANT_ORIGINAL_NO_PADDING); - q("update channel set channel_epubkey = '%s', channel_eprvkey = '%s' where channel_id = %d", - dbesc($pubkey), - dbesc($prvkey), - intval($channel['channel_id']) - ); - } - } - - if ($r1 && $r2) { - q("COMMIT"); - return UPDATE_SUCCESS; - } - - q("ROLLBACK"); - return UPDATE_FAILED; - } - - public function verify() { - $columns = db_columns('channel'); - return in_array('channel_epubkey', $columns) && in_array('channel_eprvkey', $columns); - } -} - |