hydrus/include/ClientLocalServer.py

29 lines
1.5 KiB
Python
Raw Normal View History

2015-08-05 18:42:35 +00:00
import ClientLocalServerResources
import HydrusServer
class HydrusServiceBooru( HydrusServer.HydrusService ):
def _InitRoot( self ):
root = HydrusServer.HydrusService._InitRoot( self )
root.putChild( 'gallery', ClientLocalServerResources.HydrusResourceCommandBooruGallery( self._service_key, self._service_type, HydrusServer.REMOTE_DOMAIN ) )
root.putChild( 'page', ClientLocalServerResources.HydrusResourceCommandBooruPage( self._service_key, self._service_type, HydrusServer.REMOTE_DOMAIN ) )
root.putChild( 'file', ClientLocalServerResources.HydrusResourceCommandBooruFile( self._service_key, self._service_type, HydrusServer.REMOTE_DOMAIN ) )
root.putChild( 'thumbnail', ClientLocalServerResources.HydrusResourceCommandBooruThumbnail( self._service_key, self._service_type, HydrusServer.REMOTE_DOMAIN ) )
2015-12-02 22:32:18 +00:00
root.putChild( 'style.css', ClientLocalServerResources.local_booru_css )
2015-08-05 18:42:35 +00:00
return root
class HydrusServiceLocal( HydrusServer.HydrusService ):
def _InitRoot( self ):
root = HydrusServer.HydrusService._InitRoot( self )
root.putChild( 'file', ClientLocalServerResources.HydrusResourceCommandLocalFile( self._service_key, self._service_type, HydrusServer.LOCAL_DOMAIN ) )
root.putChild( 'thumbnail', ClientLocalServerResources.HydrusResourceCommandLocalThumbnail( self._service_key, self._service_type, HydrusServer.LOCAL_DOMAIN ) )
return root