Onionr/src/onionrstorage/removeblock.py

53 lines
1.7 KiB
Python
Raw Normal View History

"""Onionr - Private P2P Communication.
remove onionr block from meta db
"""
2020-03-26 08:57:54 +00:00
import sys
import sqlite3
import onionrexceptions
import onionrstorage
from onionrutils import stringvalidators
2019-07-19 19:49:56 +00:00
from coredb import dbfiles
from onionrblocks import storagecounter
from etc.onionrvalues import DATABASE_LOCK_TIMEOUT
"""
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/>.
"""
storage_counter = storagecounter.StorageCounter()
2019-07-19 19:49:56 +00:00
def remove_block(block):
2020-03-28 01:03:30 +00:00
"""Remove a block from this node.
2019-06-22 22:54:41 +00:00
2020-03-28 01:03:30 +00:00
(does not automatically blacklist).
2020-03-26 08:57:54 +00:00
**You may want blacklist.addToDB(blockHash)
"""
if stringvalidators.validate_hash(block):
try:
data_size = sys.getsizeof(onionrstorage.getData(block))
except onionrexceptions.NoDataAvailable:
data_size = 0
conn = sqlite3.connect(
dbfiles.block_meta_db, timeout=DATABASE_LOCK_TIMEOUT)
2019-06-22 22:54:41 +00:00
c = conn.cursor()
t = (block,)
c.execute('Delete from hashes where hash=?;', t)
conn.commit()
conn.close()
if data_size:
storage_counter.remove_bytes(data_size)
2019-06-22 22:54:41 +00:00
else:
raise onionrexceptions.InvalidHexHash