You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import os
|
|
|
|
|
|
|
|
from couchpotato.core.event import addEvent
|
|
|
|
from couchpotato.core.logger import CPLog
|
|
|
|
from couchpotato.core.plugins.base import Plugin
|
|
|
|
from couchpotato.environment import Env
|
|
|
|
|
|
|
|
|
|
|
|
log = CPLog(__name__)
|
|
|
|
|
|
|
|
autoload = 'Custom'
|
|
|
|
|
|
|
|
|
|
|
|
class Custom(Plugin):
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
addEvent('app.load', self.createStructure)
|
|
|
|
|
|
|
|
def createStructure(self):
|
|
|
|
|
|
|
|
custom_dir = os.path.join(Env.get('data_dir'), 'custom_plugins')
|
|
|
|
|
|
|
|
if not os.path.isdir(custom_dir):
|
|
|
|
self.makeDir(custom_dir)
|
|
|
|
self.createFile(os.path.join(custom_dir, '__init__.py'), '# Don\'t remove this file')
|