summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/Services/ImporterServiceFactory.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/src/Services/ImporterServiceFactory.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/src/Services/ImporterServiceFactory.php86
1 files changed, 86 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/src/Services/ImporterServiceFactory.php b/www/wiki/extensions/SemanticMediaWiki/src/Services/ImporterServiceFactory.php
new file mode 100644
index 00000000..cc9b71bf
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/src/Services/ImporterServiceFactory.php
@@ -0,0 +1,86 @@
+<?php
+
+namespace SMW\Services;
+
+use ImportSource;
+use Onoi\CallbackContainer\ContainerBuilder;
+use SMW\Importer\ContentIterator;
+
+/**
+ * @private
+ *
+ * This class provides service and factory functions for Import objects.
+ *
+ * @license GNU GPL v2+
+ * @since 3.0
+ *
+ * @author mwjames
+ */
+class ImporterServiceFactory {
+
+ /**
+ * @var ContainerBuilder
+ */
+ private $containerBuilder;
+
+ /**
+ * @since 3.0
+ */
+ public function __construct( ContainerBuilder $containerBuilder ) {
+ $this->containerBuilder = $containerBuilder;
+ }
+
+ /**
+ * @since 3.0
+ *
+ * @param string $source
+ *
+ * @return ImportStringSource
+ */
+ public function newImportStringSource( $source ) {
+ return $this->containerBuilder->create( 'ImportStringSource', $source );
+ }
+
+ /**
+ * @since 3.0
+ *
+ * @param string $source
+ *
+ * @return ImportStreamSource
+ */
+ public function newImportStreamSource( $source ) {
+ return $this->containerBuilder->create( 'ImportStreamSource', $source );
+ }
+
+ /**
+ * @since 3.0
+ *
+ * @param ImportSource $importSource
+ *
+ * @return WikiImporter
+ */
+ public function newWikiImporter( ImportSource $importSource ) {
+ return $this->containerBuilder->create( 'WikiImporter', $importSource );
+ }
+
+ /**
+ * @since 3.0
+ *
+ * @param ContentIterator $contentIterator
+ *
+ * @return Importer
+ */
+ public function newImporter( ContentIterator $contentIterator ) {
+ return $this->containerBuilder->create( 'Importer', $contentIterator );
+ }
+
+ /**
+ * @since 3.0
+ *
+ * @return JsonContentIterator
+ */
+ public function newJsonContentIterator( $importFileDir ) {
+ return $this->containerBuilder->create( 'JsonContentIterator', $importFileDir );
+ }
+
+}