2020-01-31 05:47:48 +00:00
|
|
|
"""Onionr - Private P2P Communication.
|
|
|
|
|
|
|
|
Create an ephemeral onion service
|
2020-02-01 00:23:48 +00:00
|
|
|
"""
|
|
|
|
from .torcontroller import get_controller
|
2020-03-08 00:51:39 +00:00
|
|
|
|
|
|
|
from filepaths import ephemeral_services_file
|
2020-02-01 00:23:48 +00:00
|
|
|
"""
|
|
|
|
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-08 00:51:39 +00:00
|
|
|
def create_onion_service(port=80, record_to_service_removal_file=True):
|
2020-02-01 00:23:48 +00:00
|
|
|
controller = get_controller()
|
|
|
|
hs = controller.create_ephemeral_hidden_service(
|
|
|
|
{80: port},
|
2020-02-01 04:14:26 +00:00
|
|
|
key_type = 'NEW',
|
|
|
|
key_content = 'ED25519-V3',
|
2020-02-01 00:23:48 +00:00
|
|
|
await_publication=True,
|
|
|
|
detached=True)
|
2020-03-08 00:51:39 +00:00
|
|
|
if record_to_service_removal_file:
|
|
|
|
with open(ephemeral_services_file, 'a') as service_file:
|
|
|
|
service_file.write(hs.service_id + '\n')
|
2020-02-01 00:23:48 +00:00
|
|
|
return (hs.service_id, hs.private_key)
|