{"id":23863491,"url":"https://github.com/beechit/news_importer","last_synced_at":"2026-02-03T02:32:52.865Z","repository":{"id":33655851,"uuid":"37308326","full_name":"beechit/news_importer","owner":"beechit","description":"Toolset to import news from rss feeds/html content into EXT:news ","archived":false,"fork":false,"pushed_at":"2022-06-01T05:51:20.000Z","size":130,"stargazers_count":1,"open_issues_count":1,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-23T02:22:28.411Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/beechit.png","metadata":{"files":{"readme":"Readme.rst","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-06-12T07:28:38.000Z","updated_at":"2022-05-31T14:15:26.000Z","dependencies_parsed_at":"2022-09-13T05:30:25.697Z","dependency_job_id":null,"html_url":"https://github.com/beechit/news_importer","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/beechit/news_importer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beechit%2Fnews_importer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beechit%2Fnews_importer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beechit%2Fnews_importer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beechit%2Fnews_importer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/beechit","download_url":"https://codeload.github.com/beechit/news_importer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beechit%2Fnews_importer/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263464185,"owners_count":23470473,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-03T08:00:02.400Z","updated_at":"2026-02-03T02:32:47.846Z","avatar_url":"https://github.com/beechit.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"TYPO3 news importer (ext:news_importer)\n=======================================\n\nImport news feeds into your TYPO3 CMS\n\n\nCurrent supported resources:\n----------------------------\n- RSS feeds (atom,rss2,etc)\n- (X)HTML pages\n- XML content\n\n\nFeatures:\n---------\n\n- Supports POST request (for example to do a login request)\n- Supports sub requests (use found url in first feed to fetch content/details)\n- Can import images\n- Only import items that contain a certain keyword\n- Add default image when no image found in imported item\n- CommandController to automatically import items\n- Backend module to manual import items\n- Notification by email when new items are imported (when automatically imported)\n\n\nStatus:\n-------\n\nThe extension is still beta but it is used already in multiple live projects\n\n\nRequirements:\n-------------\n- TYPO3 =\u003e 10.4\n\nGetting started\n---------------\n\nAfter installation of the extension:\n\n- Create a record \"Import source\" on a define page/storage. (Listview -\u003e add -\u003e Import source)\n- Enter the url of the desired import feed\n- Add a mapping for the items (see example mapping configurations)\n- Add news storage pid were the imported news items will be saved\n- Adjust/add other fields\n\nAfter defining which items to import:\n\n- Create a scheduler task\n- Choose Extbase command controller\n- Select Command controller command: NewsImporter ImportNews:run\n- Adjust settings to your preferences (frequency etc)\n\nNOTE:\n\n- In the import source there is an additional setting for interval!\n- Importing can also be invoked by cmdline with ./typo3cms importnews:run (typo3_console ext have to be installed)\n\n\n\nExample mapping configurations:\n-------------------------------\n\nImport RSS Feed as external news items::\n\n\titems = item\n\titem {\n\t\tguid = guid\n\t\ttitle = title\n\t\texternalurl = link\n\t\ttype {\n\t\t\tdefaultValue = 2\n\t\t}\n\t\tbodytext = description\n\t\tdatetime {\n\t\t\tselector = pubDate\n\t\t\tstrtotime = 1\n\t\t}\n\t\timage {\n\t\t\tselector = enclosure\n\t\t\tattr = url\n\t\t}\n\t}\n\nImport RSS feed with multiple images::\n\n\titems = item\n\titem {\n\t\tguid = guid\n\t\ttitle = title\n\t\texternalurl = link\n\t\ttype {\n\t\t\tdefaultValue = 2\n\t\t}\n\t\tbodytext = description\n\t\tdatetime {\n\t\t\tselector = pubDate\n\t\t\tstrtotime = 1\n\t\t}\n\t\timage {\n\t\t\tselector = enclosure\n\t\t\tattr = url\n\t\t\tmultiple = 1\n\t\t}\n\t}\n\n\nImport custom RSS feed with multiple related links::\n\n\titems = item\n\titem {\n\t\tguid = guid\n\t\ttitle = title\n\t\texternalurl = link\n\t\ttype {\n\t\t\tdefaultValue = 2\n\t\t}\n\t\tbodytext = description\n\t\tdatetime {\n\t\t\tselector = pubDate\n\t\t\tstrtotime = 1\n\t\t}\n\t\timage {\n\t\t\tselector = enclosure\n\t\t\tattr = url\n\t\t}\n\t\trelated_links {\n\t\t\tselector = related_link\n\t\t\tmultiple {\n\t\t\t\t# fetch attr href from each\n\t\t\t\turi = href\n\n\t\t\t\t# alternative way of fetching attr value and using other mapping options\n\t\t\t\ttitle {\n\t\t\t\t\tattr = title\n\t\t\t\t\twrap = See also: |\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\nSetting a default value can done by e.g. default author::\n\n\tauthor.defaultvalue = Authorname\n\nTodo:\n-----\n\nImprove debug/test options for rss/html parsing/fetching\n\n\nUpgrade to TYPO3 v10\n--------------------\n\nMigrating the Extbase command controllers to symfony commands:\n\nimportnews:status =\u003e newsimporter:outputnewsimportstatuses\nimportnews:testSource =\u003e newsimporter:testimportsource\nimportnews:run =\u003e newsimporter:importnews\n\n!!! Removal of `be.editLink` Viewhelper, migrating to the core `be:uri.editRecord` Viewhelper\n\n!!! Changing method ImportService-\u003ealreadyImported to always return true/false as the method name and codeblock suggests. An different\nmethod ImportService-\u003egetNewsItemUid($pid,$guid) is created to get the newsItemUid of throws exception when no item is found.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeechit%2Fnews_importer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbeechit%2Fnews_importer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeechit%2Fnews_importer/lists"}