110 lines
3.2 KiB
Python
110 lines
3.2 KiB
Python
# Copyright 2022 Upstream Data Inc
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import logging
|
|
|
|
import ipaddress
|
|
from typing import Union, List
|
|
|
|
from pyasic.API.bosminer import BOSMinerAPI
|
|
from pyasic.miners.base import BaseMiner
|
|
from pyasic.config import MinerConfig
|
|
from pyasic.data import MinerData
|
|
from pyasic.data.error_codes import MinerErrorData
|
|
|
|
|
|
class BOSMinerOld(BaseMiner):
|
|
def __init__(self, ip: str) -> None:
|
|
super().__init__(ip)
|
|
self.ip = ipaddress.ip_address(ip)
|
|
self.api = BOSMinerAPI(ip)
|
|
self.api_type = "BOSMiner"
|
|
self.uname = "root"
|
|
self.pwd = "admin"
|
|
|
|
async def send_ssh_command(self, cmd: str) -> Union[str, None]:
|
|
"""Send a command to the miner over ssh.
|
|
|
|
:return: Result of the command or None.
|
|
"""
|
|
result = None
|
|
|
|
# open an ssh connection
|
|
async with (await self._get_ssh_connection()) as conn:
|
|
# 3 retries
|
|
for i in range(3):
|
|
try:
|
|
# run the command and get the result
|
|
result = await conn.run(cmd)
|
|
if result.stdout:
|
|
result = result.stdout
|
|
except Exception as e:
|
|
if e == "SSH connection closed":
|
|
return "Update completed."
|
|
# if the command fails, log it
|
|
logging.warning(f"{self} command {cmd} error: {e}")
|
|
|
|
# on the 3rd retry, return None
|
|
if i == 3:
|
|
return
|
|
continue
|
|
# return the result, either command output or None
|
|
return str(result)
|
|
|
|
async def update_to_plus(self):
|
|
result = await self.send_ssh_command("opkg update && opkg install bos_plus")
|
|
return result
|
|
|
|
async def check_light(self) -> bool:
|
|
return False
|
|
|
|
async def fault_light_on(self) -> bool:
|
|
return False
|
|
|
|
async def fault_light_off(self) -> bool:
|
|
return False
|
|
|
|
async def get_config(self) -> None:
|
|
return None
|
|
|
|
async def get_errors(self) -> List[MinerErrorData]:
|
|
return []
|
|
|
|
async def get_hostname(self) -> str:
|
|
return "?"
|
|
|
|
async def get_mac(self) -> str:
|
|
return "00:00:00:00:00:00"
|
|
|
|
async def get_model(self) -> str:
|
|
return "S9"
|
|
|
|
async def reboot(self) -> bool:
|
|
return False
|
|
|
|
async def restart_backend(self) -> bool:
|
|
return False
|
|
|
|
async def stop_mining(self) -> bool:
|
|
return False
|
|
|
|
async def resume_mining(self) -> bool:
|
|
return False
|
|
|
|
async def send_config(self, config: MinerConfig, user_suffix: str = None) -> None:
|
|
return None
|
|
|
|
async def get_data(self) -> MinerData:
|
|
return MinerData(ip=str(self.ip))
|