SimplePie.php 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081
  1. <?php
  2. /**
  3. * SimplePie
  4. *
  5. * A PHP-Based RSS and Atom Feed Framework.
  6. * Takes the hard work out of managing a complete RSS/Atom solution.
  7. *
  8. * Copyright (c) 2004-2012, Ryan Parman, Geoffrey Sneddon, Ryan McCue, and contributors
  9. * All rights reserved.
  10. *
  11. * Redistribution and use in source and binary forms, with or without modification, are
  12. * permitted provided that the following conditions are met:
  13. *
  14. * * Redistributions of source code must retain the above copyright notice, this list of
  15. * conditions and the following disclaimer.
  16. *
  17. * * Redistributions in binary form must reproduce the above copyright notice, this list
  18. * of conditions and the following disclaimer in the documentation and/or other materials
  19. * provided with the distribution.
  20. *
  21. * * Neither the name of the SimplePie Team nor the names of its contributors may be used
  22. * to endorse or promote products derived from this software without specific prior
  23. * written permission.
  24. *
  25. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS
  26. * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  27. * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS
  28. * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  29. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  30. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  31. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  32. * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  33. * POSSIBILITY OF SUCH DAMAGE.
  34. *
  35. * @package SimplePie
  36. * @version 1.3.1
  37. * @copyright 2004-2012 Ryan Parman, Geoffrey Sneddon, Ryan McCue
  38. * @author Ryan Parman
  39. * @author Geoffrey Sneddon
  40. * @author Ryan McCue
  41. * @link http://simplepie.org/ SimplePie
  42. * @license http://www.opensource.org/licenses/bsd-license.php BSD License
  43. */
  44. /**
  45. * SimplePie Name
  46. */
  47. define('SIMPLEPIE_NAME', 'SimplePie');
  48. /**
  49. * SimplePie Version
  50. */
  51. define('SIMPLEPIE_VERSION', '1.3.1');
  52. /**
  53. * SimplePie Build
  54. * @todo Hardcode for release (there's no need to have to call SimplePie_Misc::get_build() only every load of simplepie.inc)
  55. */
  56. define('SIMPLEPIE_BUILD', gmdate('YmdHis', SimplePie_Misc::get_build()));
  57. /**
  58. * SimplePie Website URL
  59. */
  60. define('SIMPLEPIE_URL', 'http://simplepie.org');
  61. /**
  62. * SimplePie Useragent
  63. * @see SimplePie::set_useragent()
  64. */
  65. define('SIMPLEPIE_USERAGENT', SIMPLEPIE_NAME . '/' . SIMPLEPIE_VERSION . ' (Feed Parser; ' . SIMPLEPIE_URL . '; Allow like Gecko) Build/' . SIMPLEPIE_BUILD);
  66. /**
  67. * SimplePie Linkback
  68. */
  69. define('SIMPLEPIE_LINKBACK', '<a href="' . SIMPLEPIE_URL . '" title="' . SIMPLEPIE_NAME . ' ' . SIMPLEPIE_VERSION . '">' . SIMPLEPIE_NAME . '</a>');
  70. /**
  71. * No Autodiscovery
  72. * @see SimplePie::set_autodiscovery_level()
  73. */
  74. define('SIMPLEPIE_LOCATOR_NONE', 0);
  75. /**
  76. * Feed Link Element Autodiscovery
  77. * @see SimplePie::set_autodiscovery_level()
  78. */
  79. define('SIMPLEPIE_LOCATOR_AUTODISCOVERY', 1);
  80. /**
  81. * Local Feed Extension Autodiscovery
  82. * @see SimplePie::set_autodiscovery_level()
  83. */
  84. define('SIMPLEPIE_LOCATOR_LOCAL_EXTENSION', 2);
  85. /**
  86. * Local Feed Body Autodiscovery
  87. * @see SimplePie::set_autodiscovery_level()
  88. */
  89. define('SIMPLEPIE_LOCATOR_LOCAL_BODY', 4);
  90. /**
  91. * Remote Feed Extension Autodiscovery
  92. * @see SimplePie::set_autodiscovery_level()
  93. */
  94. define('SIMPLEPIE_LOCATOR_REMOTE_EXTENSION', 8);
  95. /**
  96. * Remote Feed Body Autodiscovery
  97. * @see SimplePie::set_autodiscovery_level()
  98. */
  99. define('SIMPLEPIE_LOCATOR_REMOTE_BODY', 16);
  100. /**
  101. * All Feed Autodiscovery
  102. * @see SimplePie::set_autodiscovery_level()
  103. */
  104. define('SIMPLEPIE_LOCATOR_ALL', 31);
  105. /**
  106. * No known feed type
  107. */
  108. define('SIMPLEPIE_TYPE_NONE', 0);
  109. /**
  110. * RSS 0.90
  111. */
  112. define('SIMPLEPIE_TYPE_RSS_090', 1);
  113. /**
  114. * RSS 0.91 (Netscape)
  115. */
  116. define('SIMPLEPIE_TYPE_RSS_091_NETSCAPE', 2);
  117. /**
  118. * RSS 0.91 (Userland)
  119. */
  120. define('SIMPLEPIE_TYPE_RSS_091_USERLAND', 4);
  121. /**
  122. * RSS 0.91 (both Netscape and Userland)
  123. */
  124. define('SIMPLEPIE_TYPE_RSS_091', 6);
  125. /**
  126. * RSS 0.92
  127. */
  128. define('SIMPLEPIE_TYPE_RSS_092', 8);
  129. /**
  130. * RSS 0.93
  131. */
  132. define('SIMPLEPIE_TYPE_RSS_093', 16);
  133. /**
  134. * RSS 0.94
  135. */
  136. define('SIMPLEPIE_TYPE_RSS_094', 32);
  137. /**
  138. * RSS 1.0
  139. */
  140. define('SIMPLEPIE_TYPE_RSS_10', 64);
  141. /**
  142. * RSS 2.0
  143. */
  144. define('SIMPLEPIE_TYPE_RSS_20', 128);
  145. /**
  146. * RDF-based RSS
  147. */
  148. define('SIMPLEPIE_TYPE_RSS_RDF', 65);
  149. /**
  150. * Non-RDF-based RSS (truly intended as syndication format)
  151. */
  152. define('SIMPLEPIE_TYPE_RSS_SYNDICATION', 190);
  153. /**
  154. * All RSS
  155. */
  156. define('SIMPLEPIE_TYPE_RSS_ALL', 255);
  157. /**
  158. * Atom 0.3
  159. */
  160. define('SIMPLEPIE_TYPE_ATOM_03', 256);
  161. /**
  162. * Atom 1.0
  163. */
  164. define('SIMPLEPIE_TYPE_ATOM_10', 512);
  165. /**
  166. * All Atom
  167. */
  168. define('SIMPLEPIE_TYPE_ATOM_ALL', 768);
  169. /**
  170. * All feed types
  171. */
  172. define('SIMPLEPIE_TYPE_ALL', 1023);
  173. /**
  174. * No construct
  175. */
  176. define('SIMPLEPIE_CONSTRUCT_NONE', 0);
  177. /**
  178. * Text construct
  179. */
  180. define('SIMPLEPIE_CONSTRUCT_TEXT', 1);
  181. /**
  182. * HTML construct
  183. */
  184. define('SIMPLEPIE_CONSTRUCT_HTML', 2);
  185. /**
  186. * XHTML construct
  187. */
  188. define('SIMPLEPIE_CONSTRUCT_XHTML', 4);
  189. /**
  190. * base64-encoded construct
  191. */
  192. define('SIMPLEPIE_CONSTRUCT_BASE64', 8);
  193. /**
  194. * IRI construct
  195. */
  196. define('SIMPLEPIE_CONSTRUCT_IRI', 16);
  197. /**
  198. * A construct that might be HTML
  199. */
  200. define('SIMPLEPIE_CONSTRUCT_MAYBE_HTML', 32);
  201. /**
  202. * All constructs
  203. */
  204. define('SIMPLEPIE_CONSTRUCT_ALL', 63);
  205. /**
  206. * Don't change case
  207. */
  208. define('SIMPLEPIE_SAME_CASE', 1);
  209. /**
  210. * Change to lowercase
  211. */
  212. define('SIMPLEPIE_LOWERCASE', 2);
  213. /**
  214. * Change to uppercase
  215. */
  216. define('SIMPLEPIE_UPPERCASE', 4);
  217. /**
  218. * PCRE for HTML attributes
  219. */
  220. define('SIMPLEPIE_PCRE_HTML_ATTRIBUTE', '((?:[\x09\x0A\x0B\x0C\x0D\x20]+[^\x09\x0A\x0B\x0C\x0D\x20\x2F\x3E][^\x09\x0A\x0B\x0C\x0D\x20\x2F\x3D\x3E]*(?:[\x09\x0A\x0B\x0C\x0D\x20]*=[\x09\x0A\x0B\x0C\x0D\x20]*(?:"(?:[^"]*)"|\'(?:[^\']*)\'|(?:[^\x09\x0A\x0B\x0C\x0D\x20\x22\x27\x3E][^\x09\x0A\x0B\x0C\x0D\x20\x3E]*)?))?)*)[\x09\x0A\x0B\x0C\x0D\x20]*');
  221. /**
  222. * PCRE for XML attributes
  223. */
  224. define('SIMPLEPIE_PCRE_XML_ATTRIBUTE', '((?:\s+(?:(?:[^\s:]+:)?[^\s:]+)\s*=\s*(?:"(?:[^"]*)"|\'(?:[^\']*)\'))*)\s*');
  225. /**
  226. * XML Namespace
  227. */
  228. define('SIMPLEPIE_NAMESPACE_XML', 'http://www.w3.org/XML/1998/namespace');
  229. /**
  230. * Atom 1.0 Namespace
  231. */
  232. define('SIMPLEPIE_NAMESPACE_ATOM_10', 'http://www.w3.org/2005/Atom');
  233. /**
  234. * Atom 0.3 Namespace
  235. */
  236. define('SIMPLEPIE_NAMESPACE_ATOM_03', 'http://purl.org/atom/ns#');
  237. /**
  238. * RDF Namespace
  239. */
  240. define('SIMPLEPIE_NAMESPACE_RDF', 'http://www.w3.org/1999/02/22-rdf-syntax-ns#');
  241. /**
  242. * RSS 0.90 Namespace
  243. */
  244. define('SIMPLEPIE_NAMESPACE_RSS_090', 'http://my.netscape.com/rdf/simple/0.9/');
  245. /**
  246. * RSS 1.0 Namespace
  247. */
  248. define('SIMPLEPIE_NAMESPACE_RSS_10', 'http://purl.org/rss/1.0/');
  249. /**
  250. * RSS 1.0 Content Module Namespace
  251. */
  252. define('SIMPLEPIE_NAMESPACE_RSS_10_MODULES_CONTENT', 'http://purl.org/rss/1.0/modules/content/');
  253. /**
  254. * RSS 2.0 Namespace
  255. * (Stupid, I know, but I'm certain it will confuse people less with support.)
  256. */
  257. define('SIMPLEPIE_NAMESPACE_RSS_20', '');
  258. /**
  259. * DC 1.0 Namespace
  260. */
  261. define('SIMPLEPIE_NAMESPACE_DC_10', 'http://purl.org/dc/elements/1.0/');
  262. /**
  263. * DC 1.1 Namespace
  264. */
  265. define('SIMPLEPIE_NAMESPACE_DC_11', 'http://purl.org/dc/elements/1.1/');
  266. /**
  267. * W3C Basic Geo (WGS84 lat/long) Vocabulary Namespace
  268. */
  269. define('SIMPLEPIE_NAMESPACE_W3C_BASIC_GEO', 'http://www.w3.org/2003/01/geo/wgs84_pos#');
  270. /**
  271. * GeoRSS Namespace
  272. */
  273. define('SIMPLEPIE_NAMESPACE_GEORSS', 'http://www.georss.org/georss');
  274. /**
  275. * Media RSS Namespace
  276. */
  277. define('SIMPLEPIE_NAMESPACE_MEDIARSS', 'http://search.yahoo.com/mrss/');
  278. /**
  279. * Wrong Media RSS Namespace. Caused by a long-standing typo in the spec.
  280. */
  281. define('SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG', 'http://search.yahoo.com/mrss');
  282. /**
  283. * Wrong Media RSS Namespace #2. New namespace introduced in Media RSS 1.5.
  284. */
  285. define('SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG2', 'http://video.search.yahoo.com/mrss');
  286. /**
  287. * Wrong Media RSS Namespace #3. A possible typo of the Media RSS 1.5 namespace.
  288. */
  289. define('SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG3', 'http://video.search.yahoo.com/mrss/');
  290. /**
  291. * Wrong Media RSS Namespace #4. New spec location after the RSS Advisory Board takes it over, but not a valid namespace.
  292. */
  293. define('SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG4', 'http://www.rssboard.org/media-rss');
  294. /**
  295. * Wrong Media RSS Namespace #5. A possible typo of the RSS Advisory Board URL.
  296. */
  297. define('SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG5', 'http://www.rssboard.org/media-rss/');
  298. /**
  299. * iTunes RSS Namespace
  300. */
  301. define('SIMPLEPIE_NAMESPACE_ITUNES', 'http://www.itunes.com/dtds/podcast-1.0.dtd');
  302. /**
  303. * XHTML Namespace
  304. */
  305. define('SIMPLEPIE_NAMESPACE_XHTML', 'http://www.w3.org/1999/xhtml');
  306. /**
  307. * IANA Link Relations Registry
  308. */
  309. define('SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY', 'http://www.iana.org/assignments/relation/');
  310. /**
  311. * No file source
  312. */
  313. define('SIMPLEPIE_FILE_SOURCE_NONE', 0);
  314. /**
  315. * Remote file source
  316. */
  317. define('SIMPLEPIE_FILE_SOURCE_REMOTE', 1);
  318. /**
  319. * Local file source
  320. */
  321. define('SIMPLEPIE_FILE_SOURCE_LOCAL', 2);
  322. /**
  323. * fsockopen() file source
  324. */
  325. define('SIMPLEPIE_FILE_SOURCE_FSOCKOPEN', 4);
  326. /**
  327. * cURL file source
  328. */
  329. define('SIMPLEPIE_FILE_SOURCE_CURL', 8);
  330. /**
  331. * file_get_contents() file source
  332. */
  333. define('SIMPLEPIE_FILE_SOURCE_FILE_GET_CONTENTS', 16);
  334. /**
  335. * SimplePie
  336. *
  337. * @package SimplePie
  338. * @subpackage API
  339. */
  340. class SimplePie
  341. {
  342. /**
  343. * @var array Raw data
  344. * @access private
  345. */
  346. public $data = array();
  347. /**
  348. * @var mixed Error string
  349. * @access private
  350. */
  351. public $error;
  352. /**
  353. * @var object Instance of SimplePie_Sanitize (or other class)
  354. * @see SimplePie::set_sanitize_class()
  355. * @access private
  356. */
  357. public $sanitize;
  358. /**
  359. * @var string SimplePie Useragent
  360. * @see SimplePie::set_useragent()
  361. * @access private
  362. */
  363. public $useragent = SIMPLEPIE_USERAGENT;
  364. /**
  365. * @var string Feed URL
  366. * @see SimplePie::set_feed_url()
  367. * @access private
  368. */
  369. public $feed_url;
  370. /**
  371. * @var object Instance of SimplePie_File to use as a feed
  372. * @see SimplePie::set_file()
  373. * @access private
  374. */
  375. public $file;
  376. /**
  377. * @var string Raw feed data
  378. * @see SimplePie::set_raw_data()
  379. * @access private
  380. */
  381. public $raw_data;
  382. /**
  383. * @var int Timeout for fetching remote files
  384. * @see SimplePie::set_timeout()
  385. * @access private
  386. */
  387. public $timeout = 10;
  388. /**
  389. * @var bool Forces fsockopen() to be used for remote files instead
  390. * of cURL, even if a new enough version is installed
  391. * @see SimplePie::force_fsockopen()
  392. * @access private
  393. */
  394. public $force_fsockopen = false;
  395. /**
  396. * @var bool Force the given data/URL to be treated as a feed no matter what
  397. * it appears like
  398. * @see SimplePie::force_feed()
  399. * @access private
  400. */
  401. public $force_feed = false;
  402. /**
  403. * @var bool Enable/Disable Caching
  404. * @see SimplePie::enable_cache()
  405. * @access private
  406. */
  407. public $cache = true;
  408. /**
  409. * @var int Cache duration (in seconds)
  410. * @see SimplePie::set_cache_duration()
  411. * @access private
  412. */
  413. public $cache_duration = 3600;
  414. /**
  415. * @var int Auto-discovery cache duration (in seconds)
  416. * @see SimplePie::set_autodiscovery_cache_duration()
  417. * @access private
  418. */
  419. public $autodiscovery_cache_duration = 604800; // 7 Days.
  420. /**
  421. * @var string Cache location (relative to executing script)
  422. * @see SimplePie::set_cache_location()
  423. * @access private
  424. */
  425. public $cache_location = './cache';
  426. /**
  427. * @var string Function that creates the cache filename
  428. * @see SimplePie::set_cache_name_function()
  429. * @access private
  430. */
  431. public $cache_name_function = 'md5';
  432. /**
  433. * @var bool Reorder feed by date descending
  434. * @see SimplePie::enable_order_by_date()
  435. * @access private
  436. */
  437. public $order_by_date = true;
  438. /**
  439. * @var mixed Force input encoding to be set to the follow value
  440. * (false, or anything type-cast to false, disables this feature)
  441. * @see SimplePie::set_input_encoding()
  442. * @access private
  443. */
  444. public $input_encoding = false;
  445. /**
  446. * @var int Feed Autodiscovery Level
  447. * @see SimplePie::set_autodiscovery_level()
  448. * @access private
  449. */
  450. public $autodiscovery = SIMPLEPIE_LOCATOR_ALL;
  451. /**
  452. * Class registry object
  453. *
  454. * @var SimplePie_Registry
  455. */
  456. public $registry;
  457. /**
  458. * @var int Maximum number of feeds to check with autodiscovery
  459. * @see SimplePie::set_max_checked_feeds()
  460. * @access private
  461. */
  462. public $max_checked_feeds = 10;
  463. /**
  464. * @var array All the feeds found during the autodiscovery process
  465. * @see SimplePie::get_all_discovered_feeds()
  466. * @access private
  467. */
  468. public $all_discovered_feeds = array();
  469. /**
  470. * @var string Web-accessible path to the handler_image.php file.
  471. * @see SimplePie::set_image_handler()
  472. * @access private
  473. */
  474. public $image_handler = '';
  475. /**
  476. * @var array Stores the URLs when multiple feeds are being initialized.
  477. * @see SimplePie::set_feed_url()
  478. * @access private
  479. */
  480. public $multifeed_url = array();
  481. /**
  482. * @var array Stores SimplePie objects when multiple feeds initialized.
  483. * @access private
  484. */
  485. public $multifeed_objects = array();
  486. /**
  487. * @var array Stores the get_object_vars() array for use with multifeeds.
  488. * @see SimplePie::set_feed_url()
  489. * @access private
  490. */
  491. public $config_settings = null;
  492. /**
  493. * @var integer Stores the number of items to return per-feed with multifeeds.
  494. * @see SimplePie::set_item_limit()
  495. * @access private
  496. */
  497. public $item_limit = 0;
  498. /**
  499. * @var array Stores the default attributes to be stripped by strip_attributes().
  500. * @see SimplePie::strip_attributes()
  501. * @access private
  502. */
  503. public $strip_attributes = array('bgsound', 'class', 'expr', 'id', 'style', 'onclick', 'onerror', 'onfinish', 'onmouseover', 'onmouseout', 'onfocus', 'onblur', 'lowsrc', 'dynsrc');
  504. /**
  505. * @var array Stores the default attributes to add to differet tags by add_attributes().
  506. * @see SimplePie::add_attributes()
  507. * @access private
  508. */
  509. public $add_attributes = array('audio' => array('preload' => 'none'), 'iframe' => array('sandbox' => 'allow-scripts allow-same-origin'), 'video' => array('preload' => 'none')); //FreshRSS
  510. /**
  511. * @var array Stores the default tags to be stripped by strip_htmltags().
  512. * @see SimplePie::strip_htmltags()
  513. * @access private
  514. */
  515. public $strip_htmltags = array('base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style');
  516. /**
  517. * The SimplePie class contains feed level data and options
  518. *
  519. * To use SimplePie, create the SimplePie object with no parameters. You can
  520. * then set configuration options using the provided methods. After setting
  521. * them, you must initialise the feed using $feed->init(). At that point the
  522. * object's methods and properties will be available to you.
  523. *
  524. * Previously, it was possible to pass in the feed URL along with cache
  525. * options directly into the constructor. This has been removed as of 1.3 as
  526. * it caused a lot of confusion.
  527. *
  528. * @since 1.0 Preview Release
  529. */
  530. public function __construct()
  531. {
  532. if (version_compare(PHP_VERSION, '5.2', '<'))
  533. {
  534. trigger_error('PHP 4.x, 5.0 and 5.1 are no longer supported. Please upgrade to PHP 5.2 or newer.');
  535. die();
  536. }
  537. // Other objects, instances created here so we can set options on them
  538. $this->sanitize = new SimplePie_Sanitize();
  539. $this->registry = new SimplePie_Registry();
  540. if (func_num_args() > 0)
  541. {
  542. $level = defined('E_USER_DEPRECATED') ? E_USER_DEPRECATED : E_USER_WARNING;
  543. trigger_error('Passing parameters to the constructor is no longer supported. Please use set_feed_url(), set_cache_location(), and set_cache_location() directly.', $level);
  544. $args = func_get_args();
  545. switch (count($args)) {
  546. case 3:
  547. $this->set_cache_duration($args[2]);
  548. case 2:
  549. $this->set_cache_location($args[1]);
  550. case 1:
  551. $this->set_feed_url($args[0]);
  552. $this->init();
  553. }
  554. }
  555. }
  556. /**
  557. * Used for converting object to a string
  558. */
  559. public function __toString()
  560. {
  561. return md5(serialize($this->data));
  562. }
  563. /**
  564. * Remove items that link back to this before destroying this object
  565. */
  566. public function __destruct()
  567. {
  568. if ((version_compare(PHP_VERSION, '5.3', '<') || !gc_enabled()) && !ini_get('zend.ze1_compatibility_mode'))
  569. {
  570. if (!empty($this->data['items']))
  571. {
  572. foreach ($this->data['items'] as $item)
  573. {
  574. $item->__destruct();
  575. }
  576. unset($item, $this->data['items']);
  577. }
  578. if (!empty($this->data['ordered_items']))
  579. {
  580. foreach ($this->data['ordered_items'] as $item)
  581. {
  582. $item->__destruct();
  583. }
  584. unset($item, $this->data['ordered_items']);
  585. }
  586. }
  587. }
  588. /**
  589. * Force the given data/URL to be treated as a feed
  590. *
  591. * This tells SimplePie to ignore the content-type provided by the server.
  592. * Be careful when using this option, as it will also disable autodiscovery.
  593. *
  594. * @since 1.1
  595. * @param bool $enable Force the given data/URL to be treated as a feed
  596. */
  597. public function force_feed($enable = false)
  598. {
  599. $this->force_feed = (bool) $enable;
  600. }
  601. /**
  602. * Set the URL of the feed you want to parse
  603. *
  604. * This allows you to enter the URL of the feed you want to parse, or the
  605. * website you want to try to use auto-discovery on. This takes priority
  606. * over any set raw data.
  607. *
  608. * You can set multiple feeds to mash together by passing an array instead
  609. * of a string for the $url. Remember that with each additional feed comes
  610. * additional processing and resources.
  611. *
  612. * @since 1.0 Preview Release
  613. * @see set_raw_data()
  614. * @param string|array $url This is the URL (or array of URLs) that you want to parse.
  615. */
  616. public function set_feed_url($url)
  617. {
  618. $this->multifeed_url = array();
  619. if (is_array($url))
  620. {
  621. foreach ($url as $value)
  622. {
  623. $this->multifeed_url[] = $this->registry->call('Misc', 'fix_protocol', array($value, 1));
  624. }
  625. }
  626. else
  627. {
  628. $this->feed_url = $this->registry->call('Misc', 'fix_protocol', array($url, 1));
  629. }
  630. }
  631. /**
  632. * Set an instance of {@see SimplePie_File} to use as a feed
  633. *
  634. * @param SimplePie_File &$file
  635. * @return bool True on success, false on failure
  636. */
  637. public function set_file(&$file)
  638. {
  639. if ($file instanceof SimplePie_File)
  640. {
  641. $this->feed_url = $file->url;
  642. $this->file =& $file;
  643. return true;
  644. }
  645. return false;
  646. }
  647. /**
  648. * Set the raw XML data to parse
  649. *
  650. * Allows you to use a string of RSS/Atom data instead of a remote feed.
  651. *
  652. * If you have a feed available as a string in PHP, you can tell SimplePie
  653. * to parse that data string instead of a remote feed. Any set feed URL
  654. * takes precedence.
  655. *
  656. * @since 1.0 Beta 3
  657. * @param string $data RSS or Atom data as a string.
  658. * @see set_feed_url()
  659. */
  660. public function set_raw_data($data)
  661. {
  662. $this->raw_data = $data;
  663. }
  664. /**
  665. * Set the the default timeout for fetching remote feeds
  666. *
  667. * This allows you to change the maximum time the feed's server to respond
  668. * and send the feed back.
  669. *
  670. * @since 1.0 Beta 3
  671. * @param int $timeout The maximum number of seconds to spend waiting to retrieve a feed.
  672. */
  673. public function set_timeout($timeout = 10)
  674. {
  675. $this->timeout = (int) $timeout;
  676. }
  677. /**
  678. * Force SimplePie to use fsockopen() instead of cURL
  679. *
  680. * @since 1.0 Beta 3
  681. * @param bool $enable Force fsockopen() to be used
  682. */
  683. public function force_fsockopen($enable = false)
  684. {
  685. $this->force_fsockopen = (bool) $enable;
  686. }
  687. /**
  688. * Enable/disable caching in SimplePie.
  689. *
  690. * This option allows you to disable caching all-together in SimplePie.
  691. * However, disabling the cache can lead to longer load times.
  692. *
  693. * @since 1.0 Preview Release
  694. * @param bool $enable Enable caching
  695. */
  696. public function enable_cache($enable = true)
  697. {
  698. $this->cache = (bool) $enable;
  699. }
  700. /**
  701. * Set the length of time (in seconds) that the contents of a feed will be
  702. * cached
  703. *
  704. * @param int $seconds The feed content cache duration
  705. */
  706. public function set_cache_duration($seconds = 3600)
  707. {
  708. $this->cache_duration = (int) $seconds;
  709. }
  710. /**
  711. * Set the length of time (in seconds) that the autodiscovered feed URL will
  712. * be cached
  713. *
  714. * @param int $seconds The autodiscovered feed URL cache duration.
  715. */
  716. public function set_autodiscovery_cache_duration($seconds = 604800)
  717. {
  718. $this->autodiscovery_cache_duration = (int) $seconds;
  719. }
  720. /**
  721. * Set the file system location where the cached files should be stored
  722. *
  723. * @param string $location The file system location.
  724. */
  725. public function set_cache_location($location = './cache')
  726. {
  727. $this->cache_location = (string) $location;
  728. }
  729. /**
  730. * Set whether feed items should be sorted into reverse chronological order
  731. *
  732. * @param bool $enable Sort as reverse chronological order.
  733. */
  734. public function enable_order_by_date($enable = true)
  735. {
  736. $this->order_by_date = (bool) $enable;
  737. }
  738. /**
  739. * Set the character encoding used to parse the feed
  740. *
  741. * This overrides the encoding reported by the feed, however it will fall
  742. * back to the normal encoding detection if the override fails
  743. *
  744. * @param string $encoding Character encoding
  745. */
  746. public function set_input_encoding($encoding = false)
  747. {
  748. if ($encoding)
  749. {
  750. $this->input_encoding = (string) $encoding;
  751. }
  752. else
  753. {
  754. $this->input_encoding = false;
  755. }
  756. }
  757. /**
  758. * Set how much feed autodiscovery to do
  759. *
  760. * @see SIMPLEPIE_LOCATOR_NONE
  761. * @see SIMPLEPIE_LOCATOR_AUTODISCOVERY
  762. * @see SIMPLEPIE_LOCATOR_LOCAL_EXTENSION
  763. * @see SIMPLEPIE_LOCATOR_LOCAL_BODY
  764. * @see SIMPLEPIE_LOCATOR_REMOTE_EXTENSION
  765. * @see SIMPLEPIE_LOCATOR_REMOTE_BODY
  766. * @see SIMPLEPIE_LOCATOR_ALL
  767. * @param int $level Feed Autodiscovery Level (level can be a combination of the above constants, see bitwise OR operator)
  768. */
  769. public function set_autodiscovery_level($level = SIMPLEPIE_LOCATOR_ALL)
  770. {
  771. $this->autodiscovery = (int) $level;
  772. }
  773. /**
  774. * Get the class registry
  775. *
  776. * Use this to override SimplePie's default classes
  777. * @see SimplePie_Registry
  778. * @return SimplePie_Registry
  779. */
  780. public function &get_registry()
  781. {
  782. return $this->registry;
  783. }
  784. /**#@+
  785. * Useful when you are overloading or extending SimplePie's default classes.
  786. *
  787. * @deprecated Use {@see get_registry()} instead
  788. * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
  789. * @param string $class Name of custom class
  790. * @return boolean True on success, false otherwise
  791. */
  792. /**
  793. * Set which class SimplePie uses for caching
  794. */
  795. public function set_cache_class($class = 'SimplePie_Cache')
  796. {
  797. return $this->registry->register('Cache', $class, true);
  798. }
  799. /**
  800. * Set which class SimplePie uses for auto-discovery
  801. */
  802. public function set_locator_class($class = 'SimplePie_Locator')
  803. {
  804. return $this->registry->register('Locator', $class, true);
  805. }
  806. /**
  807. * Set which class SimplePie uses for XML parsing
  808. */
  809. public function set_parser_class($class = 'SimplePie_Parser')
  810. {
  811. return $this->registry->register('Parser', $class, true);
  812. }
  813. /**
  814. * Set which class SimplePie uses for remote file fetching
  815. */
  816. public function set_file_class($class = 'SimplePie_File')
  817. {
  818. return $this->registry->register('File', $class, true);
  819. }
  820. /**
  821. * Set which class SimplePie uses for data sanitization
  822. */
  823. public function set_sanitize_class($class = 'SimplePie_Sanitize')
  824. {
  825. return $this->registry->register('Sanitize', $class, true);
  826. }
  827. /**
  828. * Set which class SimplePie uses for handling feed items
  829. */
  830. public function set_item_class($class = 'SimplePie_Item')
  831. {
  832. return $this->registry->register('Item', $class, true);
  833. }
  834. /**
  835. * Set which class SimplePie uses for handling author data
  836. */
  837. public function set_author_class($class = 'SimplePie_Author')
  838. {
  839. return $this->registry->register('Author', $class, true);
  840. }
  841. /**
  842. * Set which class SimplePie uses for handling category data
  843. */
  844. public function set_category_class($class = 'SimplePie_Category')
  845. {
  846. return $this->registry->register('Category', $class, true);
  847. }
  848. /**
  849. * Set which class SimplePie uses for feed enclosures
  850. */
  851. public function set_enclosure_class($class = 'SimplePie_Enclosure')
  852. {
  853. return $this->registry->register('Enclosure', $class, true);
  854. }
  855. /**
  856. * Set which class SimplePie uses for `<media:text>` captions
  857. */
  858. public function set_caption_class($class = 'SimplePie_Caption')
  859. {
  860. return $this->registry->register('Caption', $class, true);
  861. }
  862. /**
  863. * Set which class SimplePie uses for `<media:copyright>`
  864. */
  865. public function set_copyright_class($class = 'SimplePie_Copyright')
  866. {
  867. return $this->registry->register('Copyright', $class, true);
  868. }
  869. /**
  870. * Set which class SimplePie uses for `<media:credit>`
  871. */
  872. public function set_credit_class($class = 'SimplePie_Credit')
  873. {
  874. return $this->registry->register('Credit', $class, true);
  875. }
  876. /**
  877. * Set which class SimplePie uses for `<media:rating>`
  878. */
  879. public function set_rating_class($class = 'SimplePie_Rating')
  880. {
  881. return $this->registry->register('Rating', $class, true);
  882. }
  883. /**
  884. * Set which class SimplePie uses for `<media:restriction>`
  885. */
  886. public function set_restriction_class($class = 'SimplePie_Restriction')
  887. {
  888. return $this->registry->register('Restriction', $class, true);
  889. }
  890. /**
  891. * Set which class SimplePie uses for content-type sniffing
  892. */
  893. public function set_content_type_sniffer_class($class = 'SimplePie_Content_Type_Sniffer')
  894. {
  895. return $this->registry->register('Content_Type_Sniffer', $class, true);
  896. }
  897. /**
  898. * Set which class SimplePie uses item sources
  899. */
  900. public function set_source_class($class = 'SimplePie_Source')
  901. {
  902. return $this->registry->register('Source', $class, true);
  903. }
  904. /**#@-*/
  905. /**
  906. * Set the user agent string
  907. *
  908. * @param string $ua New user agent string.
  909. */
  910. public function set_useragent($ua = SIMPLEPIE_USERAGENT)
  911. {
  912. $this->useragent = (string) $ua;
  913. }
  914. /**
  915. * Set callback function to create cache filename with
  916. *
  917. * @param mixed $function Callback function
  918. */
  919. public function set_cache_name_function($function = 'md5')
  920. {
  921. if (is_callable($function))
  922. {
  923. $this->cache_name_function = $function;
  924. }
  925. }
  926. /**
  927. * Set options to make SP as fast as possible
  928. *
  929. * Forgoes a substantial amount of data sanitization in favor of speed. This
  930. * turns SimplePie into a dumb parser of feeds.
  931. *
  932. * @param bool $set Whether to set them or not
  933. */
  934. public function set_stupidly_fast($set = false)
  935. {
  936. if ($set)
  937. {
  938. $this->enable_order_by_date(false);
  939. $this->remove_div(false);
  940. $this->strip_comments(false);
  941. $this->strip_htmltags(false);
  942. $this->strip_attributes(false);
  943. $this->add_attributes(false);
  944. $this->set_image_handler(false);
  945. }
  946. }
  947. /**
  948. * Set maximum number of feeds to check with autodiscovery
  949. *
  950. * @param int $max Maximum number of feeds to check
  951. */
  952. public function set_max_checked_feeds($max = 10)
  953. {
  954. $this->max_checked_feeds = (int) $max;
  955. }
  956. public function remove_div($enable = true)
  957. {
  958. $this->sanitize->remove_div($enable);
  959. }
  960. public function strip_htmltags($tags = '', $encode = null)
  961. {
  962. if ($tags === '')
  963. {
  964. $tags = $this->strip_htmltags;
  965. }
  966. $this->sanitize->strip_htmltags($tags);
  967. if ($encode !== null)
  968. {
  969. $this->sanitize->encode_instead_of_strip($tags);
  970. }
  971. }
  972. public function encode_instead_of_strip($enable = true)
  973. {
  974. $this->sanitize->encode_instead_of_strip($enable);
  975. }
  976. public function strip_attributes($attribs = '')
  977. {
  978. if ($attribs === '')
  979. {
  980. $attribs = $this->strip_attributes;
  981. }
  982. $this->sanitize->strip_attributes($attribs);
  983. }
  984. public function add_attributes($attribs = '')
  985. {
  986. if ($attribs === '')
  987. {
  988. $attribs = $this->add_attributes;
  989. }
  990. $this->sanitize->add_attributes($attribs);
  991. }
  992. /**
  993. * Set the output encoding
  994. *
  995. * Allows you to override SimplePie's output to match that of your webpage.
  996. * This is useful for times when your webpages are not being served as
  997. * UTF-8. This setting will be obeyed by {@see handle_content_type()}, and
  998. * is similar to {@see set_input_encoding()}.
  999. *
  1000. * It should be noted, however, that not all character encodings can support
  1001. * all characters. If your page is being served as ISO-8859-1 and you try
  1002. * to display a Japanese feed, you'll likely see garbled characters.
  1003. * Because of this, it is highly recommended to ensure that your webpages
  1004. * are served as UTF-8.
  1005. *
  1006. * The number of supported character encodings depends on whether your web
  1007. * host supports {@link http://php.net/mbstring mbstring},
  1008. * {@link http://php.net/iconv iconv}, or both. See
  1009. * {@link http://simplepie.org/wiki/faq/Supported_Character_Encodings} for
  1010. * more information.
  1011. *
  1012. * @param string $encoding
  1013. */
  1014. public function set_output_encoding($encoding = 'UTF-8')
  1015. {
  1016. $this->sanitize->set_output_encoding($encoding);
  1017. }
  1018. public function strip_comments($strip = false)
  1019. {
  1020. $this->sanitize->strip_comments($strip);
  1021. }
  1022. /**
  1023. * Set element/attribute key/value pairs of HTML attributes
  1024. * containing URLs that need to be resolved relative to the feed
  1025. *
  1026. * Defaults to |a|@href, |area|@href, |blockquote|@cite, |del|@cite,
  1027. * |form|@action, |img|@longdesc, |img|@src, |input|@src, |ins|@cite,
  1028. * |q|@cite
  1029. *
  1030. * @since 1.0
  1031. * @param array|null $element_attribute Element/attribute key/value pairs, null for default
  1032. */
  1033. public function set_url_replacements($element_attribute = null)
  1034. {
  1035. $this->sanitize->set_url_replacements($element_attribute);
  1036. }
  1037. /**
  1038. * Set the handler to enable the display of cached images.
  1039. *
  1040. * @param str $page Web-accessible path to the handler_image.php file.
  1041. * @param str $qs The query string that the value should be passed to.
  1042. */
  1043. public function set_image_handler($page = false, $qs = 'i')
  1044. {
  1045. if ($page !== false)
  1046. {
  1047. $this->sanitize->set_image_handler($page . '?' . $qs . '=');
  1048. }
  1049. else
  1050. {
  1051. $this->image_handler = '';
  1052. }
  1053. }
  1054. /**
  1055. * Set the limit for items returned per-feed with multifeeds
  1056. *
  1057. * @param integer $limit The maximum number of items to return.
  1058. */
  1059. public function set_item_limit($limit = 0)
  1060. {
  1061. $this->item_limit = (int) $limit;
  1062. }
  1063. /**
  1064. * Initialize the feed object
  1065. *
  1066. * This is what makes everything happen. Period. This is where all of the
  1067. * configuration options get processed, feeds are fetched, cached, and
  1068. * parsed, and all of that other good stuff.
  1069. *
  1070. * @return boolean True if successful, false otherwise
  1071. */
  1072. public function init()
  1073. {
  1074. // Check absolute bare minimum requirements.
  1075. if (!extension_loaded('xml') || !extension_loaded('pcre'))
  1076. {
  1077. return false;
  1078. }
  1079. // Then check the xml extension is sane (i.e., libxml 2.7.x issue on PHP < 5.2.9 and libxml 2.7.0 to 2.7.2 on any version) if we don't have xmlreader.
  1080. elseif (!extension_loaded('xmlreader'))
  1081. {
  1082. static $xml_is_sane = null;
  1083. if ($xml_is_sane === null)
  1084. {
  1085. $parser_check = xml_parser_create();
  1086. xml_parse_into_struct($parser_check, '<foo>&amp;</foo>', $values);
  1087. xml_parser_free($parser_check);
  1088. $xml_is_sane = isset($values[0]['value']);
  1089. }
  1090. if (!$xml_is_sane)
  1091. {
  1092. return false;
  1093. }
  1094. }
  1095. if (method_exists($this->sanitize, 'set_registry'))
  1096. {
  1097. $this->sanitize->set_registry($this->registry);
  1098. }
  1099. // Pass whatever was set with config options over to the sanitizer.
  1100. // Pass the classes in for legacy support; new classes should use the registry instead
  1101. $this->sanitize->pass_cache_data($this->cache, $this->cache_location, $this->cache_name_function, $this->registry->get_class('Cache'));
  1102. $this->sanitize->pass_file_data($this->registry->get_class('File'), $this->timeout, $this->useragent, $this->force_fsockopen);
  1103. if (!empty($this->multifeed_url))
  1104. {
  1105. $i = 0;
  1106. $success = 0;
  1107. $this->multifeed_objects = array();
  1108. $this->error = array();
  1109. foreach ($this->multifeed_url as $url)
  1110. {
  1111. $this->multifeed_objects[$i] = clone $this;
  1112. $this->multifeed_objects[$i]->set_feed_url($url);
  1113. $single_success = $this->multifeed_objects[$i]->init();
  1114. $success |= $single_success;
  1115. if (!$single_success)
  1116. {
  1117. $this->error[$i] = $this->multifeed_objects[$i]->error();
  1118. }
  1119. $i++;
  1120. }
  1121. return (bool) $success;
  1122. }
  1123. elseif ($this->feed_url === null && $this->raw_data === null)
  1124. {
  1125. return false;
  1126. }
  1127. $this->error = null;
  1128. $this->data = array();
  1129. $this->multifeed_objects = array();
  1130. $cache = false;
  1131. if ($this->feed_url !== null)
  1132. {
  1133. $parsed_feed_url = $this->registry->call('Misc', 'parse_url', array($this->feed_url));
  1134. // Decide whether to enable caching
  1135. if ($this->cache && $parsed_feed_url['scheme'] !== '')
  1136. {
  1137. $cache = $this->registry->call('Cache', 'get_handler', array($this->cache_location, call_user_func($this->cache_name_function, $this->feed_url), 'spc'));
  1138. }
  1139. // Fetch the data via SimplePie_File into $this->raw_data
  1140. if (($fetched = $this->fetch_data($cache)) === true)
  1141. {
  1142. return true;
  1143. }
  1144. elseif ($fetched === false) {
  1145. return false;
  1146. }
  1147. list($headers, $sniffed) = $fetched;
  1148. }
  1149. // Set up array of possible encodings
  1150. $encodings = array();
  1151. // First check to see if input has been overridden.
  1152. if ($this->input_encoding !== false)
  1153. {
  1154. $encodings[] = $this->input_encoding;
  1155. }
  1156. $application_types = array('application/xml', 'application/xml-dtd', 'application/xml-external-parsed-entity');
  1157. $text_types = array('text/xml', 'text/xml-external-parsed-entity');
  1158. // RFC 3023 (only applies to sniffed content)
  1159. if (isset($sniffed))
  1160. {
  1161. if (in_array($sniffed, $application_types) || substr($sniffed, 0, 12) === 'application/' && substr($sniffed, -4) === '+xml')
  1162. {
  1163. if (isset($headers['content-type']) && preg_match('/;\x20?charset=([^;]*)/i', $headers['content-type'], $charset))
  1164. {
  1165. $encodings[] = strtoupper($charset[1]);
  1166. }
  1167. else
  1168. {
  1169. $encodings[] = ''; //Let the DOM parser decide first
  1170. }
  1171. }
  1172. elseif (in_array($sniffed, $text_types) || substr($sniffed, 0, 5) === 'text/' && substr($sniffed, -4) === '+xml')
  1173. {
  1174. if (isset($headers['content-type']) && preg_match('/;\x20?charset=([^;]*)/i', $headers['content-type'], $charset))
  1175. {
  1176. $encodings[] = $charset[1];
  1177. }
  1178. else
  1179. {
  1180. $encodings[] = '';
  1181. }
  1182. $encodings[] = 'US-ASCII';
  1183. }
  1184. // Text MIME-type default
  1185. elseif (substr($sniffed, 0, 5) === 'text/')
  1186. {
  1187. $encodings[] = 'US-ASCII';
  1188. }
  1189. }
  1190. // Fallback to XML 1.0 Appendix F.1/UTF-8/ISO-8859-1
  1191. $encodings = array_merge($encodings, $this->registry->call('Misc', 'xml_encoding', array($this->raw_data, &$this->registry)));
  1192. $encodings[] = 'UTF-8';
  1193. $encodings[] = 'ISO-8859-1';
  1194. // There's no point in trying an encoding twice
  1195. $encodings = array_unique($encodings);
  1196. // Loop through each possible encoding, till we return something, or run out of possibilities
  1197. foreach ($encodings as $encoding)
  1198. {
  1199. // Change the encoding to UTF-8 (as we always use UTF-8 internally)
  1200. if ($utf8_data = (empty($encoding) || $encoding === 'UTF-8') ? $this->raw_data : $this->registry->call('Misc', 'change_encoding', array($this->raw_data, $encoding, 'UTF-8')))
  1201. {
  1202. // Create new parser
  1203. $parser = $this->registry->create('Parser');
  1204. // If it's parsed fine
  1205. if ($parser->parse($utf8_data, 'UTF-8'))
  1206. {
  1207. $this->data = $parser->get_data();
  1208. if (!($this->get_type() & ~SIMPLEPIE_TYPE_NONE))
  1209. {
  1210. $this->error = "A feed could not be found at $this->feed_url. This does not appear to be a valid RSS or Atom feed.";
  1211. $this->registry->call('Misc', 'error', array($this->error, E_USER_NOTICE, __FILE__, __LINE__));
  1212. return false;
  1213. }
  1214. if (isset($headers))
  1215. {
  1216. $this->data['headers'] = $headers;
  1217. }
  1218. $this->data['build'] = SIMPLEPIE_BUILD;
  1219. // Cache the file if caching is enabled
  1220. if ($cache && !$cache->save($this))
  1221. {
  1222. trigger_error("$this->cache_location is not writeable. Make sure you've set the correct relative or absolute path, and that the location is server-writable.", E_USER_WARNING);
  1223. }
  1224. return true;
  1225. }
  1226. }
  1227. }
  1228. if (isset($parser))
  1229. {
  1230. // We have an error, just set SimplePie_Misc::error to it and quit
  1231. $this->error = sprintf('This XML document is invalid, likely due to invalid characters. XML error: %s at line %d, column %d', $parser->get_error_string(), $parser->get_current_line(), $parser->get_current_column());
  1232. }
  1233. else
  1234. {
  1235. $this->error = 'The data could not be converted to UTF-8. You MUST have either the iconv or mbstring extension installed. Upgrading to PHP 5.x (which includes iconv) is highly recommended.';
  1236. }
  1237. $this->registry->call('Misc', 'error', array($this->error, E_USER_NOTICE, __FILE__, __LINE__));
  1238. return false;
  1239. }
  1240. /**
  1241. * Fetch the data via SimplePie_File
  1242. *
  1243. * If the data is already cached, attempt to fetch it from there instead
  1244. * @param SimplePie_Cache|false $cache Cache handler, or false to not load from the cache
  1245. * @return array|true Returns true if the data was loaded from the cache, or an array of HTTP headers and sniffed type
  1246. */
  1247. protected function fetch_data(&$cache)
  1248. {
  1249. // If it's enabled, use the cache
  1250. if ($cache)
  1251. {
  1252. // Load the Cache
  1253. $this->data = $cache->load();
  1254. if (!empty($this->data))
  1255. {
  1256. // If the cache is for an outdated build of SimplePie
  1257. if (!isset($this->data['build']) || $this->data['build'] !== SIMPLEPIE_BUILD)
  1258. {
  1259. $cache->unlink();
  1260. $this->data = array();
  1261. }
  1262. // If we've hit a collision just rerun it with caching disabled
  1263. elseif (isset($this->data['url']) && $this->data['url'] !== $this->feed_url)
  1264. {
  1265. $cache = false;
  1266. $this->data = array();
  1267. }
  1268. // If we've got a non feed_url stored (if the page isn't actually a feed, or is a redirect) use that URL.
  1269. elseif (isset($this->data['feed_url']))
  1270. {
  1271. // If the autodiscovery cache is still valid use it.
  1272. if ($cache->mtime() + $this->autodiscovery_cache_duration > time())
  1273. {
  1274. // Do not need to do feed autodiscovery yet.
  1275. if ($this->data['feed_url'] !== $this->data['url'])
  1276. {
  1277. $this->set_feed_url($this->data['feed_url']);
  1278. return $this->init();
  1279. }
  1280. $cache->unlink();
  1281. $this->data = array();
  1282. }
  1283. }
  1284. // Check if the cache has been updated
  1285. elseif ($cache->mtime() + $this->cache_duration < time())
  1286. {
  1287. // If we have last-modified and/or etag set
  1288. if (isset($this->data['headers']['last-modified']) || isset($this->data['headers']['etag']))
  1289. {
  1290. $headers = array(
  1291. 'Accept' => 'application/atom+xml, application/rss+xml, application/rdf+xml;q=0.9, application/xml;q=0.8, text/xml;q=0.8, text/html;q=0.7, unknown/unknown;q=0.1, application/unknown;q=0.1, */*;q=0.1',
  1292. );
  1293. if (isset($this->data['headers']['last-modified']))
  1294. {
  1295. $headers['if-modified-since'] = $this->data['headers']['last-modified'];
  1296. }
  1297. if (isset($this->data['headers']['etag']))
  1298. {
  1299. $headers['if-none-match'] = $this->data['headers']['etag'];
  1300. }
  1301. $file = $this->registry->create('File', array($this->feed_url, $this->timeout/10, 5, $headers, $this->useragent, $this->force_fsockopen));
  1302. if ($file->success)
  1303. {
  1304. if ($file->status_code === 304)
  1305. {
  1306. $cache->touch();
  1307. return true;
  1308. }
  1309. }
  1310. else
  1311. {
  1312. unset($file);
  1313. }
  1314. }
  1315. }
  1316. // If the cache is still valid, just return true
  1317. else
  1318. {
  1319. $this->raw_data = false;
  1320. return true;
  1321. }
  1322. }
  1323. // If the cache is empty, delete it
  1324. else
  1325. {
  1326. $cache->unlink();
  1327. $this->data = array();
  1328. }
  1329. }
  1330. // If we don't already have the file (it'll only exist if we've opened it to check if the cache has been modified), open it.
  1331. if (!isset($file))
  1332. {
  1333. if ($this->file instanceof SimplePie_File && $this->file->url === $this->feed_url)
  1334. {
  1335. $file =& $this->file;
  1336. }
  1337. else
  1338. {
  1339. $headers = array(
  1340. 'Accept' => 'application/atom+xml, application/rss+xml, application/rdf+xml;q=0.9, application/xml;q=0.8, text/xml;q=0.8, text/html;q=0.7, unknown/unknown;q=0.1, application/unknown;q=0.1, */*;q=0.1',
  1341. );
  1342. $file = $this->registry->create('File', array($this->feed_url, $this->timeout, 5, $headers, $this->useragent, $this->force_fsockopen));
  1343. }
  1344. }
  1345. // If the file connection has an error, set SimplePie::error to that and quit
  1346. if (!$file->success && !($file->method & SIMPLEPIE_FILE_SOURCE_REMOTE === 0 || ($file->status_code === 200 || $file->status_code > 206 && $file->status_code < 300)))
  1347. {
  1348. $this->error = $file->error;
  1349. return !empty($this->data);
  1350. }
  1351. if (!$this->force_feed)
  1352. {
  1353. // Check if the supplied URL is a feed, if it isn't, look for it.
  1354. $locate = $this->registry->create('Locator', array(&$file, $this->timeout, $this->useragent, $this->max_checked_feeds));
  1355. if (!$locate->is_feed($file))
  1356. {
  1357. // We need to unset this so that if SimplePie::set_file() has been called that object is untouched
  1358. unset($file);
  1359. try
  1360. {
  1361. if (!($file = $locate->find($this->autodiscovery, $this->all_discovered_feeds)))
  1362. {
  1363. $this->error = "A feed could not be found at $this->feed_url. A feed with an invalid mime type may fall victim to this error, or " . SIMPLEPIE_NAME . " was unable to auto-discover it.. Use force_feed() if you are certain this URL is a real feed.";
  1364. $this->registry->call('Misc', 'error', array($this->error, E_USER_NOTICE, __FILE__, __LINE__));
  1365. return false;
  1366. }
  1367. }
  1368. catch (SimplePie_Exception $e)
  1369. {
  1370. // This is usually because DOMDocument doesn't exist
  1371. $this->error = $e->getMessage();
  1372. $this->registry->call('Misc', 'error', array($this->error, E_USER_NOTICE, $e->getFile(), $e->getLine()));
  1373. return false;
  1374. }
  1375. if ($cache)
  1376. {
  1377. $this->data = array('url' => $this->feed_url, 'feed_url' => $file->url, 'build' => SIMPLEPIE_BUILD);
  1378. if (!$cache->save($this))
  1379. {
  1380. trigger_error("$this->cache_location is not writeable. Make sure you've set the correct relative or absolute path, and that the location is server-writable.", E_USER_WARNING);
  1381. }
  1382. $cache = $this->registry->call('Cache', 'get_handler', array($this->cache_location, call_user_func($this->cache_name_function, $file->url), 'spc'));
  1383. }
  1384. $this->feed_url = $file->url;
  1385. }
  1386. $locate = null;
  1387. }
  1388. $this->raw_data = $file->body;
  1389. $headers = $file->headers;
  1390. $sniffer = $this->registry->create('Content_Type_Sniffer', array(&$file));
  1391. $sniffed = $sniffer->get_type();
  1392. return array($headers, $sniffed);
  1393. }
  1394. /**
  1395. * Get the error message for the occured error
  1396. *
  1397. * @return string|array Error message, or array of messages for multifeeds
  1398. */
  1399. public function error()
  1400. {
  1401. return $this->error;
  1402. }
  1403. /**
  1404. * Get the raw XML
  1405. *
  1406. * This is the same as the old `$feed->enable_xml_dump(true)`, but returns
  1407. * the data instead of printing it.
  1408. *
  1409. * @return string|boolean Raw XML data, false if the cache is used
  1410. */
  1411. public function get_raw_data()
  1412. {
  1413. return $this->raw_data;
  1414. }
  1415. /**
  1416. * Get the character encoding used for output
  1417. *
  1418. * @since Preview Release
  1419. * @return string
  1420. */
  1421. public function get_encoding()
  1422. {
  1423. return $this->sanitize->output_encoding;
  1424. }
  1425. /**
  1426. * Send the content-type header with correct encoding
  1427. *
  1428. * This method ensures that the SimplePie-enabled page is being served with
  1429. * the correct {@link http://www.iana.org/assignments/media-types/ mime-type}
  1430. * and character encoding HTTP headers (character encoding determined by the
  1431. * {@see set_output_encoding} config option).
  1432. *
  1433. * This won't work properly if any content or whitespace has already been
  1434. * sent to the browser, because it relies on PHP's
  1435. * {@link http://php.net/header header()} function, and these are the
  1436. * circumstances under which the function works.
  1437. *
  1438. * Because it's setting these settings for the entire page (as is the nature
  1439. * of HTTP headers), this should only be used once per page (again, at the
  1440. * top).
  1441. *
  1442. * @param string $mime MIME type to serve the page as
  1443. */
  1444. public function handle_content_type($mime = 'text/html')
  1445. {
  1446. if (!headers_sent())
  1447. {
  1448. $header = "Content-type: $mime;";
  1449. if ($this->get_encoding())
  1450. {
  1451. $header .= ' charset=' . $this->get_encoding();
  1452. }
  1453. else
  1454. {
  1455. $header .= ' charset=UTF-8';
  1456. }
  1457. header($header);
  1458. }
  1459. }
  1460. /**
  1461. * Get the type of the feed
  1462. *
  1463. * This returns a SIMPLEPIE_TYPE_* constant, which can be tested against
  1464. * using {@link http://php.net/language.operators.bitwise bitwise operators}
  1465. *
  1466. * @since 0.8 (usage changed to using constants in 1.0)
  1467. * @see SIMPLEPIE_TYPE_NONE Unknown.
  1468. * @see SIMPLEPIE_TYPE_RSS_090 RSS 0.90.
  1469. * @see SIMPLEPIE_TYPE_RSS_091_NETSCAPE RSS 0.91 (Netscape).
  1470. * @see SIMPLEPIE_TYPE_RSS_091_USERLAND RSS 0.91 (Userland).
  1471. * @see SIMPLEPIE_TYPE_RSS_091 RSS 0.91.
  1472. * @see SIMPLEPIE_TYPE_RSS_092 RSS 0.92.
  1473. * @see SIMPLEPIE_TYPE_RSS_093 RSS 0.93.
  1474. * @see SIMPLEPIE_TYPE_RSS_094 RSS 0.94.
  1475. * @see SIMPLEPIE_TYPE_RSS_10 RSS 1.0.
  1476. * @see SIMPLEPIE_TYPE_RSS_20 RSS 2.0.x.
  1477. * @see SIMPLEPIE_TYPE_RSS_RDF RDF-based RSS.
  1478. * @see SIMPLEPIE_TYPE_RSS_SYNDICATION Non-RDF-based RSS (truly intended as syndication format).
  1479. * @see SIMPLEPIE_TYPE_RSS_ALL Any version of RSS.
  1480. * @see SIMPLEPIE_TYPE_ATOM_03 Atom 0.3.
  1481. * @see SIMPLEPIE_TYPE_ATOM_10 Atom 1.0.
  1482. * @see SIMPLEPIE_TYPE_ATOM_ALL Any version of Atom.
  1483. * @see SIMPLEPIE_TYPE_ALL Any known/supported feed type.
  1484. * @return int SIMPLEPIE_TYPE_* constant
  1485. */
  1486. public function get_type()
  1487. {
  1488. if (!isset($this->data['type']))
  1489. {
  1490. $this->data['type'] = SIMPLEPIE_TYPE_ALL;
  1491. if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['feed']))
  1492. {
  1493. $this->data['type'] &= SIMPLEPIE_TYPE_ATOM_10;
  1494. }
  1495. elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['feed']))
  1496. {
  1497. $this->data['type'] &= SIMPLEPIE_TYPE_ATOM_03;
  1498. }
  1499. elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF']))
  1500. {
  1501. if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_10]['channel'])
  1502. || isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_10]['image'])
  1503. || isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_10]['item'])
  1504. || isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_10]['textinput']))
  1505. {
  1506. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_10;
  1507. }
  1508. if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_090]['channel'])
  1509. || isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_090]['image'])
  1510. || isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_090]['item'])
  1511. || isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_090]['textinput']))
  1512. {
  1513. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_090;
  1514. }
  1515. }
  1516. elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss']))
  1517. {
  1518. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_ALL;
  1519. if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss'][0]['attribs']['']['version']))
  1520. {
  1521. switch (trim($this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss'][0]['attribs']['']['version']))
  1522. {
  1523. case '0.91':
  1524. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_091;
  1525. if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_20]['skiphours']['hour'][0]['data']))
  1526. {
  1527. switch (trim($this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_20]['skiphours']['hour'][0]['data']))
  1528. {
  1529. case '0':
  1530. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_091_NETSCAPE;
  1531. break;
  1532. case '24':
  1533. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_091_USERLAND;
  1534. break;
  1535. }
  1536. }
  1537. break;
  1538. case '0.92':
  1539. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_092;
  1540. break;
  1541. case '0.93':
  1542. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_093;
  1543. break;
  1544. case '0.94':
  1545. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_094;
  1546. break;
  1547. case '2.0':
  1548. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_20;
  1549. break;
  1550. }
  1551. }
  1552. }
  1553. else
  1554. {
  1555. $this->data['type'] = SIMPLEPIE_TYPE_NONE;
  1556. }
  1557. }
  1558. return $this->data['type'];
  1559. }
  1560. /**
  1561. * Get the URL for the feed
  1562. *
  1563. * May or may not be different from the URL passed to {@see set_feed_url()},
  1564. * depending on whether auto-discovery was used.
  1565. *
  1566. * @since Preview Release (previously called `get_feed_url()` since SimplePie 0.8.)
  1567. * @todo If we have a perm redirect we should return the new URL
  1568. * @todo When we make the above change, let's support <itunes:new-feed-url> as well
  1569. * @todo Also, |atom:link|@rel=self
  1570. * @return string|null
  1571. */
  1572. public function subscribe_url()
  1573. {
  1574. if ($this->feed_url !== null)
  1575. {
  1576. return $this->sanitize($this->feed_url, SIMPLEPIE_CONSTRUCT_IRI);
  1577. }
  1578. else
  1579. {
  1580. return null;
  1581. }
  1582. }
  1583. /**
  1584. * Get data for an feed-level element
  1585. *
  1586. * This method allows you to get access to ANY element/attribute that is a
  1587. * sub-element of the opening feed tag.
  1588. *
  1589. * The return value is an indexed array of elements matching the given
  1590. * namespace and tag name. Each element has `attribs`, `data` and `child`
  1591. * subkeys. For `attribs` and `child`, these contain namespace subkeys.
  1592. * `attribs` then has one level of associative name => value data (where
  1593. * `value` is a string) after the namespace. `child` has tag-indexed keys
  1594. * after the namespace, each member of which is an indexed array matching
  1595. * this same format.
  1596. *
  1597. * For example:
  1598. * <pre>
  1599. * // This is probably a bad example because we already support
  1600. * // <media:content> natively, but it shows you how to parse through
  1601. * // the nodes.
  1602. * $group = $item->get_item_tags(SIMPLEPIE_NAMESPACE_MEDIARSS, 'group');
  1603. * $content = $group[0]['child'][SIMPLEPIE_NAMESPACE_MEDIARSS]['content'];
  1604. * $file = $content[0]['attribs']['']['url'];
  1605. * echo $file;
  1606. * </pre>
  1607. *
  1608. * @since 1.0
  1609. * @see http://simplepie.org/wiki/faq/supported_xml_namespaces
  1610. * @param string $namespace The URL of the XML namespace of the elements you're trying to access
  1611. * @param string $tag Tag name
  1612. * @return array
  1613. */
  1614. public function get_feed_tags($namespace, $tag)
  1615. {
  1616. $type = $this->get_type();
  1617. if ($type & SIMPLEPIE_TYPE_ATOM_10)
  1618. {
  1619. if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['feed'][0]['child'][$namespace][$tag]))
  1620. {
  1621. return $this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['feed'][0]['child'][$namespace][$tag];
  1622. }
  1623. }
  1624. if ($type & SIMPLEPIE_TYPE_ATOM_03)
  1625. {
  1626. if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['feed'][0]['child'][$namespace][$tag]))
  1627. {
  1628. return $this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['feed'][0]['child'][$namespace][$tag];
  1629. }
  1630. }
  1631. if ($type & SIMPLEPIE_TYPE_RSS_RDF)
  1632. {
  1633. if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][$namespace][$tag]))
  1634. {
  1635. return $this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][$namespace][$tag];
  1636. }
  1637. }
  1638. if ($type & SIMPLEPIE_TYPE_RSS_SYNDICATION)
  1639. {
  1640. if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss'][0]['child'][$namespace][$tag]))
  1641. {
  1642. return $this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss'][0]['child'][$namespace][$tag];
  1643. }
  1644. }
  1645. return null;
  1646. }
  1647. /**
  1648. * Get data for an channel-level element
  1649. *
  1650. * This method allows you to get access to ANY element/attribute in the
  1651. * channel/header section of the feed.
  1652. *
  1653. * See {@see SimplePie::get_feed_tags()} for a description of the return value
  1654. *
  1655. * @since 1.0
  1656. * @see http://simplepie.org/wiki/faq/supported_xml_namespaces
  1657. * @param string $namespace The URL of the XML namespace of the elements you're trying to access
  1658. * @param string $tag Tag name
  1659. * @return array
  1660. */
  1661. public function get_channel_tags($namespace, $tag)
  1662. {
  1663. $type = $this->get_type();
  1664. if ($type & SIMPLEPIE_TYPE_ATOM_ALL)
  1665. {
  1666. if ($return = $this->get_feed_tags($namespace, $tag))
  1667. {
  1668. return $return;
  1669. }
  1670. }
  1671. if ($type & SIMPLEPIE_TYPE_RSS_10)
  1672. {
  1673. if ($channel = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'channel'))
  1674. {
  1675. if (isset($channel[0]['child'][$namespace][$tag]))
  1676. {
  1677. return $channel[0]['child'][$namespace][$tag];
  1678. }
  1679. }
  1680. }
  1681. if ($type & SIMPLEPIE_TYPE_RSS_090)
  1682. {
  1683. if ($channel = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'channel'))
  1684. {
  1685. if (isset($channel[0]['child'][$namespace][$tag]))
  1686. {
  1687. return $channel[0]['child'][$namespace][$tag];
  1688. }
  1689. }
  1690. }
  1691. if ($type & SIMPLEPIE_TYPE_RSS_SYNDICATION)
  1692. {
  1693. if ($channel = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'channel'))
  1694. {
  1695. if (isset($channel[0]['child'][$namespace][$tag]))
  1696. {
  1697. return $channel[0]['child'][$namespace][$tag];
  1698. }
  1699. }
  1700. }
  1701. return null;
  1702. }
  1703. /**
  1704. * Get data for an channel-level element
  1705. *
  1706. * This method allows you to get access to ANY element/attribute in the
  1707. * image/logo section of the feed.
  1708. *
  1709. * See {@see SimplePie::get_feed_tags()} for a description of the return value
  1710. *
  1711. * @since 1.0
  1712. * @see http://simplepie.org/wiki/faq/supported_xml_namespaces
  1713. * @param string $namespace The URL of the XML namespace of the elements you're trying to access
  1714. * @param string $tag Tag name
  1715. * @return array
  1716. */
  1717. public function get_image_tags($namespace, $tag)
  1718. {
  1719. $type = $this->get_type();
  1720. if ($type & SIMPLEPIE_TYPE_RSS_10)
  1721. {
  1722. if ($image = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'image'))
  1723. {
  1724. if (isset($image[0]['child'][$namespace][$tag]))
  1725. {
  1726. return $image[0]['child'][$namespace][$tag];
  1727. }
  1728. }
  1729. }
  1730. if ($type & SIMPLEPIE_TYPE_RSS_090)
  1731. {
  1732. if ($image = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'image'))
  1733. {
  1734. if (isset($image[0]['child'][$namespace][$tag]))
  1735. {
  1736. return $image[0]['child'][$namespace][$tag];
  1737. }
  1738. }
  1739. }
  1740. if ($type & SIMPLEPIE_TYPE_RSS_SYNDICATION)
  1741. {
  1742. if ($image = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'image'))
  1743. {
  1744. if (isset($image[0]['child'][$namespace][$tag]))
  1745. {
  1746. return $image[0]['child'][$namespace][$tag];
  1747. }
  1748. }
  1749. }
  1750. return null;
  1751. }
  1752. /**
  1753. * Get the base URL value from the feed
  1754. *
  1755. * Uses `<xml:base>` if available, otherwise uses the first link in the
  1756. * feed, or failing that, the URL of the feed itself.
  1757. *
  1758. * @see get_link
  1759. * @see subscribe_url
  1760. *
  1761. * @param array $element
  1762. * @return string
  1763. */
  1764. public function get_base($element = array())
  1765. {
  1766. if (!($this->get_type() & SIMPLEPIE_TYPE_RSS_SYNDICATION) && !empty($element['xml_base_explicit']) && isset($element['xml_base']))
  1767. {
  1768. return $element['xml_base'];
  1769. }
  1770. elseif ($this->get_link() !== null)
  1771. {
  1772. return $this->get_link();
  1773. }
  1774. else
  1775. {
  1776. return $this->subscribe_url();
  1777. }
  1778. }
  1779. /**
  1780. * Sanitize feed data
  1781. *
  1782. * @access private
  1783. * @see SimplePie_Sanitize::sanitize()
  1784. * @param string $data Data to sanitize
  1785. * @param int $type One of the SIMPLEPIE_CONSTRUCT_* constants
  1786. * @param string $base Base URL to resolve URLs against
  1787. * @return string Sanitized data
  1788. */
  1789. public function sanitize($data, $type, $base = '')
  1790. {
  1791. return $this->sanitize->sanitize($data, $type, $base);
  1792. }
  1793. /**
  1794. * Get the title of the feed
  1795. *
  1796. * Uses `<atom:title>`, `<title>` or `<dc:title>`
  1797. *
  1798. * @since 1.0 (previously called `get_feed_title` since 0.8)
  1799. * @return string|null
  1800. */
  1801. public function get_title()
  1802. {
  1803. if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'title'))
  1804. {
  1805. return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_10_construct_type', array($return[0]['attribs'])), $this->get_base($return[0]));
  1806. }
  1807. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'title'))
  1808. {
  1809. return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_03_construct_type', array($return[0]['attribs'])), $this->get_base($return[0]));
  1810. }
  1811. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'title'))
  1812. {
  1813. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_MAYBE_HTML, $this->get_base($return[0]));
  1814. }
  1815. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'title'))
  1816. {
  1817. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_MAYBE_HTML, $this->get_base($return[0]));
  1818. }
  1819. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'title'))
  1820. {
  1821. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_MAYBE_HTML, $this->get_base($return[0]));
  1822. }
  1823. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'title'))
  1824. {
  1825. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  1826. }
  1827. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'title'))
  1828. {
  1829. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  1830. }
  1831. else
  1832. {
  1833. return null;
  1834. }
  1835. }
  1836. /**
  1837. * Get a category for the feed
  1838. *
  1839. * @since Unknown
  1840. * @param int $key The category that you want to return. Remember that arrays begin with 0, not 1
  1841. * @return SimplePie_Category|null
  1842. */
  1843. public function get_category($key = 0)
  1844. {
  1845. $categories = $this->get_categories();
  1846. if (isset($categories[$key]))
  1847. {
  1848. return $categories[$key];
  1849. }
  1850. else
  1851. {
  1852. return null;
  1853. }
  1854. }
  1855. /**
  1856. * Get all categories for the feed
  1857. *
  1858. * Uses `<atom:category>`, `<category>` or `<dc:subject>`
  1859. *
  1860. * @since Unknown
  1861. * @return array|null List of {@see SimplePie_Category} objects
  1862. */
  1863. public function get_categories()
  1864. {
  1865. $categories = array();
  1866. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'category') as $category)
  1867. {
  1868. $term = null;
  1869. $scheme = null;
  1870. $label = null;
  1871. if (isset($category['attribs']['']['term']))
  1872. {
  1873. $term = $this->sanitize($category['attribs']['']['term'], SIMPLEPIE_CONSTRUCT_TEXT);
  1874. }
  1875. if (isset($category['attribs']['']['scheme']))
  1876. {
  1877. $scheme = $this->sanitize($category['attribs']['']['scheme'], SIMPLEPIE_CONSTRUCT_TEXT);
  1878. }
  1879. if (isset($category['attribs']['']['label']))
  1880. {
  1881. $label = $this->sanitize($category['attribs']['']['label'], SIMPLEPIE_CONSTRUCT_TEXT);
  1882. }
  1883. $categories[] = $this->registry->create('Category', array($term, $scheme, $label));
  1884. }
  1885. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'category') as $category)
  1886. {
  1887. // This is really the label, but keep this as the term also for BC.
  1888. // Label will also work on retrieving because that falls back to term.
  1889. $term = $this->sanitize($category['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  1890. if (isset($category['attribs']['']['domain']))
  1891. {
  1892. $scheme = $this->sanitize($category['attribs']['']['domain'], SIMPLEPIE_CONSTRUCT_TEXT);
  1893. }
  1894. else
  1895. {
  1896. $scheme = null;
  1897. }
  1898. $categories[] = $this->registry->create('Category', array($term, $scheme, null));
  1899. }
  1900. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'subject') as $category)
  1901. {
  1902. $categories[] = $this->registry->create('Category', array($this->sanitize($category['data'], SIMPLEPIE_CONSTRUCT_TEXT), null, null));
  1903. }
  1904. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'subject') as $category)
  1905. {
  1906. $categories[] = $this->registry->create('Category', array($this->sanitize($category['data'], SIMPLEPIE_CONSTRUCT_TEXT), null, null));
  1907. }
  1908. if (!empty($categories))
  1909. {
  1910. return array_unique($categories);
  1911. }
  1912. else
  1913. {
  1914. return null;
  1915. }
  1916. }
  1917. /**
  1918. * Get an author for the feed
  1919. *
  1920. * @since 1.1
  1921. * @param int $key The author that you want to return. Remember that arrays begin with 0, not 1
  1922. * @return SimplePie_Author|null
  1923. */
  1924. public function get_author($key = 0)
  1925. {
  1926. $authors = $this->get_authors();
  1927. if (isset($authors[$key]))
  1928. {
  1929. return $authors[$key];
  1930. }
  1931. else
  1932. {
  1933. return null;
  1934. }
  1935. }
  1936. /**
  1937. * Get all authors for the feed
  1938. *
  1939. * Uses `<atom:author>`, `<author>`, `<dc:creator>` or `<itunes:author>`
  1940. *
  1941. * @since 1.1
  1942. * @return array|null List of {@see SimplePie_Author} objects
  1943. */
  1944. public function get_authors()
  1945. {
  1946. $authors = array();
  1947. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'author') as $author)
  1948. {
  1949. $name = null;
  1950. $uri = null;
  1951. $email = null;
  1952. if (isset($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data']))
  1953. {
  1954. $name = $this->sanitize($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  1955. }
  1956. if (isset($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data']))
  1957. {
  1958. $uri = $this->sanitize($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]));
  1959. }
  1960. if (isset($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['email'][0]['data']))
  1961. {
  1962. $email = $this->sanitize($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['email'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  1963. }
  1964. if ($name !== null || $email !== null || $uri !== null)
  1965. {
  1966. $authors[] = $this->registry->create('Author', array($name, $uri, $email));
  1967. }
  1968. }
  1969. if ($author = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'author'))
  1970. {
  1971. $name = null;
  1972. $url = null;
  1973. $email = null;
  1974. if (isset($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['name'][0]['data']))
  1975. {
  1976. $name = $this->sanitize($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['name'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  1977. }
  1978. if (isset($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['url'][0]['data']))
  1979. {
  1980. $url = $this->sanitize($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['url'][0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['url'][0]));
  1981. }
  1982. if (isset($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['email'][0]['data']))
  1983. {
  1984. $email = $this->sanitize($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['email'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  1985. }
  1986. if ($name !== null || $email !== null || $url !== null)
  1987. {
  1988. $authors[] = $this->registry->create('Author', array($name, $url, $email));
  1989. }
  1990. }
  1991. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'creator') as $author)
  1992. {
  1993. $authors[] = $this->registry->create('Author', array($this->sanitize($author['data'], SIMPLEPIE_CONSTRUCT_TEXT), null, null));
  1994. }
  1995. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'creator') as $author)
  1996. {
  1997. $authors[] = $this->registry->create('Author', array($this->sanitize($author['data'], SIMPLEPIE_CONSTRUCT_TEXT), null, null));
  1998. }
  1999. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ITUNES, 'author') as $author)
  2000. {
  2001. $authors[] = $this->registry->create('Author', array($this->sanitize($author['data'], SIMPLEPIE_CONSTRUCT_TEXT), null, null));
  2002. }
  2003. if (!empty($authors))
  2004. {
  2005. return array_unique($authors);
  2006. }
  2007. else
  2008. {
  2009. return null;
  2010. }
  2011. }
  2012. /**
  2013. * Get a contributor for the feed
  2014. *
  2015. * @since 1.1
  2016. * @param int $key The contrbutor that you want to return. Remember that arrays begin with 0, not 1
  2017. * @return SimplePie_Author|null
  2018. */
  2019. public function get_contributor($key = 0)
  2020. {
  2021. $contributors = $this->get_contributors();
  2022. if (isset($contributors[$key]))
  2023. {
  2024. return $contributors[$key];
  2025. }
  2026. else
  2027. {
  2028. return null;
  2029. }
  2030. }
  2031. /**
  2032. * Get all contributors for the feed
  2033. *
  2034. * Uses `<atom:contributor>`
  2035. *
  2036. * @since 1.1
  2037. * @return array|null List of {@see SimplePie_Author} objects
  2038. */
  2039. public function get_contributors()
  2040. {
  2041. $contributors = array();
  2042. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'contributor') as $contributor)
  2043. {
  2044. $name = null;
  2045. $uri = null;
  2046. $email = null;
  2047. if (isset($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data']))
  2048. {
  2049. $name = $this->sanitize($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2050. }
  2051. if (isset($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data']))
  2052. {
  2053. $uri = $this->sanitize($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]));
  2054. }
  2055. if (isset($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['email'][0]['data']))
  2056. {
  2057. $email = $this->sanitize($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['email'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2058. }
  2059. if ($name !== null || $email !== null || $uri !== null)
  2060. {
  2061. $contributors[] = $this->registry->create('Author', array($name, $uri, $email));
  2062. }
  2063. }
  2064. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'contributor') as $contributor)
  2065. {
  2066. $name = null;
  2067. $url = null;
  2068. $email = null;
  2069. if (isset($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['name'][0]['data']))
  2070. {
  2071. $name = $this->sanitize($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['name'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2072. }
  2073. if (isset($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['url'][0]['data']))
  2074. {
  2075. $url = $this->sanitize($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['url'][0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['url'][0]));
  2076. }
  2077. if (isset($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['email'][0]['data']))
  2078. {
  2079. $email = $this->sanitize($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['email'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2080. }
  2081. if ($name !== null || $email !== null || $url !== null)
  2082. {
  2083. $contributors[] = $this->registry->create('Author', array($name, $url, $email));
  2084. }
  2085. }
  2086. if (!empty($contributors))
  2087. {
  2088. return array_unique($contributors);
  2089. }
  2090. else
  2091. {
  2092. return null;
  2093. }
  2094. }
  2095. /**
  2096. * Get a single link for the feed
  2097. *
  2098. * @since 1.0 (previously called `get_feed_link` since Preview Release, `get_feed_permalink()` since 0.8)
  2099. * @param int $key The link that you want to return. Remember that arrays begin with 0, not 1
  2100. * @param string $rel The relationship of the link to return
  2101. * @return string|null Link URL
  2102. */
  2103. public function get_link($key = 0, $rel = 'alternate')
  2104. {
  2105. $links = $this->get_links($rel);
  2106. if (isset($links[$key]))
  2107. {
  2108. return $links[$key];
  2109. }
  2110. else
  2111. {
  2112. return null;
  2113. }
  2114. }
  2115. /**
  2116. * Get the permalink for the item
  2117. *
  2118. * Returns the first link available with a relationship of "alternate".
  2119. * Identical to {@see get_link()} with key 0
  2120. *
  2121. * @see get_link
  2122. * @since 1.0 (previously called `get_feed_link` since Preview Release, `get_feed_permalink()` since 0.8)
  2123. * @internal Added for parity between the parent-level and the item/entry-level.
  2124. * @return string|null Link URL
  2125. */
  2126. public function get_permalink()
  2127. {
  2128. return $this->get_link(0);
  2129. }
  2130. /**
  2131. * Get all links for the feed
  2132. *
  2133. * Uses `<atom:link>` or `<link>`
  2134. *
  2135. * @since Beta 2
  2136. * @param string $rel The relationship of links to return
  2137. * @return array|null Links found for the feed (strings)
  2138. */
  2139. public function get_links($rel = 'alternate')
  2140. {
  2141. if (!isset($this->data['links']))
  2142. {
  2143. $this->data['links'] = array();
  2144. if ($links = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'link'))
  2145. {
  2146. foreach ($links as $link)
  2147. {
  2148. if (isset($link['attribs']['']['href']))
  2149. {
  2150. $link_rel = (isset($link['attribs']['']['rel'])) ? $link['attribs']['']['rel'] : 'alternate';
  2151. $this->data['links'][$link_rel][] = $this->sanitize($link['attribs']['']['href'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($link));
  2152. }
  2153. }
  2154. }
  2155. if ($links = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'link'))
  2156. {
  2157. foreach ($links as $link)
  2158. {
  2159. if (isset($link['attribs']['']['href']))
  2160. {
  2161. $link_rel = (isset($link['attribs']['']['rel'])) ? $link['attribs']['']['rel'] : 'alternate';
  2162. $this->data['links'][$link_rel][] = $this->sanitize($link['attribs']['']['href'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($link));
  2163. }
  2164. }
  2165. }
  2166. if ($links = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'link'))
  2167. {
  2168. $this->data['links']['alternate'][] = $this->sanitize($links[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($links[0]));
  2169. }
  2170. if ($links = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'link'))
  2171. {
  2172. $this->data['links']['alternate'][] = $this->sanitize($links[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($links[0]));
  2173. }
  2174. if ($links = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'link'))
  2175. {
  2176. $this->data['links']['alternate'][] = $this->sanitize($links[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($links[0]));
  2177. }
  2178. $keys = array_keys($this->data['links']);
  2179. foreach ($keys as $key)
  2180. {
  2181. if ($this->registry->call('Misc', 'is_isegment_nz_nc', array($key)))
  2182. {
  2183. if (isset($this->data['links'][SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY . $key]))
  2184. {
  2185. $this->data['links'][SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY . $key] = array_merge($this->data['links'][$key], $this->data['links'][SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY . $key]);
  2186. $this->data['links'][$key] =& $this->data['links'][SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY . $key];
  2187. }
  2188. else
  2189. {
  2190. $this->data['links'][SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY . $key] =& $this->data['links'][$key];
  2191. }
  2192. }
  2193. elseif (substr($key, 0, 41) === SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY)
  2194. {
  2195. $this->data['links'][substr($key, 41)] =& $this->data['links'][$key];
  2196. }
  2197. $this->data['links'][$key] = array_unique($this->data['links'][$key]);
  2198. }
  2199. }
  2200. if (isset($this->data['links'][$rel]))
  2201. {
  2202. return $this->data['links'][$rel];
  2203. }
  2204. else
  2205. {
  2206. return null;
  2207. }
  2208. }
  2209. public function get_all_discovered_feeds()
  2210. {
  2211. return $this->all_discovered_feeds;
  2212. }
  2213. /**
  2214. * Get the content for the item
  2215. *
  2216. * Uses `<atom:subtitle>`, `<atom:tagline>`, `<description>`,
  2217. * `<dc:description>`, `<itunes:summary>` or `<itunes:subtitle>`
  2218. *
  2219. * @since 1.0 (previously called `get_feed_description()` since 0.8)
  2220. * @return string|null
  2221. */
  2222. public function get_description()
  2223. {
  2224. if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'subtitle'))
  2225. {
  2226. return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_10_construct_type', array($return[0]['attribs'])), $this->get_base($return[0]));
  2227. }
  2228. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'tagline'))
  2229. {
  2230. return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_03_construct_type', array($return[0]['attribs'])), $this->get_base($return[0]));
  2231. }
  2232. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'description'))
  2233. {
  2234. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_MAYBE_HTML, $this->get_base($return[0]));
  2235. }
  2236. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'description'))
  2237. {
  2238. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_MAYBE_HTML, $this->get_base($return[0]));
  2239. }
  2240. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'description'))
  2241. {
  2242. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_HTML, $this->get_base($return[0]));
  2243. }
  2244. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'description'))
  2245. {
  2246. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2247. }
  2248. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'description'))
  2249. {
  2250. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2251. }
  2252. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ITUNES, 'summary'))
  2253. {
  2254. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_HTML, $this->get_base($return[0]));
  2255. }
  2256. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ITUNES, 'subtitle'))
  2257. {
  2258. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_HTML, $this->get_base($return[0]));
  2259. }
  2260. else
  2261. {
  2262. return null;
  2263. }
  2264. }
  2265. /**
  2266. * Get the copyright info for the feed
  2267. *
  2268. * Uses `<atom:rights>`, `<atom:copyright>` or `<dc:rights>`
  2269. *
  2270. * @since 1.0 (previously called `get_feed_copyright()` since 0.8)
  2271. * @return string|null
  2272. */
  2273. public function get_copyright()
  2274. {
  2275. if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'rights'))
  2276. {
  2277. return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_10_construct_type', array($return[0]['attribs'])), $this->get_base($return[0]));
  2278. }
  2279. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'copyright'))
  2280. {
  2281. return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_03_construct_type', array($return[0]['attribs'])), $this->get_base($return[0]));
  2282. }
  2283. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'copyright'))
  2284. {
  2285. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2286. }
  2287. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'rights'))
  2288. {
  2289. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2290. }
  2291. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'rights'))
  2292. {
  2293. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2294. }
  2295. else
  2296. {
  2297. return null;
  2298. }
  2299. }
  2300. /**
  2301. * Get the language for the feed
  2302. *
  2303. * Uses `<language>`, `<dc:language>`, or @xml_lang
  2304. *
  2305. * @since 1.0 (previously called `get_feed_language()` since 0.8)
  2306. * @return string|null
  2307. */
  2308. public function get_language()
  2309. {
  2310. if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'language'))
  2311. {
  2312. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2313. }
  2314. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'language'))
  2315. {
  2316. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2317. }
  2318. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'language'))
  2319. {
  2320. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2321. }
  2322. elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['feed'][0]['xml_lang']))
  2323. {
  2324. return $this->sanitize($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['feed'][0]['xml_lang'], SIMPLEPIE_CONSTRUCT_TEXT);
  2325. }
  2326. elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['feed'][0]['xml_lang']))
  2327. {
  2328. return $this->sanitize($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['feed'][0]['xml_lang'], SIMPLEPIE_CONSTRUCT_TEXT);
  2329. }
  2330. elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['xml_lang']))
  2331. {
  2332. return $this->sanitize($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['xml_lang'], SIMPLEPIE_CONSTRUCT_TEXT);
  2333. }
  2334. elseif (isset($this->data['headers']['content-language']))
  2335. {
  2336. return $this->sanitize($this->data['headers']['content-language'], SIMPLEPIE_CONSTRUCT_TEXT);
  2337. }
  2338. else
  2339. {
  2340. return null;
  2341. }
  2342. }
  2343. /**
  2344. * Get the latitude coordinates for the item
  2345. *
  2346. * Compatible with the W3C WGS84 Basic Geo and GeoRSS specifications
  2347. *
  2348. * Uses `<geo:lat>` or `<georss:point>`
  2349. *
  2350. * @since 1.0
  2351. * @link http://www.w3.org/2003/01/geo/ W3C WGS84 Basic Geo
  2352. * @link http://www.georss.org/ GeoRSS
  2353. * @return string|null
  2354. */
  2355. public function get_latitude()
  2356. {
  2357. if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_W3C_BASIC_GEO, 'lat'))
  2358. {
  2359. return (float) $return[0]['data'];
  2360. }
  2361. elseif (($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_GEORSS, 'point')) && preg_match('/^((?:-)?[0-9]+(?:\.[0-9]+)) ((?:-)?[0-9]+(?:\.[0-9]+))$/', trim($return[0]['data']), $match))
  2362. {
  2363. return (float) $match[1];
  2364. }
  2365. else
  2366. {
  2367. return null;
  2368. }
  2369. }
  2370. /**
  2371. * Get the longitude coordinates for the feed
  2372. *
  2373. * Compatible with the W3C WGS84 Basic Geo and GeoRSS specifications
  2374. *
  2375. * Uses `<geo:long>`, `<geo:lon>` or `<georss:point>`
  2376. *
  2377. * @since 1.0
  2378. * @link http://www.w3.org/2003/01/geo/ W3C WGS84 Basic Geo
  2379. * @link http://www.georss.org/ GeoRSS
  2380. * @return string|null
  2381. */
  2382. public function get_longitude()
  2383. {
  2384. if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_W3C_BASIC_GEO, 'long'))
  2385. {
  2386. return (float) $return[0]['data'];
  2387. }
  2388. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_W3C_BASIC_GEO, 'lon'))
  2389. {
  2390. return (float) $return[0]['data'];
  2391. }
  2392. elseif (($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_GEORSS, 'point')) && preg_match('/^((?:-)?[0-9]+(?:\.[0-9]+)) ((?:-)?[0-9]+(?:\.[0-9]+))$/', trim($return[0]['data']), $match))
  2393. {
  2394. return (float) $match[2];
  2395. }
  2396. else
  2397. {
  2398. return null;
  2399. }
  2400. }
  2401. /**
  2402. * Get the feed logo's title
  2403. *
  2404. * RSS 0.9.0, 1.0 and 2.0 feeds are allowed to have a "feed logo" title.
  2405. *
  2406. * Uses `<image><title>` or `<image><dc:title>`
  2407. *
  2408. * @return string|null
  2409. */
  2410. public function get_image_title()
  2411. {
  2412. if ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'title'))
  2413. {
  2414. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2415. }
  2416. elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'title'))
  2417. {
  2418. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2419. }
  2420. elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'title'))
  2421. {
  2422. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2423. }
  2424. elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_DC_11, 'title'))
  2425. {
  2426. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2427. }
  2428. elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_DC_10, 'title'))
  2429. {
  2430. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2431. }
  2432. else
  2433. {
  2434. return null;
  2435. }
  2436. }
  2437. /**
  2438. * Get the feed logo's URL
  2439. *
  2440. * RSS 0.9.0, 2.0, Atom 1.0, and feeds with iTunes RSS tags are allowed to
  2441. * have a "feed logo" URL. This points directly to the image itself.
  2442. *
  2443. * Uses `<itunes:image>`, `<atom:logo>`, `<atom:icon>`,
  2444. * `<image><title>` or `<image><dc:title>`
  2445. *
  2446. * @return string|null
  2447. */
  2448. public function get_image_url()
  2449. {
  2450. if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ITUNES, 'image'))
  2451. {
  2452. return $this->sanitize($return[0]['attribs']['']['href'], SIMPLEPIE_CONSTRUCT_IRI);
  2453. }
  2454. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'logo'))
  2455. {
  2456. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
  2457. }
  2458. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'icon'))
  2459. {
  2460. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
  2461. }
  2462. elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'url'))
  2463. {
  2464. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
  2465. }
  2466. elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'url'))
  2467. {
  2468. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
  2469. }
  2470. elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'url'))
  2471. {
  2472. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
  2473. }
  2474. else
  2475. {
  2476. return null;
  2477. }
  2478. }
  2479. /**
  2480. * Get the feed logo's link
  2481. *
  2482. * RSS 0.9.0, 1.0 and 2.0 feeds are allowed to have a "feed logo" link. This
  2483. * points to a human-readable page that the image should link to.
  2484. *
  2485. * Uses `<itunes:image>`, `<atom:logo>`, `<atom:icon>`,
  2486. * `<image><title>` or `<image><dc:title>`
  2487. *
  2488. * @return string|null
  2489. */
  2490. public function get_image_link()
  2491. {
  2492. if ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'link'))
  2493. {
  2494. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
  2495. }
  2496. elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'link'))
  2497. {
  2498. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
  2499. }
  2500. elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'link'))
  2501. {
  2502. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
  2503. }
  2504. else
  2505. {
  2506. return null;
  2507. }
  2508. }
  2509. /**
  2510. * Get the feed logo's link
  2511. *
  2512. * RSS 2.0 feeds are allowed to have a "feed logo" width.
  2513. *
  2514. * Uses `<image><width>` or defaults to 88.0 if no width is specified and
  2515. * the feed is an RSS 2.0 feed.
  2516. *
  2517. * @return int|float|null
  2518. */
  2519. public function get_image_width()
  2520. {
  2521. if ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'width'))
  2522. {
  2523. return round($return[0]['data']);
  2524. }
  2525. elseif ($this->get_type() & SIMPLEPIE_TYPE_RSS_SYNDICATION && $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'url'))
  2526. {
  2527. return 88.0;
  2528. }
  2529. else
  2530. {
  2531. return null;
  2532. }
  2533. }
  2534. /**
  2535. * Get the feed logo's height
  2536. *
  2537. * RSS 2.0 feeds are allowed to have a "feed logo" height.
  2538. *
  2539. * Uses `<image><height>` or defaults to 31.0 if no height is specified and
  2540. * the feed is an RSS 2.0 feed.
  2541. *
  2542. * @return int|float|null
  2543. */
  2544. public function get_image_height()
  2545. {
  2546. if ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'height'))
  2547. {
  2548. return round($return[0]['data']);
  2549. }
  2550. elseif ($this->get_type() & SIMPLEPIE_TYPE_RSS_SYNDICATION && $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'url'))
  2551. {
  2552. return 31.0;
  2553. }
  2554. else
  2555. {
  2556. return null;
  2557. }
  2558. }
  2559. /**
  2560. * Get the number of items in the feed
  2561. *
  2562. * This is well-suited for {@link http://php.net/for for()} loops with
  2563. * {@see get_item()}
  2564. *
  2565. * @param int $max Maximum value to return. 0 for no limit
  2566. * @return int Number of items in the feed
  2567. */
  2568. public function get_item_quantity($max = 0)
  2569. {
  2570. $max = (int) $max;
  2571. $qty = count($this->get_items());
  2572. if ($max === 0)
  2573. {
  2574. return $qty;
  2575. }
  2576. else
  2577. {
  2578. return ($qty > $max) ? $max : $qty;
  2579. }
  2580. }
  2581. /**
  2582. * Get a single item from the feed
  2583. *
  2584. * This is better suited for {@link http://php.net/for for()} loops, whereas
  2585. * {@see get_items()} is better suited for
  2586. * {@link http://php.net/foreach foreach()} loops.
  2587. *
  2588. * @see get_item_quantity()
  2589. * @since Beta 2
  2590. * @param int $key The item that you want to return. Remember that arrays begin with 0, not 1
  2591. * @return SimplePie_Item|null
  2592. */
  2593. public function get_item($key = 0)
  2594. {
  2595. $items = $this->get_items();
  2596. if (isset($items[$key]))
  2597. {
  2598. return $items[$key];
  2599. }
  2600. else
  2601. {
  2602. return null;
  2603. }
  2604. }
  2605. /**
  2606. * Get all items from the feed
  2607. *
  2608. * This is better suited for {@link http://php.net/for for()} loops, whereas
  2609. * {@see get_items()} is better suited for
  2610. * {@link http://php.net/foreach foreach()} loops.
  2611. *
  2612. * @see get_item_quantity
  2613. * @since Beta 2
  2614. * @param int $start Index to start at
  2615. * @param int $end Number of items to return. 0 for all items after `$start`
  2616. * @return array|null List of {@see SimplePie_Item} objects
  2617. */
  2618. public function get_items($start = 0, $end = 0)
  2619. {
  2620. if (!isset($this->data['items']))
  2621. {
  2622. if (!empty($this->multifeed_objects))
  2623. {
  2624. $this->data['items'] = SimplePie::merge_items($this->multifeed_objects, $start, $end, $this->item_limit);
  2625. }
  2626. else
  2627. {
  2628. $this->data['items'] = array();
  2629. if ($items = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'entry'))
  2630. {
  2631. $keys = array_keys($items);
  2632. foreach ($keys as $key)
  2633. {
  2634. $this->data['items'][] = $this->registry->create('Item', array($this, $items[$key]));
  2635. }
  2636. }
  2637. if ($items = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'entry'))
  2638. {
  2639. $keys = array_keys($items);
  2640. foreach ($keys as $key)
  2641. {
  2642. $this->data['items'][] = $this->registry->create('Item', array($this, $items[$key]));
  2643. }
  2644. }
  2645. if ($items = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'item'))
  2646. {
  2647. $keys = array_keys($items);
  2648. foreach ($keys as $key)
  2649. {
  2650. $this->data['items'][] = $this->registry->create('Item', array($this, $items[$key]));
  2651. }
  2652. }
  2653. if ($items = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'item'))
  2654. {
  2655. $keys = array_keys($items);
  2656. foreach ($keys as $key)
  2657. {
  2658. $this->data['items'][] = $this->registry->create('Item', array($this, $items[$key]));
  2659. }
  2660. }
  2661. if ($items = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'item'))
  2662. {
  2663. $keys = array_keys($items);
  2664. foreach ($keys as $key)
  2665. {
  2666. $this->data['items'][] = $this->registry->create('Item', array($this, $items[$key]));
  2667. }
  2668. }
  2669. }
  2670. }
  2671. if (!empty($this->data['items']))
  2672. {
  2673. // If we want to order it by date, check if all items have a date, and then sort it
  2674. if ($this->order_by_date && empty($this->multifeed_objects))
  2675. {
  2676. if (!isset($this->data['ordered_items']))
  2677. {
  2678. $do_sort = true;
  2679. foreach ($this->data['items'] as $item)
  2680. {
  2681. if (!$item->get_date('U'))
  2682. {
  2683. $do_sort = false;
  2684. break;
  2685. }
  2686. }
  2687. $item = null;
  2688. $this->data['ordered_items'] = $this->data['items'];
  2689. if ($do_sort)
  2690. {
  2691. usort($this->data['ordered_items'], array(get_class($this), 'sort_items'));
  2692. }
  2693. }
  2694. $items = $this->data['ordered_items'];
  2695. }
  2696. else
  2697. {
  2698. $items = $this->data['items'];
  2699. }
  2700. // Slice the data as desired
  2701. if ($end === 0)
  2702. {
  2703. return array_slice($items, $start);
  2704. }
  2705. else
  2706. {
  2707. return array_slice($items, $start, $end);
  2708. }
  2709. }
  2710. else
  2711. {
  2712. return array();
  2713. }
  2714. }
  2715. /**
  2716. * Set the favicon handler
  2717. *
  2718. * @deprecated Use your own favicon handling instead
  2719. */
  2720. public function set_favicon_handler($page = false, $qs = 'i')
  2721. {
  2722. $level = defined('E_USER_DEPRECATED') ? E_USER_DEPRECATED : E_USER_WARNING;
  2723. trigger_error('Favicon handling has been removed, please use your own handling', $level);
  2724. return false;
  2725. }
  2726. /**
  2727. * Get the favicon for the current feed
  2728. *
  2729. * @deprecated Use your own favicon handling instead
  2730. */
  2731. public function get_favicon()
  2732. {
  2733. $level = defined('E_USER_DEPRECATED') ? E_USER_DEPRECATED : E_USER_WARNING;
  2734. trigger_error('Favicon handling has been removed, please use your own handling', $level);
  2735. if (($url = $this->get_link()) !== null)
  2736. {
  2737. return 'http://g.etfv.co/' . urlencode($url);
  2738. }
  2739. return false;
  2740. }
  2741. /**
  2742. * Magic method handler
  2743. *
  2744. * @param string $method Method name
  2745. * @param array $args Arguments to the method
  2746. * @return mixed
  2747. */
  2748. public function __call($method, $args)
  2749. {
  2750. if (strpos($method, 'subscribe_') === 0)
  2751. {
  2752. $level = defined('E_USER_DEPRECATED') ? E_USER_DEPRECATED : E_USER_WARNING;
  2753. trigger_error('subscribe_*() has been deprecated, implement the callback yourself', $level);
  2754. return '';
  2755. }
  2756. if ($method === 'enable_xml_dump')
  2757. {
  2758. $level = defined('E_USER_DEPRECATED') ? E_USER_DEPRECATED : E_USER_WARNING;
  2759. trigger_error('enable_xml_dump() has been deprecated, use get_raw_data() instead', $level);
  2760. return false;
  2761. }
  2762. $class = get_class($this);
  2763. $trace = debug_backtrace();
  2764. $file = $trace[0]['file'];
  2765. $line = $trace[0]['line'];
  2766. trigger_error("Call to undefined method $class::$method() in $file on line $line", E_USER_ERROR);
  2767. }
  2768. /**
  2769. * Sorting callback for items
  2770. *
  2771. * @access private
  2772. * @param SimplePie $a
  2773. * @param SimplePie $b
  2774. * @return boolean
  2775. */
  2776. public static function sort_items($a, $b)
  2777. {
  2778. return $a->get_date('U') <= $b->get_date('U');
  2779. }
  2780. /**
  2781. * Merge items from several feeds into one
  2782. *
  2783. * If you're merging multiple feeds together, they need to all have dates
  2784. * for the items or else SimplePie will refuse to sort them.
  2785. *
  2786. * @link http://simplepie.org/wiki/tutorial/sort_multiple_feeds_by_time_and_date#if_feeds_require_separate_per-feed_settings
  2787. * @param array $urls List of SimplePie feed objects to merge
  2788. * @param int $start Starting item
  2789. * @param int $end Number of items to return
  2790. * @param int $limit Maximum number of items per feed
  2791. * @return array
  2792. */
  2793. public static function merge_items($urls, $start = 0, $end = 0, $limit = 0)
  2794. {
  2795. if (is_array($urls) && sizeof($urls) > 0)
  2796. {
  2797. $items = array();
  2798. foreach ($urls as $arg)
  2799. {
  2800. if ($arg instanceof SimplePie)
  2801. {
  2802. $items = array_merge($items, $arg->get_items(0, $limit));
  2803. }
  2804. else
  2805. {
  2806. trigger_error('Arguments must be SimplePie objects', E_USER_WARNING);
  2807. }
  2808. }
  2809. $do_sort = true;
  2810. foreach ($items as $item)
  2811. {
  2812. if (!$item->get_date('U'))
  2813. {
  2814. $do_sort = false;
  2815. break;
  2816. }
  2817. }
  2818. $item = null;
  2819. if ($do_sort)
  2820. {
  2821. usort($items, array(get_class($urls[0]), 'sort_items'));
  2822. }
  2823. if ($end === 0)
  2824. {
  2825. return array_slice($items, $start);
  2826. }
  2827. else
  2828. {
  2829. return array_slice($items, $start, $end);
  2830. }
  2831. }
  2832. else
  2833. {
  2834. trigger_error('Cannot merge zero SimplePie objects', E_USER_WARNING);
  2835. return array();
  2836. }
  2837. }
  2838. }