Onionr/src/onionrstorage/setdata.py

69 lines
2.3 KiB
Python
Raw Normal View History

"""Onionr - Private P2P Communication.
Test Onionr as it is running
"""
import sys
import sqlite3
2020-03-26 08:57:54 +00:00
import onionrstorage
import onionrexceptions
import onionrcrypto as crypto
import filepaths
from onionrblocks import storagecounter
2019-07-19 19:49:56 +00:00
from coredb import dbfiles
from onionrutils import blockmetadata, bytesconverter
"""
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
2020-03-26 08:57:54 +00:00
def set_data(data) -> str:
"""Set the data assciated with a hash."""
2019-07-19 19:49:56 +00:00
storage_counter = storagecounter.StorageCounter()
2019-06-22 22:54:41 +00:00
data = data
dataSize = sys.getsizeof(data)
2020-03-26 08:57:54 +00:00
nonce_hash = crypto.hashers.sha3_hash(
bytesconverter.str_to_bytes(
blockmetadata.fromdata.get_block_metadata_from_data(data)[2]))
nonce_hash = bytesconverter.bytes_to_str(nonce_hash)
2019-06-22 22:54:41 +00:00
if not type(data) is bytes:
data = data.encode()
2019-07-20 15:52:03 +00:00
dataHash = crypto.hashers.sha3_hash(data)
2019-06-22 22:54:41 +00:00
if type(dataHash) is bytes:
dataHash = dataHash.decode()
try:
2019-07-19 19:49:56 +00:00
onionrstorage.getData(dataHash)
2019-06-22 22:54:41 +00:00
except onionrexceptions.NoDataAvailable:
2020-03-26 08:57:54 +00:00
if storage_counter.add_bytes(dataSize) is not False:
2019-07-19 19:49:56 +00:00
onionrstorage.store(data, blockHash=dataHash)
conn = sqlite3.connect(dbfiles.block_meta_db, timeout=30)
2019-06-22 22:54:41 +00:00
c = conn.cursor()
2020-03-26 08:57:54 +00:00
c.execute(
"UPDATE hashes SET dataSaved=1 WHERE hash = ?;",
(dataHash,))
2019-06-22 22:54:41 +00:00
conn.commit()
conn.close()
2019-07-19 19:49:56 +00:00
with open(filepaths.data_nonce_file, 'a') as nonceFile:
nonceFile.write(nonce_hash + '\n')
2019-06-22 22:54:41 +00:00
else:
raise onionrexceptions.DiskAllocationReached
else:
2020-03-26 08:57:54 +00:00
raise onionrexceptions.DataExists(
"Data is already set for " + dataHash)
2019-06-22 22:54:41 +00:00
2019-09-27 23:04:49 +00:00
return dataHash