2018-07-06 00:42:09 +02:00
|
|
|
import shutil
|
2018-10-12 11:58:01 +02:00
|
|
|
from typing import Dict, Union
|
2018-03-31 15:46:50 +02:00
|
|
|
from . import abstract
|
|
|
|
|
2018-04-04 23:21:48 +02:00
|
|
|
|
2018-03-31 15:46:50 +02:00
|
|
|
class HarmlessParser(abstract.AbstractParser):
|
2018-07-19 23:10:27 +02:00
|
|
|
""" This is the parser for filetypes that can not contain metadata. """
|
2018-07-06 00:49:17 +02:00
|
|
|
mimetypes = {'text/plain', 'image/x-ms-bmp'}
|
2018-03-31 15:46:50 +02:00
|
|
|
|
2018-10-12 11:58:01 +02:00
|
|
|
def get_meta(self) -> Dict[str, Union[str, dict]]:
|
2018-03-31 15:46:50 +02:00
|
|
|
return dict()
|
|
|
|
|
2018-06-04 22:54:01 +02:00
|
|
|
def remove_all(self) -> bool:
|
2018-07-06 00:42:09 +02:00
|
|
|
shutil.copy(self.filename, self.output_filename)
|
2018-03-31 15:46:50 +02:00
|
|
|
return True
|