ARVE Advanced Responsive Video Embedder (YouTube, Vimeo, HTML5 Video …) - Version 8.9.9

Version Description

Download this release

Release Info

Developer nico23
Plugin Icon 128x128 ARVE Advanced Responsive Video Embedder (YouTube, Vimeo, HTML5 Video …)
Version 8.9.9
Comparing to
See all releases

Code changes from version 8.5.0 to 8.9.9

Files changed (197) hide show
  1. CHANGELOG.md +0 -845
  2. LICENSE.txt +0 -0
  3. admin/arve-admin.css +34 -8
  4. admin/arve-admin.js +2 -2
  5. admin/arve-shortcode-ui.js +2 -2
  6. admin/class-arve-admin-notice-factory.php +5 -2
  7. admin/{class-edd-sl-plugin-updater.php → class-nextgenthemes-plugin-updater.php} +114 -27
  8. admin/functions-admin.php +52 -44
  9. admin/functions-licensing.php +93 -95
  10. admin/html-debug-info.php +0 -0
  11. admin/html-settings-page.php +44 -6
  12. admin/index.php +0 -0
  13. admin/pro-ad.html +14 -0
  14. admin/product-images/arve.svg +0 -0
  15. advanced-responsive-video-embedder.php +10 -14
  16. index.php +0 -1
  17. public/arve.css +0 -0
  18. public/arve.js +14 -2
  19. public/arve.min.css +1 -1
  20. public/arve.min.css.map +0 -1
  21. public/arve.min.js +1 -1
  22. public/functions-enqueue.php +13 -0
  23. public/functions-html-output.php +16 -1
  24. public/functions-misc.php +0 -0
  25. public/functions-shortcode-data.php +15 -8
  26. public/functions-shortcode-filters.php +114 -84
  27. public/functions-shortcodes.php +111 -84
  28. public/functions-thumbnails.php +0 -0
  29. public/functions-url-handlers.php +0 -0
  30. public/functions-validation.php +6 -4
  31. public/index.php +0 -0
  32. readme.md → readme.txt +217 -85
  33. readme/01-top.md +0 -25
  34. readme/10-description-features.md +0 -21
  35. readme/12-description-supported-providers.md +0 -44
  36. readme/13-description-reviews.md +0 -17
  37. readme/20-description-features-pro.md +0 -23
  38. readme/25-description-features-amp.md +0 -11
  39. readme/35-description-thanks.md +0 -13
  40. readme/50-installation-faq-screenshots.md +0 -40
  41. readme/html/01-top.md.html +0 -12
  42. readme/html/10-description-features.md.html +0 -21
  43. readme/html/12-description-supported-providers.md.html +0 -44
  44. readme/html/13-description-reviews.md.html +0 -10
  45. readme/html/20-description-features-pro.md.html +0 -17
  46. readme/html/25-description-features-amp.md.html +0 -11
  47. readme/html/35-description-thanks.md.html +0 -13
  48. readme/html/50-installation-faq-screenshots.md.html +0 -26
  49. readme/prep/description-perfectdropinreplacement.md +0 -11
  50. readme/prep/description-reasons.html +0 -9
  51. readme/prep/description-whatitis.md +0 -6
  52. shared/functions-shared.php +147 -45
  53. shared/index.php +0 -0
  54. uninstall.php +0 -1
  55. vendor/autoload.php +7 -0
  56. vendor/composer/ClassLoader.php +445 -0
  57. vendor/composer/LICENSE +21 -0
  58. vendor/composer/autoload_classmap.php +9 -0
  59. vendor/composer/autoload_namespaces.php +9 -0
  60. vendor/composer/autoload_psr4.php +11 -0
  61. vendor/composer/autoload_real.php +52 -0
  62. vendor/composer/autoload_static.php +39 -0
  63. vendor/composer/installed.json +172 -0
  64. vendor/composer/installers/.editorconfig +10 -0
  65. vendor/composer/installers/.gitignore +3 -0
  66. vendor/composer/installers/.travis.yml +33 -0
  67. vendor/composer/installers/CHANGELOG.md +86 -0
  68. vendor/composer/installers/CONTRIBUTING.md +24 -0
  69. vendor/composer/installers/LICENSE +19 -0
  70. vendor/composer/installers/README.md +221 -0
  71. vendor/composer/installers/_config.yml +1 -0
  72. vendor/composer/installers/composer.json +105 -0
  73. vendor/composer/installers/phpunit.xml.dist +25 -0
  74. vendor/composer/installers/src/Composer/Installers/AglInstaller.php +21 -0
  75. vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php +9 -0
  76. vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php +11 -0
  77. vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php +49 -0
  78. vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php +9 -0
  79. vendor/composer/installers/src/Composer/Installers/BaseInstaller.php +136 -0
  80. vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php +126 -0
  81. vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php +9 -0
  82. vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php +82 -0
  83. vendor/composer/installers/src/Composer/Installers/ChefInstaller.php +11 -0
  84. vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php +10 -0
  85. vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php +34 -0
  86. vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php +11 -0
  87. vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php +13 -0
  88. vendor/composer/installers/src/Composer/Installers/CraftInstaller.php +35 -0
  89. vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php +21 -0
  90. vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php +10 -0
  91. vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php +50 -0
  92. vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php +16 -0
  93. vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php +16 -0
  94. vendor/composer/installers/src/Composer/Installers/ElggInstaller.php +9 -0
  95. vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php +12 -0
  96. vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php +29 -0
  97. vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php +10 -0
  98. vendor/composer/installers/src/Composer/Installers/FuelInstaller.php +11 -0
  99. vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php +9 -0
  100. vendor/composer/installers/src/Composer/Installers/GravInstaller.php +30 -0
  101. vendor/composer/installers/src/Composer/Installers/HuradInstaller.php +25 -0
  102. vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php +11 -0
  103. vendor/composer/installers/src/Composer/Installers/Installer.php +200 -0
  104. vendor/composer/installers/src/Composer/Installers/ItopInstaller.php +9 -0
  105. vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php +15 -0
  106. vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php +18 -0
  107. vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php +11 -0
  108. vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php +10 -0
  109. vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php +9 -0
  110. vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php +27 -0
  111. vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php +9 -0
  112. vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php +10 -0
  113. vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php +10 -0
  114. vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php +9 -0
  115. vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php +16 -0
  116. vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php +11 -0
  117. vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php +37 -0
  118. vendor/composer/installers/src/Composer/Installers/MakoInstaller.php +9 -0
  119. vendor/composer/installers/src/Composer/Installers/MauticInstaller.php +25 -0
  120. vendor/composer/installers/src/Composer/Installers/MayaInstaller.php +33 -0
  121. vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php +50 -0
  122. vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php +111 -0
  123. vendor/composer/installers/src/Composer/Installers/ModxInstaller.php +12 -0
  124. vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php +57 -0
  125. vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php +46 -0
  126. vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php +24 -0
  127. vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php +14 -0
  128. vendor/composer/installers/src/Composer/Installers/OxidInstaller.php +59 -0
  129. vendor/composer/installers/src/Composer/Installers/PPIInstaller.php +9 -0
  130. vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php +11 -0
  131. vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php +11 -0
  132. vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php +21 -0
  133. vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php +32 -0
  134. vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php +29 -0
  135. vendor/composer/installers/src/Composer/Installers/Plugin.php +17 -0
  136. vendor/composer/installers/src/Composer/Installers/PortoInstaller.php +9 -0
  137. vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php +10 -0
  138. vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php +11 -0
  139. vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php +63 -0
  140. vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php +24 -0
  141. vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php +10 -0
  142. vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php +10 -0
  143. vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php +22 -0
  144. vendor/composer/installers/src/Composer/Installers/SMFInstaller.php +10 -0
  145. vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php +60 -0
  146. vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php +35 -0
  147. vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php +25 -0
  148. vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php +49 -0
  149. vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php +26 -0
  150. vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php +16 -0
  151. vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php +38 -0
  152. vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php +12 -0
  153. vendor/composer/installers/src/Composer/Installers/TuskInstaller.php +14 -0
  154. vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php +9 -0
  155. vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php +10 -0
  156. vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php +49 -0
  157. vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php +10 -0
  158. vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php +9 -0
  159. vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php +12 -0
  160. vendor/composer/installers/src/Composer/Installers/YawikInstaller.php +32 -0
  161. vendor/composer/installers/src/Composer/Installers/ZendInstaller.php +11 -0
  162. vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php +10 -0
  163. vendor/composer/installers/src/bootstrap.php +13 -0
  164. vendor/composer/installers/tests/Composer/Installers/Test/AsgardInstallerTest.php +80 -0
  165. vendor/composer/installers/tests/Composer/Installers/Test/BitrixInstallerTest.php +75 -0
  166. vendor/composer/installers/tests/Composer/Installers/Test/CakePHPInstallerTest.php +114 -0
  167. vendor/composer/installers/tests/Composer/Installers/Test/CraftInstallerTest.php +83 -0
  168. vendor/composer/installers/tests/Composer/Installers/Test/DokuWikiInstallerTest.php +90 -0
  169. vendor/composer/installers/tests/Composer/Installers/Test/GravInstallerTest.php +63 -0
  170. vendor/composer/installers/tests/Composer/Installers/Test/InstallerTest.php +552 -0
  171. vendor/composer/installers/tests/Composer/Installers/Test/MayaInstallerTest.php +62 -0
  172. vendor/composer/installers/tests/Composer/Installers/Test/MediaWikiInstallerTest.php +67 -0
  173. vendor/composer/installers/tests/Composer/Installers/Test/OctoberInstallerTest.php +67 -0
  174. vendor/composer/installers/tests/Composer/Installers/Test/OntoWikiInstallerTest.php +84 -0
  175. vendor/composer/installers/tests/Composer/Installers/Test/PimcoreInstallerTest.php +44 -0
  176. vendor/composer/installers/tests/Composer/Installers/Test/PiwikInstallerTest.php +63 -0
  177. vendor/composer/installers/tests/Composer/Installers/Test/SiteDirectInstallerTest.php +120 -0
  178. vendor/composer/installers/tests/Composer/Installers/Test/SyDESInstallerTest.php +82 -0
  179. vendor/composer/installers/tests/Composer/Installers/Test/TestCase.php +65 -0
  180. vendor/composer/installers/tests/Composer/Installers/Test/VgmcpInstallerTest.php +80 -0
  181. vendor/composer/installers/tests/Composer/Installers/Test/YawikInstallerTest.php +64 -0
  182. vendor/composer/installers/tests/bootstrap.php +4 -0
  183. vendor/vimeo/vimeo-api/.gitattributes +1 -0
  184. vendor/vimeo/vimeo-api/.gitignore +3 -0
  185. vendor/vimeo/vimeo-api/.styleci.yml +19 -0
  186. vendor/vimeo/vimeo-api/.travis.yml +21 -0
  187. vendor/vimeo/vimeo-api/CHANGELOG.md +19 -0
  188. vendor/vimeo/vimeo-api/LICENSE +177 -0
  189. vendor/vimeo/vimeo-api/README.md +254 -0
  190. vendor/vimeo/vimeo-api/autoload.php +29 -0
  191. vendor/vimeo/vimeo-api/certificates/vimeo-api.pem +47 -0
  192. vendor/vimeo/vimeo-api/composer.json +31 -0
  193. vendor/vimeo/vimeo-api/phpunit.xml +22 -0
  194. vendor/vimeo/vimeo-api/src/Vimeo/Exceptions/ExceptionInterface.php +9 -0
  195. vendor/vimeo/vimeo-api/src/Vimeo/Exceptions/VimeoRequestException.php +9 -0
  196. vendor/vimeo/vimeo-api/src/Vimeo/Exceptions/VimeoUploadException.php +9 -0
  197. vendor/vimeo/vimeo-api/src/Vimeo/Vimeo.php +598 -0
CHANGELOG.md DELETED
@@ -1,845 +0,0 @@
1
- ## Changelog ##
2
-
3
- * [ARVE Pro addon changelog](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/changelog/)
4
- * [ARVE AMP addon changelog](https://nextgenthemes.com/plugins/arve-amp/)
5
-
6
- ### 2017-05-04 - 8.5.0 ###
7
-
8
- * New: playsinline, and muted attributes for HTML5 video.
9
- * Data attributes are no longer prefixed with -arve and various other code improvements.
10
-
11
- ### 2017-05-01 - 8.4.2 ###
12
-
13
- * Code improvements for addons.
14
-
15
- ### 2017-04-30 - 8.4.1 ###
16
-
17
- * Fix password protected videos on vimeo (sandbox allow-forms)
18
-
19
- ### 2017-04-25 - 8.4.0 ###
20
-
21
- * Improved: The 'Take over [video]' option was renamed to 'Use ARVE for HTML5 video embeds' and is now enabled by default. (It never only was the shortcode but also HTML5 video file URLs on their own lines)
22
- * New: Support for embedding Dropbox hosted HTML5 video files (mp4, webm, ogv). Needs the 'Use ARVE for HTML5 video embeds' to be activated. (Beta feature)
23
- * Fix: YouTube only playlist URLs embedded without https.
24
-
25
- ### 2017-04-11 - 8.3.1 ###
26
-
27
- * Fix: Global CSS id was not correctly added.
28
-
29
- ### 2017-04-10 - 8.2.5 ###
30
-
31
- * Fix: Some Brightcove URLs were not correctly detected.
32
- * Improved: Better automated tests and some minor code enhancements.
33
- * Improved: Some texts, new link to the settings page below parameter field.
34
- * Improved: How aspect ratio is handled for HTML 5 video. If not set (default) the browser will detect it based on the video file that is embedded.
35
- * Improved: Gives the aligned videos a top margin of `0.4em` to try to align them better with text.
36
- * Improved: The 'by ARVE' promotion links do now open in a new tab/window.
37
-
38
- ### 2017-03-27 - 8.2.4 ###
39
-
40
- * Fixed: YouTube cards generate a youtube-nocookie.com url to a channel when the -nocookie.url is used to embedding. tltr; This is actually a YouTube bug but this is fixed in ARVE now by using the normal YouTube url for embeds. I like the additional 'privacy' it provides by not setting cookies as long as the user not plays a video. But considering this is not the first time YouTube has bugs related to this feature, I switched this back and forth in the past, I am considering just not using it anymore.
41
-
42
- ### 2017-03-25 - 8.2.3 ###
43
-
44
- * Fixed: 'Disable links' feature from the Pro Addon was not working.
45
- * Some minor code improvements.
46
-
47
- ### 2017-03-20 - 8.2.2 ###
48
-
49
- * Moved the ARVE menu below the settings menu (where most plugins are), sorry xberg. I got complaints about global menus and I like to keep the global Nextgenthemes menu but 2 global menus is a bit to much. I have given the Nextgenthemes menu a video icon now. I hope this is a good compromise.
50
- * Improved: Finished the German translation.
51
- * Improved: Made the ARVE Pro promotion on the settings menu close-able, hopefully less people get offended.
52
-
53
- ### 2017-03-20 - 8.2.0 ###
54
-
55
- * Fixed: Plugin action links on installed plugin screen
56
- * Fixed: CSS specificity issues by adding a `id="arve"` to the entire document and based all the CSS on `#arve`. This will end a long time battle with themes styles without using bad practices. If you have custom styles overwriting ARVE CSS you may need to increase specificity (or use `!important`).
57
- * Improved: styles and scripts and now served minified unless `WP_DEBUG` is set.
58
- * Improved: styles are now only loaded (to the bottom) when there is a video on the page.
59
- * Improved: Settings title is now 'Advanced Responsive Video Embedder Settings' again rather then just ARVE.
60
-
61
- ### 2017-03-12 - 8.1.1 ###
62
-
63
- * Improved: Added ARVE to menu below plugins so it can be easy found.
64
- * Improved: Used `wp_add_inline_style` function for inline styles.
65
- * Removed some code that is not needed.
66
-
67
- ### 2017-03-03 - 8.0.9 ###
68
-
69
- * Fix: Admin page error for messing file.
70
-
71
- ### 2017-03-02 - 8.0.8 ###
72
-
73
- * Improved: Updated EDD Plugin Updater class
74
-
75
- ### 2017-02-24 - 8.0.7 ###
76
-
77
- * Fix: Options not correctly put in debug-info.
78
- * Improved: Make License input fields a bit wider.
79
- * Improved: Some small code improvements.
80
-
81
- ### 2017-02-12 - 8.0.5 ###
82
-
83
- * Fix: Small size of lightbox when using the [Pro Addon](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/).
84
-
85
- ### 2017-02-11 - 8.0.4 ###
86
-
87
- * CSS improved
88
- * Updated Addon Updater Class
89
-
90
- ### 2017-01-03 - 8.0.2 ###
91
-
92
- * Fix: Errors on settings page when Pro Addon is not installed.
93
-
94
- ### 2016-12-17 - 8.0.1 ###
95
-
96
- * Fix: `undefined function is_plugin_active()` error caused by some plugins
97
- * Improved: Show actual meaningful message if PHP is lower then the required 5.3. Bluehost (oh proud wp.org recommended host) seems to show customers a **wrong** php version in the config and lets them hang on insecure end of life versions.
98
-
99
- ### 2016-12-09 - Pro Addon 3.6.8 ###
100
-
101
- * Fix: Wrongly tagged version.
102
-
103
- ### 2016-12-07 - Pro Addon 3.6.7 ###
104
-
105
- * Fix: Some thumbnails not loading.
106
-
107
- ### 2016-12-07 - 8.0.0 ###
108
-
109
- * Fix: 'Take over [video] shortcode' option not working. (Always acted as on, default is off)
110
- * Fix: [video] override putting out a error for not reason.
111
- * Improved code: Dropped 2 micro classes in favor for antonymous functions.
112
-
113
- ### 2016-12-07 - Pro Addon 3.6.6 ###
114
-
115
- * Improved: Load the CSS always in the `<head>`, this enables to change its CSS with the new CSS customizer in WP 4.7 and may also fix issues with caching plugins.
116
-
117
- ### 2016-11-30 - 7.9.23 ###
118
-
119
- * Fix: Ending up with wrong URLs by disabling auto shortening of URLs when pasting them into the shortcode-ui dialog.
120
- * Improved: Enable SSL verify for API calls.
121
- * Improved: License action return messages.
122
-
123
- ### 2016-11-30 - Pro Addon 3.6.4 ###
124
-
125
- * Fix: Autoplay without setting
126
-
127
- ### 2016-11-30 - 7.9.21 ###
128
-
129
- * Fix: Fatal error.
130
-
131
- ### 2016-11-29 - Pro Addon 3.6.4 ###
132
-
133
- * Improved: Licensing field removed from the pro options tab (now in main plugin). This enables resetting pro options settings without deleting license key.
134
- * Fix: Autoplay not applied property.
135
- * Fix: HTML5 not autoplaying in lightbox.
136
- * Improved: New default option for inview lazyload is 'On iOS, Android and Desktops when no thumbnail is found'.
137
- * Improved: New installations will show a message guiding users to activation screen.
138
-
139
- ### 2016-11-29 - 7.9.19
140
-
141
- * Fix: 'Embed Video' Button not working with Advanced Custom Fields (Possibly fixed other 3rd party editor plugins compatibility issues as well) Thanks to David Trenear!
142
- * Fix: Facebook URL detection for usernames with dots in them.
143
- * Fix: Invisible HTML5 Lazyload-lightbox videos
144
- * Fix: Shortcode UI script enqueued to early causing JS erros on admin pages.
145
- * Improved: Error messages for missing mandatory attributes.
146
- * Improved: Moved some code logic of the pro addon out of the main plugin.
147
- * New: `disable_flash` parameter mainly for unlisted providers will be treated as general iframe embeds. With set to true this will enable you to use the 'disable_links' feature of the pro plugin.
148
- * New: Filters for new cool things coming up
149
- * New: License page, relocated options page
150
- * New: YouTube URL detection for playlists without starting video `https://www.youtube.com/playlist?list=PL3Esg-ZzbiUmeSKBAQ3ej1hQxDSsmnp-7`
151
- * Possible Fix: Videos displayed to small in some Browsers
152
-
153
- ### 2016-10-29 - 7.9.8 and Pro Addon 3.3.4 ###
154
-
155
- * Fix: Fix lightbox thumbnail
156
- * Improved: CSS
157
-
158
- ### 2016-10-28 - Pro Addon 3.3.1 ###
159
-
160
- * Fix: Fix thumbnails being displayed wrong in IE.
161
-
162
- ### 2016-10-28 - Pro Addon 3.3.0 ###
163
-
164
- * Fix: Restored broken update notifications and semi auto updates.
165
-
166
- ### 2016-10-28 - 7.9.7 ###
167
-
168
- * New: Wistia Support.
169
- * Improved: Allow HTML in title attribute.
170
- * Improved: Force more CSS Styles.
171
-
172
- ### 2016-10-27 - Pro Addon 3.2.9 ###
173
-
174
- * Fix: Twitch API failing (needs Client-ID now)
175
-
176
- ### 2016-10-27 - Pro Addon 3.2.8 ###
177
-
178
- * Improved: oembed error message
179
- * Improved: Skip srcset function for PHP 5.3 and lower
180
-
181
- ### 2016-10-27 - 7.9.6 ###
182
-
183
- * Fix: Thumbnail not correctly applied to <video> tag for self hosted videos.
184
- * Improved: CSS for self hosted videos.
185
- * Improved: Enabled detection for rubtube and VK and show them as supported providers, even they where supported as general iframe embeds before.
186
-
187
- ### 2016-10-25 - Pro Addon 3.2.7 ###
188
-
189
- * Fix: 2 clicks needed to play lazyloaded video on desktops
190
-
191
- ### 2016-10-24 - Pro Addon 3.2.5 ###
192
-
193
- * Fix: JavaScript error related to abandoned Script.
194
- * Fix: Custom Thumbnails not applied.
195
-
196
- ### 2016-10-24 - 7.9.5 ###
197
-
198
- * Fix: Custom Thumbnails not applied.
199
- * Fix: Shortcode UI script only loaded if the plugin is active.
200
-
201
- ### 2016-10-23 - 7.9.4 and Pro Addon 3.2.3 ###
202
-
203
- * Fix: Multiple issues about the new HTML5 video embedding (still experimental)
204
-
205
- ### 2016-10-23 - Pro Addon 3.2.2 ###
206
-
207
- * Fix: 'Disable Links' not working.
208
-
209
- ### 2016-10-23 - Pro Addon 3.2.0 ###
210
-
211
- * Fix: Issue with lazyload and AJAX.
212
- * Fix: W3TC issue by using yet another lazyload method. Final this time?
213
- * Fix: YouTube Thumbnail detection when there are no HD images.
214
- * Improved: Code used to cache thumbnails, this may improve improve performance.
215
- * Improved: Lots code restructured and improved.
216
- * New: New Lazyload mode setting to prevent "two touched needed to play video on mobiles" issue. Its also
217
- * New: Facebook thumbnail detection.
218
-
219
- ### 2016-10-23 - 7.9.2 ###
220
-
221
- * Fix: Brightcove Autoplay issue.
222
- * Fix: Liveleak thumbnail detection issues.
223
- * Fix: Parameters not being added.
224
- * Fix: Twitch single videos not using https
225
- * Fix: Vevo marked to require flash to make it work again.
226
- * Improved: Better dialog with better description and links about the shortcake UI plugin.
227
- * Improved: Facebook embed method.
228
- * Improved: Lots code restructured and improved.
229
- * Improved: Parameters are always possible no matter the provider.
230
- * Improved: Restructure of the plugin, abandon OOP mostly.
231
- * Improved: Revive saving of last setting page tab.
232
- * New: "Image Cache Time" setting on the setting page. Thumbnail URLs form the media gallery can now be cached with transients, that may improve performance.
233
- * New: Support for self hosted videos (experimental)
234
-
235
- ### 2016-10-03 - Pro Addon 2.5.2 ###
236
-
237
- * Fix: Force button styles to make sure themes styles get overwritten.
238
-
239
- ### Pro Addon 2.5.1 beta - 2016-09-21 ###
240
-
241
- * New: Thumbnail support for Liveleak.
242
- * Fix: Update loop.
243
-
244
- ### Pro Addon 2.5.0 beta - 2016-09-21 ###
245
-
246
- * Improved: Thumbnails detection.
247
- * Improved how license keys are handled when set in wp-config.php.
248
-
249
- ### 7.5.1 beta - 2016-09-21 ###
250
-
251
- * Fix: Liveleak seems to require flash for some videos.
252
-
253
- ### 7.5.0 beta - 2016-09-21 ###
254
-
255
- * Fix: Youku URL detection and aspect ratio.
256
- * Improved: `.arve-inner` css class in favor of some more specific classes combining styles.
257
- * Improved: removed TGMPA class because it was causing horrible issues.
258
-
259
- ### Pro Addon 2.4.5 beta - 2016-09-19 ###
260
-
261
- * New: Adds the ability to define the pro key in your wp-config.php file with `define( 'ARVE_PRO_KEY', 'your_key_here' )`. When activating the plugin it now also tries to activate its license when a key is defined.
262
-
263
- ### 7.4.3 beta - 2016-09-19 ###
264
-
265
- * Fix: Deal with fluid-vids script messing with this plugin, making videos invisible.
266
-
267
- ### Pro Addon 2.4.0 beta - 2016-09-18 ###
268
-
269
- * New: Adds Yahoo auto thumbnail and title support
270
-
271
- ### 7.4.1 beta - 2016-09-18 ###
272
-
273
- * New: Adds Yahoo Video support
274
-
275
- ### 7.3.2 beta - 2016-09-17 ###
276
-
277
- * Fix: Remove security="restricted" from iframes to make IE work again.
278
-
279
- ### 7.3.1 beta - 2016-09-17 ###
280
-
281
- * Fix: Get rid of undefined index warnings when pro addon is not active.
282
-
283
- ### 7.3.0 beta - 2016-09-17 ###
284
-
285
- * Improved: Show admin notices only to users who have the 'activate_plugins' capability.
286
- * Improved: Added notice to the readme for the TGMPA cause white screen of death issue.
287
-
288
- ### Pro Addon 2.3.2 - 2016-09-17 ###
289
-
290
- * Possible Fix for not centered play button.
291
-
292
- ### 7.2.13 beta - 2016-09-16 ###
293
-
294
- * Fix: Set fitvidsignore class and remove the Fitvids container to prevent it from messing with ARVE embeds.
295
- * Fix: Remove possible width and height parameters on iframes to prevent scripts from messing with ARVE embeds.
296
-
297
- ### 7.2.12 beta - 2016-09-16 ###
298
-
299
- * Improved: replaced static:: with self:: to support older php versions.
300
-
301
- ### 7.2.10 beta - 2016-09-15 ###
302
-
303
- * Fix: [iframe] shortcode not working.
304
-
305
- ### Pro Addon 2.3.1 beta - 2016-09-15 ###
306
-
307
- * New: Added support for displaying title of videos on top of the thumbnail images.
308
- * New: Responsive thumbnails using srcset the browser takes the best image resolution for the users device. (HTML5 srcset)
309
- * New: Choose between 3 hover styles for the thumbnails: 'zoom image' (new default), 'rectangle move in' (old), or 'none' where only the play button changes.
310
- * New: Choose beween 2 play button styles.
311
- * Fix: Screenfull error.
312
- * Fix: License API call.
313
- * Improved: Rectangle animation.
314
- * Improved: Updated 'lity' lightbox script.
315
- * Improved: Thumbnail handling.
316
- * Improved: Removed the 'Lazyload Maximal Width' setting to simplify things (there still is 'Maximal Width' and 'Aligned Maximal Width').
317
- * Improved: Removed the 'Fake Thumbnail' feature because the entire idea was bad and real thumbnails should be used.
318
- * Improved: Updated EDD_SL_Plugin_Updater Class
319
- * Dropped PHP Class.
320
-
321
- ### 7.2.9 beta - 2016-09-15 ###
322
-
323
- * New: Recommend and guide to users to install [Shortcake (Shortcode UI)](https://de.wordpress.org/plugins/shortcode-ui/) via [TGMPA](http://tgmpluginactivation.com/)
324
- * New: Amazing catch-all shortcode [arve url="..."] that can be used for all supported providers and even with any iframe `src` if all unlisted providers that support responsive iframe embeds.
325
- * New: Support for kla.tv.
326
- * New: Support for youku (fulfilled request)
327
- * New: New Advanced Shortcode Dialog with nice UI for choose thumbnails from your WP Media Gallery, very detailed helping texts, display of default settings, hiding of fields based on need ...
328
- * New: WYSIWYG Preview of Shortcodes.
329
- * New: The two above features need the [Shortcake (Shortcode UI)](https://de.wordpress.org/plugins/shortcode-ui/) Plugin that is maybe moving into WordPress core later.
330
- * New: A default alignment can now be set in the Settings page. (fulfilled request)
331
- * New: 'iframe_name' shortcode parameter for `<iframe name="xxxxx"`, useful when wanting to target ARVE embeds with links. (fulfilled request)
332
- * New: ARVE is now SEO friendly giving you the ability to add some schema.org microdata. Googles tools should not complain anymore if you add title, description and upload date. (fulfilled request)
333
- * Deleted Language files in favor of [wordpress.org managed translations](https://translate.wordpress.org/projects/wp-plugins/advanced-responsive-video-embedder/dev) volunteers are welcome ;)
334
- * Improved: Got rid of PHP globals.
335
- * Improved: Added image upload dialog to settings page and shortcode dialog.
336
- * Improved: Better CSS to overwrite unwanted theme styles.
337
- * Improved: Lots if code improvements.
338
- * Improved: SSL enabled and forced when supported by provoders.
339
- * Fix: Blury Vimeo thumbnails
340
- * Fix: Prevent Dashboard Widget conflicts with WP Helpers plugin (possibly others). Thanks to Steve Bruner.
341
- * Fix: Issue with unwanted borders showing on embeds.
342
- * Fix: youtu.be URLs now detected correct in shortcode dialog.
343
- * Fix: All Vevo URLs are now detected correctly.
344
- * Fix: Bool options settings.
345
- * Removed blip because the service was shutdown.
346
- * Removed myvideo.de because the service was restructured.
347
-
348
- ### 6.4.0 ###
349
-
350
- * Fix: Always prevent scrollbars.
351
-
352
- ### Pro Addon 1.4.4
353
-
354
- * Fixed: Infinite update loop.
355
- * Improved: Updated Updater class.
356
-
357
- ### Pro Addon 1.4.3
358
-
359
- * Fixed: rectangle overflow issue.
360
-
361
- ### Pro Addon 1.4.2
362
-
363
- * Fixed: license activation problems.
364
-
365
- ### Pro Addon 1.4.1
366
-
367
- * Fixed critical bug for auto updates. Please [click here](https://nextgenthemes.com/support/915/add-wont-update-wordpress-says-download-failed-unauthorized?show=1053#a1053) if your update fails.
368
-
369
- ### 6.3.9 ###
370
-
371
- * Fix: Facebook (now really, hopefully).
372
-
373
- ### 6.3.8 ###
374
-
375
- * Fix: Facebook in lazyload modes.
376
-
377
- ### 6.3.7 ###
378
-
379
- * New: Facebook video support.
380
-
381
- ### 6.3.4 ###
382
-
383
- * Fix?: Iframes are now created with a fixed 853x480 size in feeds, this probably will fix some feedreaders incorrectly or not displaying videos.
384
-
385
- ### 6.3.3 ###
386
-
387
- * Improved: Disabled file URL detection as this solution was bad.
388
-
389
- ### 6.3.2 ###
390
-
391
- * Fixed/Improved: [arve_tests] shortcode.
392
-
393
- ### Pro Addon 1.4 ###
394
-
395
- * Fix: Fake thumbnails now work for lazyload-lightbox mode.
396
-
397
- ### 6.3.1 & Pro Addon 1.4.0 ###
398
-
399
- * Improved: Testing Shortcode.
400
- * Improved: When there is no thumbnail lazyload mode will fall back to normal mode.
401
- * New: Added support for alugha.com.
402
-
403
- ### Pro Addon 1.1.5 ###
404
-
405
- * New: Added setting and parameter grow="yes/no" to control the grow-on-click behaviour that was introduced in 6.0 to your liking.
406
-
407
- ### 6.1.2 ###
408
-
409
- * Improved: Added thumbnail and grow parameters to the Shortcode Creator Dialog.
410
- * Improved: Updated screenshots.
411
-
412
- ### Pro Addon 1.1.3 ###
413
-
414
- * Improved: link-linghtbox mode does not force a newline for the link anymore.
415
- * Fix: Autoplaying in Background when navigating back in browser.
416
-
417
- ### Pro Addon 1.1.0 ###
418
-
419
- * Fix: Various issues reguarding lightbox mode.
420
-
421
- ### 6.1.0 ###
422
-
423
- * Fix: Messages about pro addon removed when it is installed.
424
-
425
- ### Pro Addon 1.0.7 ###
426
-
427
- * Fix: Video start playing again invisible when closeing lightbox with ESC.
428
-
429
- ### 6.0.6 Beta ###
430
-
431
- * Improved: Adds a "Debug Info" tab to the settings page copy pasting when there is are issue.
432
-
433
- ### Pro Addon 1.0.6 ###
434
-
435
- * Remove development functions.
436
-
437
- ### Pro Addon 1.0.4 ###
438
-
439
- * Possibly Fixes SSL issues during activation.
440
-
441
- ### Pro Addon 1.0.3 ###
442
-
443
- * Fix: Maxwidth issue.
444
-
445
- ### 6.0.5 Beta ###
446
-
447
- * Fix: Foreach php error
448
-
449
- ### 6.0.4 Beta ###
450
-
451
- * Fix: Youtube URL with starttime.
452
-
453
- ### 6.0.3 Beta, Pro Addon 1.0.3 ###
454
-
455
- * Fix: Max-width output issue.
456
-
457
- ### 6.0.2 Beta - 2015/07/24 - work time: ~60 days ###
458
-
459
- Please check the [migration guide](https://nextgenthemes.com/?p=1875) about upgrading to this version.
460
-
461
- * Fix: Jackpack Shortcode Embeds module incompatibility.
462
- * New: URL parameters are now possible via URLs used for embeds (passed to iframe src).
463
- * Changed: URL parameters to controll arve features are now 'arve[mode]=' style instead of 'arve-mode='.
464
- * Improved: Enabled HTTPS support for Viddler and MyVideo.
465
- * Improved: TED Talks shortcodes now support the 'lang' parameter.
466
- * Improved: New embed URLs for MyVideo.
467
- * Improved: Better Twitch support.
468
- * Improved: Dailymotion HTTPS support.
469
- * Improved: To reduce CSS and keep it simpler aspect ratios are now handled with inline styles.
470
- * Improved: Moved to complete WP Settings API.
471
- * Improved: Tabbed and extendable options page.
472
- * Improved: Massive code improvements.
473
- * Improved: Replaced all Admin Messages that caused bugs and annoyance for users with a dashboard Widget.
474
-
475
- ### Pro Addon 1.0.1 ###
476
-
477
- * New: link-lightbox mode creates a link the triggers a lightbox with a video on click.
478
-
479
- ### Pro Addon 0.9.7 ###
480
-
481
- * Fix: Lazyload videos not growing when global maxwidth setting was set.
482
- * Improved: Finally got rid of the jQuery Colorbox depency, the Pro Addon now includes lity for lightboxes.
483
-
484
- ### Pro Addon 0.9.5 ###
485
-
486
- * Fix: Licensing Activation should now finally work correcty. (Multisite may need some tweaks)
487
- * Fix: Pissibility of unwanted margins/paddings on the transparent button.
488
-
489
- ### Pro Addon 0.9.0 ###
490
-
491
- * Changed: 'Lazyload' mode now grows the video size after thumbnails are clicked.
492
- * Changed: 'Thumbnail' mode is now called 'Lazyload -> Colorbox' and has a sightly different behavior.
493
- * New: 'Lazyload -> Fullscreen' mode to instandly go Fullscreen after clicking the Lazyloaded preview image.
494
- * New: 'Lazyload -> Fixed' Fullscreen/-window mode (extremly experimental) with ability to resize fixed video on screen while reading the page.
495
- * New: 'thumbnail' parameter, take image URL or a ID to a media libray image to be used as thumbnail image.
496
- * Improved: Enabled fake thumbnails for USTREAM and myvideo.de.
497
- * Depricated: Providers that only support `<object>` are from now only supported in normal mode, will switch automatically. This effects only recorded Twitch videos, flickr and veoh.
498
-
499
- ### 5.3.4 Beta - 2015/03/15 ###
500
-
501
- * Fix: ID detection for youtu.be and dai.ly URLs, will now work with https://(www.) as well.
502
- * Fix: Myvideo.de videos with 7 and 8 digit IDs.
503
-
504
- ### 5.3.3 Beta ###
505
-
506
- * Fix: Workarround for a currently ongoing YouTube issue causing YouTube embeds to fail with erros on mobile devives. This was not a 'bug' caused by this plugin btw.
507
-
508
- ### 5.3.2 Beta ###
509
-
510
- * Fix: Die 'Array' errors DIE!
511
-
512
- ### 5.3.1 Beta ###
513
-
514
- * Improved: Added shortcode example to youtube starttime examples.
515
- * Improved: Clarified from who the admin messages come.
516
-
517
- ### 5.3.0 Beta ###
518
-
519
- * **If you get a error '... array ...' please reset your options on the options page and redo the options you had before**
520
- * Fix: '... expected array' error when saving options on some cases. If you get a error please reset your
521
- * Fix: ttp://youtu.be/... shortlinks are not detected correctly in the shortcode creator dialog.
522
- * Improved: Ported code to WordPress Plugin Boilerplate 3.0 style.
523
- * Improved: Switched vevo and xtube from object to iframe embeds.
524
- * Improved: Lots of minor code enhancements.
525
-
526
- ### 5.1.1 ###
527
-
528
- * Fix: Removed mixed content warnungs for youtube and vimeo.
529
- * Translation updates.
530
-
531
- ### 5.1.0 ###
532
-
533
- * New: Vimeo HTTPS support (works automatically if your site is HTTPS)
534
-
535
- ### 5.0.2 Beta ###
536
-
537
- * Improved: Marked as working with WP 4.0
538
-
539
- ### 5.0.1 Beta ###
540
-
541
- * Fix: Options var error
542
-
543
- ### 5.0.0 Beta ###
544
-
545
- * Fix: Max-width options should now work in all circumstances
546
- * Improved: Various CSS improvements
547
- * Improved: Changed play overlay image to a Google+ style image
548
-
549
- ### 4.9.0 Beta ###
550
-
551
- * Improved: All Javascript is loaded from files now and they are only loaded when there are embeds on the page. This improves page load times on pages with no embeds.
552
- * Fix: Removed autohide#1 from default YouTube Parameters since it causes a YouTube bug in the HTML5 player.
553
-
554
- ### 4.8.0 ###
555
-
556
- * Updated: Spanish translation now 80% complete. Thanks Xarkitu!
557
- * Improved: Do not load admin dialog when doing AJAX
558
-
559
- ### 4.7.0 ###
560
-
561
- * Fix: Iframe code detection
562
-
563
- ### 4.6.0 ###
564
-
565
- * Improvement: PHP required version lowered to 5.2.4
566
-
567
- ### 4.5.4 ###
568
-
569
- * Fix: Save of custom URL parameters
570
- * New: CHANGES.md file for github updater
571
-
572
- ### 4.5.3 ###
573
-
574
- * Fix: Fatal PHP Error on activation.
575
- * Fix: Readme spellings.
576
-
577
- ### 4.5.0 ###
578
-
579
- * Fix: Minor options page spelling and field association fixes.
580
- * Fix: Added Lazyload to mode select in the shortcode dialog.
581
- * New: 4players.de support.
582
- * New: Added parameter input to the shortcode dialog.
583
- * Improved: Default options are no longer stored in the database.
584
- * Improved: Transparency fade animation on thumbnail hover.
585
- * Improved: No more ugly URL hash (#arve-load-video) after clicking links.
586
- * Improved: Dropped IE 8 support for Lazyload mode.
587
- * Improved: Lots of code improvements.
588
-
589
- ### 4.3.0 ###
590
-
591
- * New: Added Iframe examples.
592
- * Improved: Limited support for self hosted Videos. Dialog will detect URLS that end up with .webm .mp4 .ogg creates a iframe embed code with them. This is probaly not the best way to do this but it works. Real HTML5 video tag embeds may come later.
593
- * Improved: Redesigned the button to look like WordPress and move it out of the Tiny MCE Editor. This enables you to embed videos in the code editor as well.
594
- * Improved: Redesigned the Shortcode Creator dialog. Less clutter, more compact and it now includes the recently introduced `aspect_ratio`.
595
-
596
- ### 4.2.0 ###
597
-
598
- * New: As requested: `aspect_ratio` parameter
599
- * Fix: Vimeo playing problems in Firefox.
600
-
601
- ### 4.1.1 ###
602
-
603
- * Fix: Play button not showing.
604
-
605
- ### 4.1.0 ###
606
-
607
- * New: Vine support
608
- * New: Support for starttime from youtube URLs
609
- * Improved: Include play image inside CSS, -1 http request may speed things up
610
- * Improved: Tests
611
-
612
- ### 4.0.0 ###
613
-
614
- * New: Trigger-able debug output.
615
- * Improved: The `[arve_tests]` shortcode now includes alignment and maxwidth tests
616
- * Fix: Thumbnail image now displayed when using lazyload with `maxwidth` parameter
617
-
618
- ### 3.9.9 ###
619
-
620
- * Improved: Allowing `maxwidth` parameter in `lazyload` mode
621
-
622
- ### 3.9.8 ###
623
-
624
- * Fix: Thumbnail not opening Colorbox
625
-
626
- ### 3.9.7 ALPHA! ###
627
-
628
- * New: I am proud to introduce the new 'lazyload' mode. ARVEs new default mode. Load Images only and load the Video only on click. Like Google+ without the title.
629
- * New: Added MPORA support
630
- * New: Added (real) thumbnail support for Collegehumor, Twitch, FunnyOrDie, MPORA
631
- * New: `[arve_tests]` shortcode that is used to test the plugin and provide examples.
632
- * New: `[arve_supported]` shortcode probably of no use for users. It will generate the a list of providers with supported features.
633
- * Improved: Enabled fake thumbnails for Comedycentral, Gametrailers and Spike
634
- * Improved: Remote API calls and handling their errors.
635
- * Improved: Get high resolution thumbnails from YouTube if available.
636
- * Improved: The evil admin message is now only shown once to users who can delete plugins (Admins and the like) and if the plugin was activated a week ago or longer.
637
- * Improved: Lots of smaller code improvements.
638
-
639
- ### 3.6.1 ###
640
-
641
- * Fix: Register link in changelog.
642
-
643
- ### 3.6.0 ###
644
-
645
- * New: Thanks to [Ilya Grishkov](https://ilyagrishkov.com) thumbnail URLs for Vimeo, Blip and Dailymotion Playlists are now cached (by default 24hours) this drastically reduces page loading times for thumbnail embeds from these providers because it bypasses calling their APIs for that period.
646
- * Fix: Thumbnails for YouTube playlists.
647
- * Fix: Shortcode creator ID detection for iframes (src URL)
648
- * Fix: Updated Dailymoton docs link on Options page
649
- * Improved: Error messages are now all ready to be translated. Current Translation status: German 50%, French 50%, Spanish 84%. Register at [nextgenthemes.com](https://nextgenthemes.com/wp-login.php?action#register) and then login to [translate.nextgenthemes.com](https://translate.nextgenthemes.com) to help translate.
650
-
651
- ### 3.5.2 ###
652
-
653
- * New: Twitch.tv support
654
- * New: Spanish Translation from Andrew Kurtis webhostinghub.com
655
- * Improved: Support for `https://new.ted.com/...` URLs
656
- * Improved: Some code improvements, among them IDs of hidden objects are now generated with a simple `static` counter instead of some random generated string.
657
-
658
- ### 3.5.1 ###
659
-
660
- * Fix: Bug causing the Shortcode Creator not detecting shortcode tags when customized
661
- * Improved how embeds `<object>` embed codes are generated.
662
- * Updated FAQ
663
- * New: Xtube support (On request)
664
-
665
- ### 3.5.0 ###
666
-
667
- * New: Custom parameters!
668
- * Fix: Youtube playlists now work correctly
669
- * Fix: Translations are working again (incomplete German and French)
670
- * Deprecated: `start` and `end` shortcode parametets should not be used anymore with youtube, instead use the new parameters feature like `[youtube id#"123456" parameters#"start#60 end#120"]`
671
-
672
- ### 3.1.2 ###
673
-
674
- * Fix: IE8 JavaScript errors
675
- * Improved: The evil message at the admin.
676
-
677
- ### 3.1.1 (github only) ###
678
-
679
- * Improved: Added `px` suffix to values on options page
680
-
681
- ### 3.1.0 (beta) ###
682
-
683
- * New: Development versions now available via [Github Plugin Updater](https://github.com/afragen/github-updater) please install this to test cutting edge versions
684
- * New: Introducing 'Align Maximal Width' option
685
- * Fix: Invisible normal mode embeds with align
686
- * Fix: Yahoo detection
687
- * Fix: Kickstarter detection
688
- * Fix: Daylimoition Playlist
689
- * Fix: Colleghumor
690
- * Improved: Screenshots updated
691
- * Improved: Beginning process of provider based aspect ratios.
692
- * Improved: Dailymotion playlists/jukeboxes now show Native thumbnails
693
- * Improved: Iframe embed code detection with with single quoted `src#''`
694
-
695
- ### 3.0.4 (beta) ###
696
-
697
- * Javascript Fix
698
-
699
- ### 3.0.0 (beta) ###
700
-
701
- * New: Support for embedding via simply pasting of URLs into posts (need to be on their own line, no button or shortcodes needed)
702
- * New: Thumbnails are now responsive
703
- * New: Vevo support
704
- * New: TED Talks support
705
- * New: IGN support
706
- * New: Kickstarter support
707
- * Improved: request large thumbnail from vimeo instead of medium
708
- * Improved: 'youtubelist' shortcode deprecated YouTube playlists are now handled via the normal youtube shortcode with support for starting video
709
- * Improved: 'bliptv' shortcode deprecated on favor of 'blip' that uses the ids from blip.tv URLs instead of the ones from embed codes
710
- * Improved: Moved code to newest Plugin Boilerplate
711
- * Improved: Massive code improvements
712
-
713
- ### 2.7.4 ###
714
-
715
- * Fix: Dropped mb_detect_encoding now using just preg_match to support rare php setups.
716
-
717
- ### 2.7.3 ###
718
-
719
- * New: Added French Translation from Karel - neo7.fr
720
-
721
- ### 2.7.2 ###
722
-
723
- * Fix: Permissions for the button, now authors who
724
-
725
- ### 2.7.0 ###
726
-
727
- * Fix: Admin page capabilities
728
- * Improved: Reintroduced the manual provider and ID input to be used then not detected correctly.
729
-
730
- ### 2.6.4 ###
731
-
732
- * Fix: Black bar issue. (Dropped IE6 hacks/workarounds)
733
-
734
- ### 2.6.3 ###
735
-
736
- * Fix: Normal embeds not sizing correctly
737
- * New: Added scrolling#"no" to Iframes
738
- * Improved: Init shortcodes at a late stage to dominate conflicts
739
- * Improved: Improved Iframe parameter handling
740
- * Improved: Metacafe, Myspace, Videojug are now handled via Iframe
741
-
742
- ### 2.6.2 ###
743
-
744
- * Fix: Objects open correctly in Colorbox
745
- * Fix: Iframe autoplay parameters startign with '&'
746
- * New: Added screenshot for options page
747
- * Improved: Youtube Videos with now me embedded with the same protocol your website is on, meaning if your website is https youtube embeds will be in https as well.
748
-
749
- ### 2.6.1 ###
750
-
751
- * Fix: Colorbox args script not having colorbox in depenency array
752
- * Fix: Maxwidth shortcode generator field now has default value#""
753
- * Fix: Blip embed code detection
754
-
755
- ### 2.6.0 ###
756
-
757
- * Improved: Move to a class structure with help of the great https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate
758
- * Improved: Some smaller Improvements
759
- * New: Shortcode Dialog now has Autoplay option
760
- * New: Guessing of autoplay parameters for the Iframe shortcodes.
761
- * Hopefully fixed issues with other plugins and some themes, Javascript was messed up and is fine now.
762
-
763
- ### 2.5 ###
764
-
765
- * Fix: Objects in Colorboxes, now always have width and height 100%
766
- * new shortcode attribute 'autoplay' for single videos
767
- * support for start at given time for vimeo
768
-
769
- ### 2.4 ###
770
-
771
- * propper licence
772
- * Class renamed
773
-
774
- ### 2.3 beta ###
775
-
776
- * fix for maxwidth wrapper no maxwidth option is set
777
-
778
- ### 2.1 beta ###
779
-
780
- * Security and general code improvements
781
- * Added autoplay option
782
-
783
- ### 2.0 beta ###
784
-
785
- * added Yahoo!
786
- * spike bugfix
787
- * small improvements to code
788
- * removed the fixed mode
789
-
790
- ### 1.9 beta ###
791
-
792
- * added youtubes modestbranding mode
793
- * added missing veoh id detection
794
- * fixed vimeo id detection
795
- * added now custom thumbnail feature
796
- * fixed the align class creation
797
- * renamed the shortcode dialog
798
- * removed the text field for teh fixed width option (beginning of the removal process)
799
-
800
- ### 1.8 beta ###
801
-
802
- * added new tinymce botton with dialog to detect ids from URL's and embed codes and automatically create shortcodes
803
- * removed the image resizer (Faster and more secure for servers), now uses just CSS. Polyfill for for IE to support 'background-size' included.
804
- * changed the play overlay image to a bigger one
805
- * added comedycentral, spike
806
- * removed google video, it died
807
- * lots of improvements and fixes
808
-
809
- ### 1.7 ###
810
-
811
- * fixed gametrailers and collegehumor
812
- * fixed options handling for updateded options
813
- * added ustream support
814
- * renamed a function to prevent issues with other plugins
815
-
816
- ### 1.6 ###
817
-
818
- * corrected readme errors, typos and added better description to shortcode options
819
-
820
- ### 1.5 ###
821
-
822
- * lots of code improvements, now uses wordpress settings api, and propper sanitising
823
-
824
- ### 1.4.5 ###
825
-
826
- * added flickr video, archive.org
827
- * inproved how flashvars were implemented
828
-
829
- ### 1.4.4 ###
830
-
831
- * fixes
832
-
833
- ### 1.4.2 ###
834
-
835
- * Options dialog overhaul
836
- * replaced Fancybox with Colorbox
837
-
838
- ### 1.0 ###
839
-
840
- * Removed Services that went down over the years
841
- * Changed the way shortcodes were implemented from regexp to wordpress 'add shortcode' function
842
-
843
- ### 0.1 ###
844
-
845
- * Started by improving the Wordpress 'Video Embedder Plugin' but now complete new code
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
LICENSE.txt CHANGED
File without changes
admin/arve-admin.css CHANGED
@@ -2,10 +2,6 @@
2
  width: 280px;
3
  }
4
 
5
- [data-nj-notice-id] p {
6
- font-size: 1.2em;
7
- }
8
-
9
  .arve-btn {
10
  padding-left: 3px;
11
  }
@@ -14,10 +10,6 @@
14
  content: "\f236" !important; /* dashicon-video-alt */
15
  }
16
 
17
- .arve-options-wrap {
18
- max-width: 1000px;
19
- }
20
-
21
  .edit-shortcode-form-fields.shortcode-ui-edit-arve .field-block {
22
  padding-top: .4em;
23
  padding-bottom: .4em;
@@ -39,3 +31,37 @@
39
  .edit-shortcode-form-fields.shortcode-ui-edit-arve .shortcode-ui-attribute-description input {
40
  width: 700px;
41
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  width: 280px;
3
  }
4
 
 
 
 
 
5
  .arve-btn {
6
  padding-left: 3px;
7
  }
10
  content: "\f236" !important; /* dashicon-video-alt */
11
  }
12
 
 
 
 
 
13
  .edit-shortcode-form-fields.shortcode-ui-edit-arve .field-block {
14
  padding-top: .4em;
15
  padding-bottom: .4em;
31
  .edit-shortcode-form-fields.shortcode-ui-edit-arve .shortcode-ui-attribute-description input {
32
  width: 700px;
33
  }
34
+
35
+ .arve-list-small {
36
+ font-size: .85em;
37
+ list-style: square;
38
+ padding-left: 20px;
39
+ }
40
+
41
+ .arve-list-small li {
42
+ margin-bottom: 2px;
43
+ }
44
+
45
+ .arve-settings-page-ad {
46
+ margin: 0;
47
+ padding-right: .7rem !important;
48
+ }
49
+
50
+ .arve-corner-spacer {
51
+ float: right;
52
+ width: 20px;
53
+ height: 38px;
54
+ }
55
+
56
+ @media all and (min-width: 1024px) {
57
+ .arve-settings-page-ad {
58
+ position: absolute !important;
59
+ right: 0;
60
+ width: 320px;
61
+ }
62
+
63
+ .arve-options-wrap {
64
+ padding-right: 350px;
65
+ position: relative;
66
+ }
67
+ }
admin/arve-admin.js CHANGED
@@ -47,8 +47,8 @@
47
  $(document).on( 'click', '[data-image-upload]', function(e) {
48
 
49
  e.preventDefault();
50
- var target = $( this ).attr('data-image-upload'),
51
- image = wp.media({
52
  title: 'Upload Image',
53
  // mutiple: true if you want to upload multiple files at once
54
  multiple: false
47
  $(document).on( 'click', '[data-image-upload]', function(e) {
48
 
49
  e.preventDefault();
50
+ var target = $( this ).attr('data-image-upload');
51
+ var image = wp.media({
52
  title: 'Upload Image',
53
  // mutiple: true if you want to upload multiple files at once
54
  multiple: false
admin/arve-shortcode-ui.js CHANGED
@@ -17,9 +17,9 @@ function arve_extract_url( changed, collection, shortcode ) {
17
  return;
18
  }
19
 
20
- if( val.match(/src="([^"]+)/) ) {
21
 
22
- var test_url = val.match(/src="([^"]+)/),
23
  only_url = test_url && test_url[1];
24
 
25
  input.val( only_url ).trigger( 'input' );
17
  return;
18
  }
19
 
20
+ if( val.match(/src="?([^\s"]+)/) ) {
21
 
22
+ var test_url = val.match(/src="?([^\s"]+)/),
23
  only_url = test_url && test_url[1];
24
 
25
  input.val( only_url ).trigger( 'input' );
admin/class-arve-admin-notice-factory.php CHANGED
@@ -25,8 +25,11 @@ class ARVE_Admin_Notice_Factory {
25
  }
26
 
27
  function action_admin_notices() {
28
- #delete_user_meta( get_current_user_id(), $this->notice_id );
29
- #delete_transient( $this->notice_id );
 
 
 
30
 
31
  $user_id = get_current_user_id();
32
  $user_meta = get_user_meta( $user_id, $this->notice_id );
25
  }
26
 
27
  function action_admin_notices() {
28
+
29
+ if ( apply_filters( 'nj_debug_admin_message', false ) ) {
30
+ delete_user_meta( get_current_user_id(), $this->notice_id );
31
+ delete_transient( $this->notice_id );
32
+ }
33
 
34
  $user_id = get_current_user_id();
35
  $user_meta = get_user_meta( $user_id, $this->notice_id );
admin/{class-edd-sl-plugin-updater.php → class-nextgenthemes-plugin-updater.php} RENAMED
@@ -7,9 +7,9 @@ if ( ! defined( 'ABSPATH' ) ) exit;
7
  * Allows plugins to use their own update API.
8
  *
9
  * @author Easy Digital Downloads
10
- * @version 1.6.12
11
  */
12
- class EDD_SL_Plugin_Updater {
13
 
14
  private $api_url = '';
15
  private $api_data = array();
@@ -19,6 +19,8 @@ class EDD_SL_Plugin_Updater {
19
  private $wp_override = false;
20
  private $cache_key = '';
21
 
 
 
22
  /**
23
  * Class constructor.
24
  *
@@ -40,10 +42,19 @@ class EDD_SL_Plugin_Updater {
40
  $this->version = $_api_data['version'];
41
  $this->wp_override = isset( $_api_data['wp_override'] ) ? (bool) $_api_data['wp_override'] : false;
42
  $this->beta = ! empty( $this->api_data['beta'] ) ? true : false;
43
- $this->cache_key = md5( serialize( $this->slug . $this->api_data['license'] . $this->beta ) );
44
 
45
  $edd_plugin_data[ $this->slug ] = $this->api_data;
46
 
 
 
 
 
 
 
 
 
 
47
  // Set up hooks.
48
  $this->init();
49
 
@@ -112,7 +123,7 @@ class EDD_SL_Plugin_Updater {
112
 
113
  }
114
 
115
- $_transient_data->last_checked = current_time( 'timestamp' );
116
  $_transient_data->checked[ $this->name ] = $this->version;
117
 
118
  }
@@ -158,6 +169,19 @@ class EDD_SL_Plugin_Updater {
158
  if ( false === $version_info ) {
159
  $version_info = $this->api_request( 'plugin_latest_version', array( 'slug' => $this->slug, 'beta' => $this->beta ) );
160
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
  $this->set_version_info_cache( $version_info );
162
  }
163
 
@@ -171,7 +195,7 @@ class EDD_SL_Plugin_Updater {
171
 
172
  }
173
 
174
- $update_cache->last_checked = current_time( 'timestamp' );
175
  $update_cache->checked[ $this->name ] = $this->version;
176
 
177
  set_site_transient( 'update_plugins', $update_cache );
@@ -251,7 +275,8 @@ class EDD_SL_Plugin_Updater {
251
  'is_ssl' => is_ssl(),
252
  'fields' => array(
253
  'banners' => array(),
254
- 'reviews' => false
 
255
  )
256
  );
257
 
@@ -278,27 +303,43 @@ class EDD_SL_Plugin_Updater {
278
 
279
  // Convert sections into an associative array, since we're getting an object, but Core expects an array.
280
  if ( isset( $_data->sections ) && ! is_array( $_data->sections ) ) {
281
- $new_sections = array();
282
- foreach ( $_data->sections as $key => $value ) {
283
- $new_sections[ $key ] = $value;
284
- }
285
-
286
- $_data->sections = $new_sections;
287
  }
288
 
289
  // Convert banners into an associative array, since we're getting an object, but Core expects an array.
290
  if ( isset( $_data->banners ) && ! is_array( $_data->banners ) ) {
291
- $new_banners = array();
292
- foreach ( $_data->banners as $key => $value ) {
293
- $new_banners[ $key ] = $value;
294
- }
295
 
296
- $_data->banners = $new_banners;
 
 
297
  }
298
 
299
  return $_data;
300
  }
301
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
302
  /**
303
  * Disable SSL verification in order to prevent download update failures
304
  *
@@ -307,11 +348,13 @@ class EDD_SL_Plugin_Updater {
307
  * @return object $array
308
  */
309
  public function http_request_args( $args, $url ) {
310
- // If it is an https request and we are performing a package download, disable ssl verification
 
311
  if ( strpos( $url, 'https://' ) !== false && strpos( $url, 'edd_action=package_download' ) ) {
312
- $args['sslverify'] = true;
313
  }
314
  return $args;
 
315
  }
316
 
317
  /**
@@ -327,7 +370,29 @@ class EDD_SL_Plugin_Updater {
327
  */
328
  private function api_request( $_action, $_data ) {
329
 
330
- global $wp_version;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
331
 
332
  $data = array_merge( $this->api_data, $_data );
333
 
@@ -335,7 +400,7 @@ class EDD_SL_Plugin_Updater {
335
  return;
336
  }
337
 
338
- if( $this->api_url == trailingslashit (home_url() ) ) {
339
  return false; // Don't allow a plugin to ping itself
340
  }
341
 
@@ -351,7 +416,8 @@ class EDD_SL_Plugin_Updater {
351
  'beta' => ! empty( $data['beta'] ),
352
  );
353
 
354
- $request = wp_remote_post( $this->api_url, array( 'timeout' => 15, 'sslverify' => true, 'body' => $api_params ) );
 
355
 
356
  if ( ! is_wp_error( $request ) ) {
357
  $request = json_decode( wp_remote_retrieve_body( $request ) );
@@ -367,6 +433,10 @@ class EDD_SL_Plugin_Updater {
367
  $request->banners = maybe_unserialize( $request->banners );
368
  }
369
 
 
 
 
 
370
  if( ! empty( $request->sections ) ) {
371
  foreach( $request->sections as $key => $section ) {
372
  $request->$key = (array) $section;
@@ -413,7 +483,8 @@ class EDD_SL_Plugin_Updater {
413
  'beta' => ! empty( $data['beta'] )
414
  );
415
 
416
- $request = wp_remote_post( $this->api_url, array( 'timeout' => 15, 'sslverify' => true, 'body' => $api_params ) );
 
417
 
418
  if ( ! is_wp_error( $request ) ) {
419
  $version_info = json_decode( wp_remote_retrieve_body( $request ) );
@@ -451,11 +522,17 @@ class EDD_SL_Plugin_Updater {
451
 
452
  $cache = get_option( $cache_key );
453
 
454
- if( empty( $cache['timeout'] ) || current_time( 'timestamp' ) > $cache['timeout'] ) {
455
  return false; // Cache is expired
456
  }
457
 
458
- return json_decode( $cache['value'] );
 
 
 
 
 
 
459
 
460
  }
461
 
@@ -466,12 +543,22 @@ class EDD_SL_Plugin_Updater {
466
  }
467
 
468
  $data = array(
469
- 'timeout' => strtotime( '+3 hours', current_time( 'timestamp' ) ),
470
  'value' => json_encode( $value )
471
  );
472
 
473
- update_option( $cache_key, $data );
474
 
475
  }
476
 
 
 
 
 
 
 
 
 
 
 
477
  }
7
  * Allows plugins to use their own update API.
8
  *
9
  * @author Easy Digital Downloads
10
+ * @version 1.6.17
11
  */
12
+ class Nextgenthemes_Plugin_Updater {
13
 
14
  private $api_url = '';
15
  private $api_data = array();
19
  private $wp_override = false;
20
  private $cache_key = '';
21
 
22
+ private $health_check_timeout = 5;
23
+
24
  /**
25
  * Class constructor.
26
  *
42
  $this->version = $_api_data['version'];
43
  $this->wp_override = isset( $_api_data['wp_override'] ) ? (bool) $_api_data['wp_override'] : false;
44
  $this->beta = ! empty( $this->api_data['beta'] ) ? true : false;
45
+ $this->cache_key = 'edd_sl_' . md5( serialize( $this->slug . $this->api_data['license'] . $this->beta ) );
46
 
47
  $edd_plugin_data[ $this->slug ] = $this->api_data;
48
 
49
+ /**
50
+ * Fires after the $edd_plugin_data is setup.
51
+ *
52
+ * @since x.x.x
53
+ *
54
+ * @param array $edd_plugin_data Array of EDD SL plugin data.
55
+ */
56
+ do_action( 'post_edd_sl_plugin_updater_setup', $edd_plugin_data );
57
+
58
  // Set up hooks.
59
  $this->init();
60
 
123
 
124
  }
125
 
126
+ $_transient_data->last_checked = time();
127
  $_transient_data->checked[ $this->name ] = $this->version;
128
 
129
  }
169
  if ( false === $version_info ) {
170
  $version_info = $this->api_request( 'plugin_latest_version', array( 'slug' => $this->slug, 'beta' => $this->beta ) );
171
 
172
+ // Since we disabled our filter for the transient, we aren't running our object conversion on banners, sections, or icons. Do this now:
173
+ if ( isset( $version_info->banners ) && ! is_array( $version_info->banners ) ) {
174
+ $version_info->banners = $this->convert_object_to_array( $version_info->banners );
175
+ }
176
+
177
+ if ( isset( $version_info->sections ) && ! is_array( $version_info->sections ) ) {
178
+ $version_info->sections = $this->convert_object_to_array( $version_info->sections );
179
+ }
180
+
181
+ if ( isset( $version_info->icons ) && ! is_array( $version_info->icons ) ) {
182
+ $version_info->icons = $this->convert_object_to_array( $version_info->icons );
183
+ }
184
+
185
  $this->set_version_info_cache( $version_info );
186
  }
187
 
195
 
196
  }
197
 
198
+ $update_cache->last_checked = time();
199
  $update_cache->checked[ $this->name ] = $this->version;
200
 
201
  set_site_transient( 'update_plugins', $update_cache );
275
  'is_ssl' => is_ssl(),
276
  'fields' => array(
277
  'banners' => array(),
278
+ 'reviews' => false,
279
+ 'icons' => array(),
280
  )
281
  );
282
 
303
 
304
  // Convert sections into an associative array, since we're getting an object, but Core expects an array.
305
  if ( isset( $_data->sections ) && ! is_array( $_data->sections ) ) {
306
+ $_data->sections = $this->convert_object_to_array( $_data->sections );
 
 
 
 
 
307
  }
308
 
309
  // Convert banners into an associative array, since we're getting an object, but Core expects an array.
310
  if ( isset( $_data->banners ) && ! is_array( $_data->banners ) ) {
311
+ $_data->banners = $this->convert_object_to_array( $_data->banners );
312
+ }
 
 
313
 
314
+ // Convert icons into an associative array, since we're getting an object, but Core expects an array.
315
+ if ( isset( $_data->icons ) && ! is_array( $_data->icons ) ) {
316
+ $_data->icons = $this->convert_object_to_array( $_data->icons );
317
  }
318
 
319
  return $_data;
320
  }
321
 
322
+ /**
323
+ * Convert some objects to arrays when injecting data into the update API
324
+ *
325
+ * Some data like sections, banners, and icons are expected to be an associative array, however due to the JSON
326
+ * decoding, they are objects. This method allows us to pass in the object and return an associative array.
327
+ *
328
+ * @since 3.6.5
329
+ *
330
+ * @param stdClass $data
331
+ *
332
+ * @return array
333
+ */
334
+ private function convert_object_to_array( $data ) {
335
+ $new_data = array();
336
+ foreach ( $data as $key => $value ) {
337
+ $new_data[ $key ] = $value;
338
+ }
339
+
340
+ return $new_data;
341
+ }
342
+
343
  /**
344
  * Disable SSL verification in order to prevent download update failures
345
  *
348
  * @return object $array
349
  */
350
  public function http_request_args( $args, $url ) {
351
+
352
+ $verify_ssl = $this->verify_ssl();
353
  if ( strpos( $url, 'https://' ) !== false && strpos( $url, 'edd_action=package_download' ) ) {
354
+ $args['sslverify'] = $verify_ssl;
355
  }
356
  return $args;
357
+
358
  }
359
 
360
  /**
370
  */
371
  private function api_request( $_action, $_data ) {
372
 
373
+ global $wp_version, $edd_plugin_url_available;
374
+
375
+ // Do a quick status check on this domain if we haven't already checked it.
376
+ $store_hash = md5( $this->api_url );
377
+ if ( ! is_array( $edd_plugin_url_available ) || ! isset( $edd_plugin_url_available[ $store_hash ] ) ) {
378
+ $test_url_parts = parse_url( $this->api_url );
379
+
380
+ $scheme = ! empty( $test_url_parts['scheme'] ) ? $test_url_parts['scheme'] : 'http';
381
+ $host = ! empty( $test_url_parts['host'] ) ? $test_url_parts['host'] : '';
382
+ $port = ! empty( $test_url_parts['port'] ) ? ':' . $test_url_parts['port'] : '';
383
+
384
+ if ( empty( $host ) ) {
385
+ $edd_plugin_url_available[ $store_hash ] = false;
386
+ } else {
387
+ $test_url = $scheme . '://' . $host . $port;
388
+ $response = wp_remote_get( $test_url, array( 'timeout' => $this->health_check_timeout, 'sslverify' => true ) );
389
+ $edd_plugin_url_available[ $store_hash ] = is_wp_error( $response ) ? false : true;
390
+ }
391
+ }
392
+
393
+ if ( false === $edd_plugin_url_available[ $store_hash ] ) {
394
+ return;
395
+ }
396
 
397
  $data = array_merge( $this->api_data, $_data );
398
 
400
  return;
401
  }
402
 
403
+ if( $this->api_url == trailingslashit ( home_url() ) ) {
404
  return false; // Don't allow a plugin to ping itself
405
  }
406
 
416
  'beta' => ! empty( $data['beta'] ),
417
  );
418
 
419
+ $verify_ssl = $this->verify_ssl();
420
+ $request = wp_remote_post( $this->api_url, array( 'timeout' => 15, 'sslverify' => $verify_ssl, 'body' => $api_params ) );
421
 
422
  if ( ! is_wp_error( $request ) ) {
423
  $request = json_decode( wp_remote_retrieve_body( $request ) );
433
  $request->banners = maybe_unserialize( $request->banners );
434
  }
435
 
436
+ if ( $request && isset( $request->icons ) ) {
437
+ $request->icons = maybe_unserialize( $request->icons );
438
+ }
439
+
440
  if( ! empty( $request->sections ) ) {
441
  foreach( $request->sections as $key => $section ) {
442
  $request->$key = (array) $section;
483
  'beta' => ! empty( $data['beta'] )
484
  );
485
 
486
+ $verify_ssl = $this->verify_ssl();
487
+ $request = wp_remote_post( $this->api_url, array( 'timeout' => 15, 'sslverify' => $verify_ssl, 'body' => $api_params ) );
488
 
489
  if ( ! is_wp_error( $request ) ) {
490
  $version_info = json_decode( wp_remote_retrieve_body( $request ) );
522
 
523
  $cache = get_option( $cache_key );
524
 
525
+ if( empty( $cache['timeout'] ) || time() > $cache['timeout'] ) {
526
  return false; // Cache is expired
527
  }
528
 
529
+ // We need to turn the icons into an array, thanks to WP Core forcing these into an object at some point.
530
+ $cache['value'] = json_decode( $cache['value'] );
531
+ if ( ! empty( $cache['value']->icons ) ) {
532
+ $cache['value']->icons = (array) $cache['value']->icons;
533
+ }
534
+
535
+ return $cache['value'];
536
 
537
  }
538
 
543
  }
544
 
545
  $data = array(
546
+ 'timeout' => strtotime( '+3 hours', time() ),
547
  'value' => json_encode( $value )
548
  );
549
 
550
+ update_option( $cache_key, $data, 'no' );
551
 
552
  }
553
 
554
+ /**
555
+ * Returns if the SSL of the store should be verified.
556
+ *
557
+ * @since 1.6.13
558
+ * @return bool
559
+ */
560
+ private function verify_ssl() {
561
+ return (bool) apply_filters( 'edd_sl_api_request_verify_ssl', true, $this );
562
+ }
563
+
564
  }
admin/functions-admin.php CHANGED
@@ -9,14 +9,18 @@ function arve_action_admin_init_setup_messages() {
9
  ARVE_PRO_VERSION_REQUIRED,
10
  get_admin_url() . 'admin.php?page=nextgenthemes-licenses',
11
  'https://nextgenthemes.com/support/',
12
- 'https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/documentation/installing-and-license-management/'
13
  );
 
14
  new ARVE_Admin_Notice_Factory( 'arve-pro-outdated', "<p>$msg</p>", false );
15
  }
16
 
17
- $pro_ad_message = arve_get_pro_ad();
 
 
 
 
18
 
19
- if( $pro_ad_message ) {
20
  new ARVE_Admin_Notice_Factory( 'arve_dismiss_pro_notice', $pro_ad_message, true );
21
  }
22
  }
@@ -26,7 +30,7 @@ function arve_add_tinymce_plugin( $plugin_array ) {
26
  return $plugin_array;
27
  }
28
 
29
- function arve_get_pro_ad() {
30
 
31
  $inst = (int) get_option( 'arve_install_date' );
32
 
@@ -34,49 +38,52 @@ function arve_get_pro_ad() {
34
  return false;
35
  }
36
 
37
- $pro_message = __( '<p>Hi, this is Nico(las Jonas) the author of the Advanced Responsive Video Embedder plugin. If you get easily offended by promotions on your admin please close this fast right now.</p>', ARVE_SLUG );
 
 
 
38
 
39
- $pro_message .= file_get_contents( plugin_dir_path( dirname( __FILE__ ) ) . 'readme/html/20-description-features-pro.md.html' );
40
- $pro_message = str_replace( '<ul ', '<ul style="list-style: square; padding-left: 20px;" ', $pro_message );
41
 
42
- return $pro_message;
43
- }
 
 
 
44
 
45
- function arve_echo_pro_ad() {
46
- echo arve_get_pro_ad();
 
47
  }
48
 
49
  function arve_add_dashboard_widget() {
50
 
51
- $pro_ad_message = arve_get_pro_ad();
52
-
53
- if( ! $pro_ad_message ) {
54
  return false;
55
  }
56
 
57
  wp_add_dashboard_widget(
58
  'arve_dashboard_widget', // Widget slug.
59
  'Advanced Responsive Video Embedder', // Title.
60
- 'arve_echo_pro_ad' // Display function.
61
  );
62
 
63
- // Globalize the metaboxes array, this holds all the widgets for wp-admin
64
  global $wp_meta_boxes, $pagenow;
65
 
66
  if( 'index.php' == $pagenow ) {
67
-
68
- // Get the regular dashboard widgets array
69
- // (which has our new widget already but at the end)
70
  $normal_dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
71
 
72
- // Backup and delete our new dashboard widget from the end of the array
73
  $arve_widget_backup = array( 'arve_dashboard_widget' => $normal_dashboard['arve_dashboard_widget'] );
74
  unset( $normal_dashboard['arve_dashboard_widget'] );
75
 
76
- // Merge the two arrays together so our widget is at the beginning
77
  $sorted_dashboard = array_merge( $arve_widget_backup, $normal_dashboard );
78
 
79
- // Save the sorted array back into the original metaboxes
80
  $wp_meta_boxes['dashboard']['normal']['core'] = $sorted_dashboard;
81
  }
82
  }
@@ -130,7 +137,7 @@ function arve_add_action_links( $links ) {
130
 
131
  $extra_links['buy_pro_addon'] = sprintf(
132
  '<a href="%s"><strong style="display: inline;">%s</strong></a>',
133
- 'http://nextgenthemes.com/downloads/advanced-responsive-video-embedder',
134
  __( 'Buy Pro Addon', ARVE_SLUG )
135
  );
136
  }
@@ -159,7 +166,7 @@ function arve_add_media_button() {
159
  printf(
160
  "<div id='arve-thickbox' style='display:none;'><p>$p1</p><p>$p2</p><p>$p3</p></div>",
161
  nextgenthemes_admin_install_search_url( 'Shortcode+UI' ),
162
- esc_url( 'https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/documentation/' )
163
  );
164
 
165
  printf(
@@ -335,8 +342,8 @@ function arve_register_settings() {
335
  $value['label'], // title
336
  $callback_function, // callback
337
  ARVE_SLUG, // page
338
- 'main_section', // section
339
- array( // args
340
  'label_for' => ( 'radio' === $value['type'] ) ? null : "arve_options_main[{$value['attr']}]",
341
  'input_attr' => $value['meta'] + array(
342
  'type' => $value['type'],
@@ -483,12 +490,10 @@ function arve_shortcodes_section_description() {
483
 
484
  function arve_params_section_description() {
485
 
486
- $url = 'https://nextgenthemes.com/advanced-responsive-video-embedder-pro/documentation';
487
-
488
  $desc = sprintf(
489
  __( 'This parameters will be added to the <code>iframe src</code> urls, you can control the video players behavior with them. Please read <a href="%s" target="_blank">the documentation</a> on.',
490
  ARVE_SLUG ),
491
- esc_url( 'https://nextgenthemes.com/advanced-responsive-video-embedder-pro/documentation' )
492
  );
493
 
494
  echo "<p>$desc</p>";
@@ -499,7 +504,7 @@ function arve_params_section_description() {
499
  <a target="_blank" href="https://developers.google.com/youtube/player_parameters">Youtube Parameters</a>,
500
  <a target="_blank" href="http://www.dailymotion.com/doc/api/player.html#parameters">Dailymotion Parameters</a>,
501
  <a target="_blank" href="https://developer.vimeo.com/player/embedding">Vimeo Parameters</a>,
502
- <a target="_blank" href="https://nextgenthemes.com/advanced-responsive-video-embedder-pro/documentation">Vimeo Parameters</a>,
503
  </p>
504
  <?php
505
  }
@@ -550,41 +555,44 @@ function arve_debug_section_description() {
550
  */
551
  function arve_validate_options_main( $input ) {
552
 
553
- //* Storing the Options Section as a empty array will cause the plugin to use defaults
554
  if( isset( $input['reset'] ) ) {
555
  return array();
556
  }
557
 
558
- $output = array();
 
 
 
 
559
 
560
- $output['align'] = sanitize_text_field( $input['align'] );
561
- $output['mode'] = sanitize_text_field( $input['mode'] );
562
- $output['last_settings_tab'] = sanitize_text_field( $input['last_settings_tab'] );
563
-
564
- $output['autoplay'] = ( 'yes' == $input['autoplay'] ) ? true : false;
565
- $output['promote_link'] = ( 'yes' == $input['promote_link'] ) ? true : false;
566
- $output['wp_video_override'] = ( 'yes' == $input['wp_video_override'] ) ? true : false;
567
 
568
  $output['wp_image_cache_time'] = (int) $input['wp_image_cache_time'];
569
 
570
  if( (int) $input['video_maxwidth'] > 100 ) {
571
- $output['video_maxwidth'] = (int) $input['video_maxwidth'];
572
  } else {
573
- $output['video_maxwidth'] = '';
574
  }
575
 
576
  if( (int) $input['align_maxwidth'] > 100 ) {
577
- $output['align_maxwidth'] = (int) $input['align_maxwidth'];
578
  }
579
 
580
  $options_defaults = arve_get_options_defaults( 'main' );
581
- //* Store only the options in the database that are different from the defaults.
582
  return array_diff_assoc( $output, $options_defaults );
583
  }
584
 
585
  function arve_validate_options_params( $input ) {
586
 
587
- //* Storing the Options Section as a empty array will cause the plugin to use defaults
588
  if( isset( $input['reset'] ) ) {
589
  return array();
590
  }
9
  ARVE_PRO_VERSION_REQUIRED,
10
  get_admin_url() . 'admin.php?page=nextgenthemes-licenses',
11
  'https://nextgenthemes.com/support/',
12
+ 'https://nextgenthemes.com/plugins/arve/documentation/installing-and-license-management/'
13
  );
14
+
15
  new ARVE_Admin_Notice_Factory( 'arve-pro-outdated', "<p>$msg</p>", false );
16
  }
17
 
18
+ if( arve_display_pro_ad() ) {
19
+
20
+ $pro_ad_message = __( '<p>Hi, this is Nico(las Jonas) the author of the ARVE - Advanced Responsive Video Embedder plugin. If you are interrested in additional features and/or want to support the work I do on this plugin please consider buying the Pro Addon.</p>', ARVE_SLUG );
21
+
22
+ $pro_ad_message .= file_get_contents( ARVE_PATH . 'admin/pro-ad.html' );
23
 
 
24
  new ARVE_Admin_Notice_Factory( 'arve_dismiss_pro_notice', $pro_ad_message, true );
25
  }
26
  }
30
  return $plugin_array;
31
  }
32
 
33
+ function arve_display_pro_ad() {
34
 
35
  $inst = (int) get_option( 'arve_install_date' );
36
 
38
  return false;
39
  }
40
 
41
+ return true;
42
+ }
43
+
44
+ function arve_widget_text() {
45
 
46
+ printf( '<big><strong><a href="%s">Hiring a Marketing Person</a></strong></big>', 'https://nextgenthemes.com/hiring-a-marketing-person/' );
 
47
 
48
+ echo '<p>';
49
+ printf( '<a href="%s">Documentation</a>, ', 'https://nextgenthemes.com/plugins/arve/documentation/' );
50
+ printf( '<a href="%s">Support</a>, ', 'https://nextgenthemes.com/support/' );
51
+ printf( '<a href="%s">%s</a>', admin_url( 'admin.php?page=advanced-responsive-video-embedder' ), __( 'Settings', ARVE_SLUG ) );
52
+ echo '</p>';
53
 
54
+ printf( '<a href="%s">ARVE Pro Addon Features</a>:', 'https://nextgenthemes.com/plugins/arve-pro/' );
55
+
56
+ echo file_get_contents( ARVE_PATH . 'admin/pro-ad.html' );
57
  }
58
 
59
  function arve_add_dashboard_widget() {
60
 
61
+ if( ! arve_display_pro_ad() ) {
 
 
62
  return false;
63
  }
64
 
65
  wp_add_dashboard_widget(
66
  'arve_dashboard_widget', // Widget slug.
67
  'Advanced Responsive Video Embedder', // Title.
68
+ 'arve_widget_text' // Display function.
69
  );
70
 
71
+ // Globalize the metaboxes array, this holds all the widgets for wp-admin.
72
  global $wp_meta_boxes, $pagenow;
73
 
74
  if( 'index.php' == $pagenow ) {
75
+ // Get the regular dashboard widgets array.
76
+ // (which has our new widget already but at the end).
 
77
  $normal_dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
78
 
79
+ // Backup and delete our new dashboard widget from the end of the array.
80
  $arve_widget_backup = array( 'arve_dashboard_widget' => $normal_dashboard['arve_dashboard_widget'] );
81
  unset( $normal_dashboard['arve_dashboard_widget'] );
82
 
83
+ // Merge the two arrays together so our widget is at the beginning.
84
  $sorted_dashboard = array_merge( $arve_widget_backup, $normal_dashboard );
85
 
86
+ // Save the sorted array back into the original metaboxes.
87
  $wp_meta_boxes['dashboard']['normal']['core'] = $sorted_dashboard;
88
  }
89
  }
137
 
138
  $extra_links['buy_pro_addon'] = sprintf(
139
  '<a href="%s"><strong style="display: inline;">%s</strong></a>',
140
+ 'https://nextgenthemes.com/plugins/arve-pro/',
141
  __( 'Buy Pro Addon', ARVE_SLUG )
142
  );
143
  }
166
  printf(
167
  "<div id='arve-thickbox' style='display:none;'><p>$p1</p><p>$p2</p><p>$p3</p></div>",
168
  nextgenthemes_admin_install_search_url( 'Shortcode+UI' ),
169
+ esc_url( 'https://nextgenthemes.com/plugins/arve/documentation/' )
170
  );
171
 
172
  printf(
342
  $value['label'], // title
343
  $callback_function, // callback
344
  ARVE_SLUG, // page
345
+ 'main_section', // section
346
+ array( // args
347
  'label_for' => ( 'radio' === $value['type'] ) ? null : "arve_options_main[{$value['attr']}]",
348
  'input_attr' => $value['meta'] + array(
349
  'type' => $value['type'],
490
 
491
  function arve_params_section_description() {
492
 
 
 
493
  $desc = sprintf(
494
  __( 'This parameters will be added to the <code>iframe src</code> urls, you can control the video players behavior with them. Please read <a href="%s" target="_blank">the documentation</a> on.',
495
  ARVE_SLUG ),
496
+ esc_url( 'https://nextgenthemes.com/arve/documentation' )
497
  );
498
 
499
  echo "<p>$desc</p>";
504
  <a target="_blank" href="https://developers.google.com/youtube/player_parameters">Youtube Parameters</a>,
505
  <a target="_blank" href="http://www.dailymotion.com/doc/api/player.html#parameters">Dailymotion Parameters</a>,
506
  <a target="_blank" href="https://developer.vimeo.com/player/embedding">Vimeo Parameters</a>,
507
+ <a target="_blank" href="https://nextgenthemes.com/arve-pro/documentation">Vimeo Parameters</a>,
508
  </p>
509
  <?php
510
  }
555
  */
556
  function arve_validate_options_main( $input ) {
557
 
558
+ // Storing the Options Section as a empty array will cause the plugin to use defaults
559
  if( isset( $input['reset'] ) ) {
560
  return array();
561
  }
562
 
563
+ $output['align'] = sanitize_text_field( $input['align'] );
564
+ $output['mode'] = sanitize_text_field( $input['mode'] );
565
+ $output['last_settings_tab'] = sanitize_text_field( $input['last_settings_tab'] );
566
+ $output['controlslist'] = sanitize_text_field( $input['controlslist'] );
567
+ $output['vimeo_api_token'] = sanitize_text_field( $input['vimeo_api_token'] );
568
 
569
+ $output['always_enqueue_assets'] = ( 'yes' == $input['always_enqueue_assets'] ) ? true : false;
570
+ $output['autoplay'] = ( 'yes' == $input['autoplay'] ) ? true : false;
571
+ $output['iframe_flash'] = ( 'yes' == $input['iframe_flash'] ) ? true : false;
572
+ $output['promote_link'] = ( 'yes' == $input['promote_link'] ) ? true : false;
573
+ $output['wp_video_override'] = ( 'yes' == $input['wp_video_override'] ) ? true : false;
574
+ $output['youtube_nocookie'] = ( 'yes' == $input['youtube_nocookie'] ) ? true : false;
 
575
 
576
  $output['wp_image_cache_time'] = (int) $input['wp_image_cache_time'];
577
 
578
  if( (int) $input['video_maxwidth'] > 100 ) {
579
+ $output['video_maxwidth'] = (int) $input['video_maxwidth'];
580
  } else {
581
+ $output['video_maxwidth'] = '';
582
  }
583
 
584
  if( (int) $input['align_maxwidth'] > 100 ) {
585
+ $output['align_maxwidth'] = (int) $input['align_maxwidth'];
586
  }
587
 
588
  $options_defaults = arve_get_options_defaults( 'main' );
589
+ // Store only the options in the database that are different from the defaults.
590
  return array_diff_assoc( $output, $options_defaults );
591
  }
592
 
593
  function arve_validate_options_params( $input ) {
594
 
595
+ // Storing the Options Section as a empty array will cause the plugin to use defaults
596
  if( isset( $input['reset'] ) ) {
597
  return array();
598
  }
admin/functions-licensing.php CHANGED
@@ -90,7 +90,8 @@ function nextgenthemes_ads_page() { ?>
90
  margin-right: 1.7rem;
91
  font-size: 1.2rem;
92
  }
93
- #nextgenthemes-ads ol {
 
94
  margin-left: 2.5rem;
95
  margin-right: .7rem;
96
  }
@@ -113,23 +114,9 @@ function nextgenthemes_ads_page() { ?>
113
  <div id="nextgenthemes-ads">
114
 
115
  <?php if ( ! defined( 'ARVE_PRO_VERSION' ) ) : ?>
116
- <a href="https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/">
117
  <figure><img src="<?php echo $img_dir; ?>arve.svg" alt"ARVE"></figure>
118
- <h1>^ Pro Addon</h1>
119
- <ol>
120
- <li><strong>Feel good about yourself</strong><br>for supporting my long time work on this plugin. Tons of hours, weekends … always worked on improving it 4+ years.</li>
121
- <li><strong>Disable links in embeds (killer feature!)</strong><br>For example: Clicking on a title in a YouTube embed will not open a new popup/tab/window. <strong>Prevent video hosters to lead your visitors away from your site!</strong> Note this also breaks sharing functionality and is not possible when the provider requires flash. Right click on links still works.</li>
122
- <li><strong>Lazyload mode</strong><br>Make your site load <strong>faster</strong> by loading only a image instead of the entire video player on pageload. </li>
123
- <li><strong>Lazyload -&gt; Lightbox</strong><br>Shows the Video in a Lightbox after clicking a preview image</li>
124
- <li><strong>Link -&gt; Lightbox</strong><br>Use simple links as triggers for lightboxed videos</li>
125
- <li>Show the latest video of a YouTube channel by using the channel URL (updated/cached hourly)</li>
126
- <li>Automatic or custom thumbnail images</li>
127
- <li>Automatic or custom titles on top of your thumbnails</li>
128
- <li>&#39;Grow on click&#39; feature</li>
129
- <li>3 hover styles</li>
130
- <li>2 play icon styles to choose from</li>
131
- <li>Responsive thumbnails using cutting edge HTML5 technology</li>
132
- </ol>
133
  <span>Paid</span>
134
  </a>
135
  <?php endif; ?>
@@ -137,16 +124,7 @@ function nextgenthemes_ads_page() { ?>
137
  <?php if ( ! defined( 'ARVE_AMP_VERSION' ) ) : ?>
138
  <a href="https://nextgenthemes.com/plugins/arve-accelerated-mobile-pages-addon/">
139
  <figure><img src="<?php echo $img_dir; ?>arve.svg" alt"ARVE"></figure>
140
- <h3>^ AMP Addon</h3>
141
- <ol>
142
- <li>Requires the gratis plugins ARVE and AMP</li>
143
- <li>Makes ARVE ready for Accelerated Mobile Pages (AMP)</li>
144
- <li>It will display videos embedded with ARVE on AMP pages correctly</li>
145
- <li>No options, just works</li>
146
- <li>It creates &lt;amp-youtube&gt;, &lt;amp-vimeo&gt;, &lt;amp-dailymotion&gt; elements</li>
147
- <li>For all other video hosts supported by ARVE &lt;amp-iframe&gt; element is used</li>
148
- <li>HTML5 video files are also supported with &lt;amp-video&gt;</li>
149
- </ol>
150
  <span>Paid</span>
151
  </a>
152
  <?php endif; ?>
@@ -164,6 +142,10 @@ function nextgenthemes_ads_page() { ?>
164
  <?php
165
  }
166
 
 
 
 
 
167
  function nextgenthemes_activation_notices() {
168
 
169
  $products = nextgenthemes_get_products();
@@ -186,16 +168,25 @@ function nextgenthemes_get_products() {
186
 
187
  $products = array(
188
  'arve_pro' => array(
189
- 'name' => 'Advanced Responsive Video Embedder Pro',
 
190
  'type' => 'plugin',
191
  'author' => 'Nicolas Jonas',
192
- 'url' => 'https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/',
193
  ),
194
  'arve_amp' => array(
195
- 'name' => 'ARVE Accelerated Mobile Pages Addon',
 
 
 
 
 
 
 
 
196
  'type' => 'plugin',
197
  'author' => 'Nicolas Jonas',
198
- 'url' => 'https://nextgenthemes.com/plugins/arve-accelerated-mobile-pages-addon/',
199
  )
200
  );
201
 
@@ -218,16 +209,22 @@ function nextgenthemes_get_products() {
218
  $products[ $key ]['file'] = constant( $file_define );
219
  }
220
 
221
- if ( 'plugin' == $value['type'] ) {
 
 
 
 
 
 
 
 
 
 
222
 
223
  $file_slug = str_replace( '_', '-', $key );
224
 
225
  $products[ $key ]['installed'] = nextgenthemes_is_plugin_installed( "$file_slug/$file_slug.php" );
226
-
227
- if ( ! empty( $products[ $key ]['file'] ) ) {
228
- $plugin_basename = plugin_basename( $products[ $key ]['file'] );
229
- $products[ $key ]['active'] = is_plugin_active( $plugin_basename );
230
- }
231
  }
232
  }
233
 
@@ -252,36 +249,12 @@ function nextgenthemes_is_plugin_installed( $plugin_basename ) {
252
  */
253
  function nextgenthemes_menus() {
254
 
255
- $plugin_screen_hook_suffix = add_menu_page(
256
- __( 'Nextgenthemes', ARVE_SLUG ), # Page Title
257
- __( 'Nextgenthemes', ARVE_SLUG ), # Menu Tile
258
- 'manage_options', # capability
259
- 'nextgenthemes', # menu-slug
260
- 'nextgenthemes_ads_page', # function
261
- 'dashicons-video-alt3', # icon_url
262
- '80.892' # position
263
- );
264
-
265
- /*
266
- add_submenu_page(
267
- 'nextgenthemes', # parent_slug
268
- __( 'Addons and Themes', ARVE_SLUG ), # Page Title
269
- __( 'Addons and Themes', ARVE_SLUG ), # Menu Tile
270
- 'manage_options', # capability
271
- 'nextgenthemes', # menu-slug
272
- function() {
273
- require_once plugin_dir_path( __FILE__ ) . 'html-ad-page.php';
274
- }
275
- );
276
- */
277
-
278
- add_submenu_page(
279
- 'nextgenthemes', # parent_slug
280
- __( 'Licenses', ARVE_SLUG ), # Page Title
281
- __( 'Licenses', ARVE_SLUG ), # Menu Tile
282
- 'manage_options', # capability
283
- 'nextgenthemes-licenses', # menu-slug
284
- 'nextgenthemes_licenses_page' # function
285
  );
286
  }
287
 
@@ -420,13 +393,13 @@ function nextgenthemes_update_key_status( $product, $key ) {
420
  update_option( "nextgenthemes_{$product}_key_status", $key );
421
  }
422
  function nextgenthemes_has_valid_key( $product ) {
423
- return ( 'valid' == nextgenthemes_get_key_status( $product ) ) ? true : false;
424
  }
425
 
426
  function nextgenthemes_api_update_key_status( $product, $key, $action ) {
427
 
428
  $products = nextgenthemes_get_products();
429
- $key_status = nextgenthemes_api_action( $products[ $product ]['name'], $key, $action );
430
 
431
  nextgenthemes_update_key_status( $product, $key_status );
432
  }
@@ -476,14 +449,15 @@ function nextgenthemes_init_edd_updaters() {
476
  function nextgenthemes_init_plugin_updater( $product ) {
477
 
478
  // setup the updater
479
- new EDD_SL_Plugin_Updater(
480
- 'https://nextgenthemes.com',
481
  $product['file'],
482
  array(
483
- 'version' => $product['version'],
484
- 'license' => nextgenthemes_get_key( $product['slug'] ),
485
- 'item_name' => $product['name'],
486
- 'author' => $product['author']
 
487
  )
488
  );
489
  }
@@ -492,14 +466,14 @@ function nextgenthemes_init_theme_updater( $product ) {
492
 
493
  new EDD_Theme_Updater(
494
  array(
495
- 'remote_api_url' => 'https://nextgenthemes.com',
496
- 'version' => $product['version'],
497
- 'license' => nextgenthemes_get_key( $product['slug'] ),
498
- 'item_name' => $product['name'],
499
- 'author' => $product['author'],
500
- 'theme_slug' => $product['slug'],
501
- 'download_id' => $product['download_id'], // Optional, used for generating a license renewal link
502
- #'renew_url' => $product['renew_link'], // Optional, allows for a custom license renewal link
503
  ),
504
  array(
505
  'theme-license' => __( 'Theme License', ARVE_SLUG ),
@@ -528,21 +502,25 @@ function nextgenthemes_init_theme_updater( $product ) {
528
  );
529
  }
530
 
531
- function nextgenthemes_api_action( $item_name, $key, $action ) {
532
 
533
  if ( ! in_array( $action, array( 'activate', 'deactivate', 'check' ) ) ) {
534
  wp_die( 'invalid action' );
535
  }
536
 
537
- // Data to send to the API
538
  $api_params = array(
539
  'edd_action' => $action . '_license',
540
  'license' => sanitize_text_field( $key ),
541
- 'item_name' => urlencode( $item_name ),
542
- 'url' => home_url(),
543
  );
544
 
545
- $response = wp_remote_post( 'https://nextgenthemes.com', array( 'timeout' => 15, 'sslverify' => true, 'body' => $api_params ) );
 
 
 
 
546
 
547
  // make sure the response came back okay
548
  if ( is_wp_error( $response ) || 200 !== wp_remote_retrieve_response_code( $response ) ) {
@@ -557,14 +535,14 @@ function nextgenthemes_api_action( $item_name, $key, $action ) {
557
 
558
  $license_data = json_decode( wp_remote_retrieve_body( $response ) );
559
 
560
- if ( false === $license_data->success ) :
561
 
562
  switch( $license_data->error ) {
563
 
564
  case 'expired' :
565
 
566
  $message = sprintf(
567
- __( 'Your license key expired on %s.', ARVE_SLUG ),
568
  date_i18n( get_option( 'date_format' ), strtotime( $license_data->expires, current_time( 'timestamp' ) ) )
569
  );
570
  break;
@@ -587,7 +565,7 @@ function nextgenthemes_api_action( $item_name, $key, $action ) {
587
 
588
  case 'item_name_mismatch' :
589
 
590
- $message = sprintf( __( 'This appears to be an invalid license key for %s.', ARVE_SLUG ), $item_name );
591
  break;
592
 
593
  case 'no_activations_left':
@@ -600,13 +578,33 @@ function nextgenthemes_api_action( $item_name, $key, $action ) {
600
  $message = __( 'An error occurred, please try again.', ARVE_SLUG );
601
  break;
602
  }
603
-
604
- endif; // false === $license_data->success
605
  }
606
 
607
- if( empty( $message ) ) {
608
- $message = $license_data->license;
 
 
 
 
 
 
 
 
 
 
 
609
  }
610
 
611
  return $message;
612
  }
 
 
 
 
 
 
 
 
 
 
90
  margin-right: 1.7rem;
91
  font-size: 1.2rem;
92
  }
93
+ #nextgenthemes-ads ul {
94
+ list-style: square;
95
  margin-left: 2.5rem;
96
  margin-right: .7rem;
97
  }
114
  <div id="nextgenthemes-ads">
115
 
116
  <?php if ( ! defined( 'ARVE_PRO_VERSION' ) ) : ?>
117
+ <a href="https://nextgenthemes.com/plugins/arve-pro/">
118
  <figure><img src="<?php echo $img_dir; ?>arve.svg" alt"ARVE"></figure>
119
+ <?php nextgenthemes_feature_list_html( ARVE_PATH . 'readme/html/20-description-features-pro.html' ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120
  <span>Paid</span>
121
  </a>
122
  <?php endif; ?>
124
  <?php if ( ! defined( 'ARVE_AMP_VERSION' ) ) : ?>
125
  <a href="https://nextgenthemes.com/plugins/arve-accelerated-mobile-pages-addon/">
126
  <figure><img src="<?php echo $img_dir; ?>arve.svg" alt"ARVE"></figure>
127
+ <?php nextgenthemes_feature_list_html( ARVE_PATH . 'readme/html/25-description-features-amp.html' ); ?>
 
 
 
 
 
 
 
 
 
128
  <span>Paid</span>
129
  </a>
130
  <?php endif; ?>
142
  <?php
143
  }
144
 
145
+ function nextgenthemes_feature_list_html( $filepath ) {
146
+ echo strip_tags( file_get_contents( $filepath ), '<ul></ul><li></li><h3></h3>' );
147
+ }
148
+
149
  function nextgenthemes_activation_notices() {
150
 
151
  $products = nextgenthemes_get_products();
168
 
169
  $products = array(
170
  'arve_pro' => array(
171
+ 'name' => 'ARVE Pro',
172
+ 'id' => 1253,
173
  'type' => 'plugin',
174
  'author' => 'Nicolas Jonas',
175
+ 'url' => 'https://nextgenthemes.com/plugins/arve-pro/',
176
  ),
177
  'arve_amp' => array(
178
+ 'name' => 'ARVE AMP',
179
+ 'id' => 16941,
180
+ 'type' => 'plugin',
181
+ 'author' => 'Nicolas Jonas',
182
+ 'url' => 'https://nextgenthemes.com/plugins/arve-amp/',
183
+ ),
184
+ 'arve_random_video' => array(
185
+ 'name' => 'ARVE Random Video',
186
+ 'id' => 31933,
187
  'type' => 'plugin',
188
  'author' => 'Nicolas Jonas',
189
+ 'url' => 'https://nextgenthemes.com/plugins/arve-random-video/',
190
  )
191
  );
192
 
209
  $products[ $key ]['file'] = constant( $file_define );
210
  }
211
 
212
+ $version_define = "\\nextgenthemes\\$key\\VERSION";
213
+ $file_define = "\\nextgenthemes\\$key\\FILE";
214
+
215
+ if( defined( $version_define ) ) {
216
+ $products[ $key ]['version'] = constant( $version_define );
217
+ }
218
+ if( defined( $file_define ) ) {
219
+ $products[ $key ]['file'] = constant( $file_define );
220
+ }
221
+
222
+ if ( 'plugin' === $value['type'] ) {
223
 
224
  $file_slug = str_replace( '_', '-', $key );
225
 
226
  $products[ $key ]['installed'] = nextgenthemes_is_plugin_installed( "$file_slug/$file_slug.php" );
227
+ $products[ $key ]['active'] = is_plugin_active( "$file_slug/$file_slug.php" );
 
 
 
 
228
  }
229
  }
230
 
249
  */
250
  function nextgenthemes_menus() {
251
 
252
+ $plugin_screen_hook_suffix = add_options_page(
253
+ __( 'ARVE Licenses', ARVE_SLUG ),
254
+ __( 'ARVE Licenses', ARVE_SLUG ),
255
+ 'manage_options',
256
+ 'nextgenthemes-licenses',
257
+ 'nextgenthemes_licenses_page'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
258
  );
259
  }
260
 
393
  update_option( "nextgenthemes_{$product}_key_status", $key );
394
  }
395
  function nextgenthemes_has_valid_key( $product ) {
396
+ return ( 'valid' === nextgenthemes_get_key_status( $product ) ) ? true : false;
397
  }
398
 
399
  function nextgenthemes_api_update_key_status( $product, $key, $action ) {
400
 
401
  $products = nextgenthemes_get_products();
402
+ $key_status = nextgenthemes_api_action( $products[ $product ]['id'], $key, $action );
403
 
404
  nextgenthemes_update_key_status( $product, $key_status );
405
  }
449
  function nextgenthemes_init_plugin_updater( $product ) {
450
 
451
  // setup the updater
452
+ new Nextgenthemes_Plugin_Updater(
453
+ apply_filters( 'nextgenthemes_api_url', 'https://nextgenthemes.com' ),
454
  $product['file'],
455
  array(
456
+ 'version' => $product['version'],
457
+ 'license' => nextgenthemes_get_key( $product['slug'] ),
458
+ #'item_name' => $product['name'],
459
+ 'item_id' => $product['id'],
460
+ 'author' => $product['author']
461
  )
462
  );
463
  }
466
 
467
  new EDD_Theme_Updater(
468
  array(
469
+ 'remote_api_url' => 'https://nextgenthemes.com',
470
+ 'version' => $product['version'],
471
+ 'license' => nextgenthemes_get_key( $product['slug'] ),
472
+ 'item_id' => $product['name'],
473
+ 'author' => $product['id'],
474
+ 'theme_slug' => $product['slug'],
475
+ 'download_id' => $product['download_id'], // Optional, used for generating a license renewal link
476
+ #'renew_url' => $product['renew_link'], // Optional, allows for a custom license renewal link
477
  ),
478
  array(
479
  'theme-license' => __( 'Theme License', ARVE_SLUG ),
502
  );
503
  }
504
 
505
+ function nextgenthemes_api_action( $item_id, $key, $action ) {
506
 
507
  if ( ! in_array( $action, array( 'activate', 'deactivate', 'check' ) ) ) {
508
  wp_die( 'invalid action' );
509
  }
510
 
511
+ // data to send in our API request
512
  $api_params = array(
513
  'edd_action' => $action . '_license',
514
  'license' => sanitize_text_field( $key ),
515
+ 'item_id' => $item_id,
516
+ 'url' => home_url()
517
  );
518
 
519
+ // Call the custom API.
520
+ $response = wp_remote_post(
521
+ 'https://nextgenthemes.com',
522
+ array( 'timeout' => 15, 'sslverify' => true, 'body' => $api_params )
523
+ );
524
 
525
  // make sure the response came back okay
526
  if ( is_wp_error( $response ) || 200 !== wp_remote_retrieve_response_code( $response ) ) {
535
 
536
  $license_data = json_decode( wp_remote_retrieve_body( $response ) );
537
 
538
+ if ( false === $license_data->success ) {
539
 
540
  switch( $license_data->error ) {
541
 
542
  case 'expired' :
543
 
544
  $message = sprintf(
545
+ __( 'Your license key expired on %s.' ),
546
  date_i18n( get_option( 'date_format' ), strtotime( $license_data->expires, current_time( 'timestamp' ) ) )
547
  );
548
  break;
565
 
566
  case 'item_name_mismatch' :
567
 
568
+ $message = sprintf( __( 'This appears to be an invalid license key for %s.' ), ARVE_SLUG );
569
  break;
570
 
571
  case 'no_activations_left':
578
  $message = __( 'An error occurred, please try again.', ARVE_SLUG );
579
  break;
580
  }
581
+ }
 
582
  }
583
 
584
+ if ( empty( $message ) ) {
585
+
586
+ if ( empty( $license_data->license ) ) {
587
+
588
+ $textarea_dump = arve_textarea_dump( $response );
589
+
590
+ $message = sprintf(
591
+ __( 'Error. Please report the following:<br> %s', ARVE_SLUG ),
592
+ $textarea_dump
593
+ );
594
+ } else {
595
+ $message = $license_data->license;
596
+ }
597
  }
598
 
599
  return $message;
600
  }
601
+
602
+ function arve_dump( $var ) {
603
+ ob_start();
604
+ var_dump( $var );
605
+ return ob_get_clean();
606
+ }
607
+
608
+ function arve_textarea_dump( $var ) {
609
+ return sprintf( '<textarea style="width: 100%; height: 70vh;">%s</textarea>', esc_textarea( arve_dump( $var ) ) );
610
+ }
admin/html-debug-info.php CHANGED
File without changes
admin/html-settings-page.php CHANGED
@@ -13,18 +13,56 @@
13
  */
14
 
15
  $options = arve_get_options();
16
- $ad = arve_get_pro_ad();
17
  ?>
 
18
  <div class="wrap arve-options-wrap">
19
 
20
- <h2><?php esc_html_e( get_admin_page_title() ); ?></h2>
 
 
 
 
 
 
 
 
 
 
 
21
 
22
- <?php
23
- if ( $ad ) {
24
- echo '<div class="notice is-dismissible updated">' . $ad . '</div>';
25
- } ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
 
27
  <h2 class="nav-tab-wrapper arve-settings-tabs"></h2>
 
28
  <form class="arve-options-form" method="post" action="options.php">
29
 
30
  <?php do_settings_sections( ARVE_SLUG ); ?>
13
  */
14
 
15
  $options = arve_get_options();
 
16
  ?>
17
+
18
  <div class="wrap arve-options-wrap">
19
 
20
+ <?php if ( arve_display_pro_ad() ) : ?>
21
+
22
+ <div class="arve-settings-page-ad notice is-dismissible updated">
23
+
24
+ <button type="button" class="notice-dismiss"><span class="screen-reader-text">Dismiss this notice.</span></button>
25
+
26
+ <div class="arve-corner-spacer"></div>
27
+
28
+ <h3>Please rate</h3>
29
+ It would really help to get a <a href="https://wordpress.org/support/plugin/advanced-responsive-video-embedder/reviews/#new-post">5 star rating from you.</a>
30
+
31
+ <h3><a href="https://nextgenthemes.com/plugins/arve-pro/">Pro Addon</a></h3>
32
 
33
+ <p>Limited time price experiment: <strong><big>44% off</big></strong> first year with discount code <code>settingspage</code></p>
34
+
35
+ <p>This plugin is financed by purchases of the <a href="https://nextgenthemes.com/plugins/arve-pro/">Pro Addon</a>. The development and support of this plugins has become a job for me so I hope you understand that I can not make all features gratis and that you <a href="https://nextgenthemes.com/plugins/arve-pro/">purchase it</a> to get extra features and support the development.</p>
36
+
37
+ <ul>
38
+ <li><strong>Disable links in embeds (killer feature!)</strong><br>
39
+ For example: Clicking on a title in a YouTube embed will not open a new popup/tab/window. <strong>Prevent video hosts to lead your visitors away from your site!</strong> Note this also breaks sharing functionality and is not possible when the provider requires flash. Try it on <a href="https://nextgenthemes.com/plugins/arve-pro/">this page</a>. Right click on links still works.</li>
40
+ <li><strong>Lazyload mode</strong><br>
41
+ Make your site load <strong>faster</strong> by loading only a image instead of the entire video player on pageload. </li>
42
+ <li><strong>Lazyload -> Lightbox</strong><br>
43
+ Shows the Video in a Lightbox after clicking a preview image</li>
44
+ <li><strong>Link -> Lightbox</strong><br>
45
+ Use simple links as triggers for lightboxed videos</li>
46
+ <li>Automatic or custom thumbnail images</li>
47
+ <li>Automatic or custom titles on top of your thumbnails</li>
48
+ <li>'Expand on click' feature</li>
49
+ <li>3 hover styles</li>
50
+ <li>2 play icon styles to choose from</li>
51
+ <li>Responsive thumbnails using cutting edge HTML5 technology</li>
52
+ <li><strong>Feel good about yourself</strong><br>
53
+ for supporting my 5+ years work on this plugin. Tons of hours, weekends … always worked on improving it.</li>
54
+ <li>Show the latest video of a YouTube channel by using the channel URL (updated/cached hourly)</li>
55
+ <li><strong><a href="https://nextgenthemes.com/plugins/arve-pro/">Get the ARVE Pro Addon</a></strong></li>
56
+ </ul>
57
+
58
+ </div>
59
+
60
+ <?php endif; ?>
61
+
62
+ <h2><?php esc_html_e( get_admin_page_title() ); ?></h2>
63
 
64
  <h2 class="nav-tab-wrapper arve-settings-tabs"></h2>
65
+
66
  <form class="arve-options-form" method="post" action="options.php">
67
 
68
  <?php do_settings_sections( ARVE_SLUG ); ?>
admin/index.php CHANGED
File without changes
admin/pro-ad.html ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <ul class="arve-list-small">
2
+ <li><strong>Disable links in embeds</strong><br>
3
+ For example: Clicking on a title in a YouTube embed will not open a new popup/tab/window. <strong>Prevent video hosts to lead your visitors away from your site!</strong> Note this also breaks sharing functionality and is not possible when the provider requires flash.</li>
4
+ <li><strong>Lazyload mode</strong><br>
5
+ Make your site load <strong>faster</strong> by loading only a image instead of the entire video player on pageload. </li>
6
+ <li><strong>Lazyload -> Lightbox</strong><br>
7
+ Shows the Video in a Lightbox after clicking a preview image</li>
8
+ <li><strong>Link -> Lightbox</strong><br>
9
+ Use simple links as triggers for lightboxed videos</li>
10
+ <li>Automatic or custom titles and thumbnails images</li>
11
+ <li>'Expand on click' feature</li>
12
+ <li>Show the latest video of a YouTube channel by using the channel URL (updated/cached hourly)</li>
13
+ <li>And more, for a <strong><a href="https://nextgenthemes.com/plugins/arve-pro/">complete feature list</a></strong> and purchase please visit the <strong><a href="https://nextgenthemes.com/plugins/arve-pro/">official site</a></strong></li>
14
+ </ul>
admin/product-images/arve.svg CHANGED
File without changes
advanced-responsive-video-embedder.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php
2
  /**
3
  * Plugin Name: ARVE Advanced Responsive Video Embedder
4
- * Plugin URI: https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/
5
  * Description: Easy responsive video embeds via URL (like WordPress) or Shortcodes. Supports almost anything you can imagine.
6
- * Version: 8.5.0
7
  * Author: Nicolas Jonas
8
  * Author URI: https://nextgenthemes.com
9
  * License: GPL-3.0
@@ -19,37 +19,32 @@ if ( ! defined( 'WPINC' ) ) {
19
  }
20
 
21
  define( 'ARVE_SLUG', 'advanced-responsive-video-embedder' );
22
- define( 'ARVE_VERSION', '8.5.0' );
23
  define( 'ARVE_PRO_VERSION_REQUIRED', '4.0.0' );
24
 
25
  define( 'ARVE_URL', plugin_dir_url( __FILE__ ) );
26
  define( 'ARVE_PUBLIC_URL', ARVE_URL . 'public/' );
27
  define( 'ARVE_ADMIN_URL', ARVE_URL . 'admin/' );
28
 
 
29
  define( 'ARVE_NUM_TRACKS', 10 );
30
 
31
- if( ! class_exists( 'EDD_SL_Plugin_Updater' ) ) {
32
- require_once plugin_dir_path( __FILE__ ) . 'admin/class-edd-sl-plugin-updater.php';
33
- }
34
-
35
  arve_init();
36
- #add_action( 'init', 'arve_init' ); # TODO ??
37
 
38
  function arve_init() {
39
 
40
  add_option( 'arve_install_date', current_time( 'timestamp' ) );
41
 
42
- require_once plugin_dir_path( __FILE__ ) . 'admin/class-arve-admin-notice-factory.php';
43
 
44
  if ( version_compare( PHP_VERSION, '5.3', '<' ) ) {
45
  add_action( 'admin_init', 'arve_php_outdated_message' );
46
  return;
47
  }
48
 
49
- if ( ! has_action( 'admin_menu', 'nextgenthemes_menus' ) ) {
50
- require_once __DIR__ . '/admin/functions-licensing.php';
51
- }
52
-
53
  require_once __DIR__ . '/admin/functions-admin.php';
54
  require_once __DIR__ . '/public/functions-enqueue.php';
55
  require_once __DIR__ . '/public/functions-html-output.php';
@@ -70,6 +65,7 @@ function arve_init() {
70
  add_action( 'plugins_loaded', 'arve_oembed_remove_providers', 998 );
71
  add_action( 'wp_enqueue_scripts', 'arve_register_styles', 0 );
72
  add_action( 'wp_enqueue_scripts', 'arve_register_scripts', 0 );
 
73
  add_action( 'wp_video_shortcode_override', 'arve_wp_video_shortcode_override', 10, 4 );
74
  add_filter( 'widget_text', 'do_shortcode' );
75
  add_filter( 'language_attributes', 'arve_html_id' );
@@ -82,8 +78,8 @@ function arve_init() {
82
  add_filter( 'shortcode_atts_arve', 'arve_sc_filter_iframe_fallback', -4 );
83
  add_filter( 'shortcode_atts_arve', 'arve_sc_filter_validate', -2 );
84
  add_filter( 'shortcode_atts_arve', 'arve_sc_filter_get_media_gallery_thumbnail', 0 );
 
85
  add_filter( 'shortcode_atts_arve', 'arve_sc_filter_attr', 20 );
86
- add_filter( 'shortcode_atts_arve', 'arve_sc_filter_set_fixed_dimensions', 20 );
87
  add_filter( 'shortcode_atts_arve', 'arve_sc_filter_build_tracks_html', 20 );
88
 
89
  # Admin Hooks
1
  <?php
2
  /**
3
  * Plugin Name: ARVE Advanced Responsive Video Embedder
4
+ * Plugin URI: https://nextgenthemes.com/plugins/arve-pro/
5
  * Description: Easy responsive video embeds via URL (like WordPress) or Shortcodes. Supports almost anything you can imagine.
6
+ * Version: 8.9.9
7
  * Author: Nicolas Jonas
8
  * Author URI: https://nextgenthemes.com
9
  * License: GPL-3.0
19
  }
20
 
21
  define( 'ARVE_SLUG', 'advanced-responsive-video-embedder' );
22
+ define( 'ARVE_VERSION', '8.9.9' );
23
  define( 'ARVE_PRO_VERSION_REQUIRED', '4.0.0' );
24
 
25
  define( 'ARVE_URL', plugin_dir_url( __FILE__ ) );
26
  define( 'ARVE_PUBLIC_URL', ARVE_URL . 'public/' );
27
  define( 'ARVE_ADMIN_URL', ARVE_URL . 'admin/' );
28
 
29
+ define( 'ARVE_PATH', plugin_dir_path( __FILE__ ) );
30
  define( 'ARVE_NUM_TRACKS', 10 );
31
 
32
+ #add_action( 'init', 'arve_init' );
 
 
 
33
  arve_init();
 
34
 
35
  function arve_init() {
36
 
37
  add_option( 'arve_install_date', current_time( 'timestamp' ) );
38
 
39
+ require_once __DIR__ . '/admin/class-arve-admin-notice-factory.php';
40
 
41
  if ( version_compare( PHP_VERSION, '5.3', '<' ) ) {
42
  add_action( 'admin_init', 'arve_php_outdated_message' );
43
  return;
44
  }
45
 
46
+ require_once __DIR__ . '/admin/class-nextgenthemes-plugin-updater.php';
47
+ require_once __DIR__ . '/admin/functions-licensing.php';
 
 
48
  require_once __DIR__ . '/admin/functions-admin.php';
49
  require_once __DIR__ . '/public/functions-enqueue.php';
50
  require_once __DIR__ . '/public/functions-html-output.php';
65
  add_action( 'plugins_loaded', 'arve_oembed_remove_providers', 998 );
66
  add_action( 'wp_enqueue_scripts', 'arve_register_styles', 0 );
67
  add_action( 'wp_enqueue_scripts', 'arve_register_scripts', 0 );
68
+ add_action( 'wp_enqueue_scripts', 'arve_maybe_enqueue_assets' );
69
  add_action( 'wp_video_shortcode_override', 'arve_wp_video_shortcode_override', 10, 4 );
70
  add_filter( 'widget_text', 'do_shortcode' );
71
  add_filter( 'language_attributes', 'arve_html_id' );
78
  add_filter( 'shortcode_atts_arve', 'arve_sc_filter_iframe_fallback', -4 );
79
  add_filter( 'shortcode_atts_arve', 'arve_sc_filter_validate', -2 );
80
  add_filter( 'shortcode_atts_arve', 'arve_sc_filter_get_media_gallery_thumbnail', 0 );
81
+ add_filter( 'shortcode_atts_arve', 'arve_sc_filter_set_fixed_dimensions', 15 );
82
  add_filter( 'shortcode_atts_arve', 'arve_sc_filter_attr', 20 );
 
83
  add_filter( 'shortcode_atts_arve', 'arve_sc_filter_build_tracks_html', 20 );
84
 
85
  # Admin Hooks
index.php DELETED
@@ -1 +0,0 @@
1
- <?php // Silence is golden
 
public/arve.css CHANGED
File without changes
public/arve.js CHANGED
@@ -2,9 +2,21 @@
2
  'use strict';
3
 
4
  function remove_unwanted_stuff() {
5
- $('.arve-wrapper').find('p, .fluid-width-video-wrapper, .fluid-vids').contents().unwrap();
6
  $('.arve-wrapper br').remove();
7
  $('.arve-iframe, .arve-video').removeAttr('width height style');
 
 
 
 
 
 
 
 
 
 
 
 
8
  };
9
 
10
  function global_id() {
@@ -31,7 +43,7 @@
31
  global_id();
32
 
33
  $( document ).ready( function() {
34
- remove_unwanted_stuff();
35
  global_id();
36
  } );
37
 
2
  'use strict';
3
 
4
  function remove_unwanted_stuff() {
5
+ $('.arve-wrapper').find('p, .video-wrap, .fluid-width-video-wrapper, .fluid-vids').contents().unwrap();
6
  $('.arve-wrapper br').remove();
7
  $('.arve-iframe, .arve-video').removeAttr('width height style');
8
+
9
+ $('.wp-block-embed').each( function( index ) {
10
+
11
+ if ( $(this).has('.arve-wrapper') ) {
12
+
13
+ $(this).removeClass( 'wp-embed-aspect-16-9 wp-has-aspect-ratio' );
14
+
15
+ if ( $(this).has('.wp-block-embed__wrapper') ) {
16
+ $(this).find('.wp-block-embed__wrapper').contents().unwrap();
17
+ }
18
+ }
19
+ } );
20
  };
21
 
22
  function global_id() {
43
  global_id();
44
 
45
  $( document ).ready( function() {
46
+ remove_unwanted_stuff();
47
  global_id();
48
  } );
49
 
public/arve.min.css CHANGED
@@ -1 +1 @@
1
- #arve .arve-wrapper,#tinymce .arve-wrapper{display:block;margin-bottom:1.5em;width:100%}#arve .arve-wrapper::after,#tinymce .arve-wrapper::after{content:"";display:table;clear:both}#arve .arve-wrapper.alignright,#tinymce .arve-wrapper.alignright{margin-top:.4em;margin-left:1.5em}#arve .arve-wrapper.alignleft,#tinymce .arve-wrapper.alignleft{margin-top:.4em;margin-right:1.5em}#arve .arve-embed-container,#tinymce .arve-embed-container{position:relative;display:block;padding:0;padding-bottom:56.25%;margin:0;height:0;overflow:hidden}#arve .arve-iframe,#arve .arve-play-btn,#arve .arve-thumbnail,#tinymce .arve-iframe,#tinymce .arve-play-btn,#tinymce .arve-thumbnail{position:absolute;padding:0;margin:0;top:0;left:0;bottom:0;height:100%;width:100%;border:0}#arve .arve-video,#tinymce .arve-video{padding:0;margin:0;width:100%}#arve .arve-promote-link,#tinymce .arve-promote-link{float:right;font-family:"Open Sans","Sagoe UI",Arvo,Lato,Arial,sans-serif;font-size:.8em}.arve-hidden{display:none!important}/*# sourceMappingURL=arve.min.css.map */
1
+ #arve .arve-wrapper,#tinymce .arve-wrapper{display:block;margin-bottom:1.5em;width:100%}#arve .arve-wrapper::after,#tinymce .arve-wrapper::after{content:"";display:table;clear:both}#arve .arve-wrapper.alignright,#tinymce .arve-wrapper.alignright{margin-top:.4em;margin-left:1.5em}#arve .arve-wrapper.alignleft,#tinymce .arve-wrapper.alignleft{margin-top:.4em;margin-right:1.5em}#arve .arve-embed-container,#tinymce .arve-embed-container{position:relative;display:block;padding:0;padding-bottom:56.25%;margin:0;height:0;overflow:hidden}#arve .arve-iframe,#arve .arve-play-btn,#arve .arve-thumbnail,#tinymce .arve-iframe,#tinymce .arve-play-btn,#tinymce .arve-thumbnail{position:absolute;padding:0;margin:0;top:0;left:0;bottom:0;height:100%;width:100%;border:0}#arve .arve-video,#tinymce .arve-video{padding:0;margin:0;width:100%}#arve .arve-promote-link,#tinymce .arve-promote-link{float:right;font-family:"Open Sans","Sagoe UI",Arvo,Lato,Arial,sans-serif;font-size:.8em}.arve-hidden{display:none!important}
public/arve.min.css.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"sources":["public/arve.css"],"names":[],"mappings":"AAAA,oBACA,uBACC,QAAS,MACT,cAAe,MACf,MAAO,KAGR,2BACA,8BACC,QAAS,GACT,QAAS,MACT,MAAO,KAGR,+BACA,kCACC,WAAY,KACZ,YAAa,MAGd,8BACA,iCACC,WAAY,KACZ,aAAc,MAGf,4BACA,+BACC,SAAU,SACV,QAAS,MACT,QAAS,EACT,eAAgB,OAChB,OAAQ,EACR,OAAQ,EACR,SAAU,OAOX,mBAFA,qBAFA,sBAKA,sBAFA,wBAFA,yBAKC,SAAU,SACV,QAAS,EACT,OAAQ,EACR,IAAK,EACL,KAAM,EACN,OAAQ,EACR,OAAQ,KACR,MAAO,KACP,OAAQ,EAGT,kBACA,qBACC,QAAS,EACT,OAAQ,EACR,MAAO,KAGR,yBACA,4BACC,MAAO,MACP,YAAa,WAAW,CAAE,UAAU,CAAE,IAAM,CAAE,IAAM,CAAE,KAAK,CAAE,WAC7D,UAAW,KAGZ,aACC,QAAS"}
 
public/arve.min.js CHANGED
@@ -1 +1 @@
1
- !function(e){"use strict";function r(){e(".arve-wrapper").find("p, .fluid-width-video-wrapper, .fluid-vids").contents().unwrap(),e(".arve-wrapper br").remove(),e(".arve-iframe, .arve-video").removeAttr("width height style")}function t(){e('html[id="arve"]').length||(e("html[id]").length<=0?e("html").attr("id","arve"):e("body[id]").length<=0?e("body").attr("id","arve"):e("body").wrapInner('<div id="arve">'))}r(),t(),e(document).ready(function(){r(),t()})}(jQuery);
1
+ !function(e){"use strict";function r(){e(".arve-wrapper").find("p, .video-wrap, .fluid-width-video-wrapper, .fluid-vids").contents().unwrap(),e(".arve-wrapper br").remove(),e(".arve-iframe, .arve-video").removeAttr("width height style"),e('[class^="wp-block-embed"], [class=*" wp-block-embed"]').each(function(r){e(this).has(".arve-wrapper")&&(e(this).removeClass("wp-embed-aspect-16-9 wp-has-aspect-ratio"),e(this).has(".wp-block-embed__wrapper")&&e(this).find(".wp-block-embed__wrapper").contents().unwrap())})}function t(){e('html[id="arve"]').length||(e("html[id]").length<=0?e("html").attr("id","arve"):e("body[id]").length<=0?e("body").attr("id","arve"):e("body").wrapInner('<div id="arve">'))}r(),t(),e(document).ready(function(){r(),t()})}(jQuery);
public/functions-enqueue.php CHANGED
@@ -24,3 +24,16 @@ function arve_register_scripts() {
24
  true
25
  );
26
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  true
25
  );
26
  }
27
+
28
+ function arve_maybe_enqueue_assets() {
29
+
30
+ $options = arve_get_options();
31
+
32
+ if ( $options['always_enqueue_assets'] ) {
33
+ wp_enqueue_style( ARVE_SLUG );
34
+ wp_enqueue_script( ARVE_SLUG );
35
+
36
+ wp_enqueue_style( 'arve-pro' );
37
+ wp_enqueue_script( 'arve-pro' );
38
+ }
39
+ }
public/functions-html-output.php CHANGED
@@ -80,6 +80,10 @@ function arve_build_meta_html( $atts ) {
80
  $meta .= sprintf( '<meta itemprop="uploadDate" content="%s">', esc_attr( $atts['upload_date'] ) );
81
  }
82
 
 
 
 
 
83
  if( ! empty( $atts['img_src'] ) ) :
84
 
85
  if( in_array( $atts['mode'], array( 'lazyload', 'lazyload-lightbox' ) ) ) {
@@ -128,7 +132,7 @@ function arve_build_promote_link_html( $arve_link ) {
128
  if ( $arve_link ) {
129
  return sprintf(
130
  '<a href="%s" title="%s" class="arve-promote-link" target="_blank">%s</a>',
131
- esc_url( 'https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/' ),
132
  esc_attr( __( 'Embedded with ARVE Advanced Responsive Video Embedder WordPress plugin', ARVE_SLUG) ),
133
  esc_html__( 'ARVE', ARVE_SLUG )
134
  );
@@ -200,6 +204,17 @@ function arve_create_iframe_tag( $a ) {
200
 
201
  function arve_create_video_tag( $a ) {
202
 
 
 
 
 
 
 
 
 
 
 
 
203
 
204
  $html = sprintf(
205
  '<video%s>%s%s</video>',
80
  $meta .= sprintf( '<meta itemprop="uploadDate" content="%s">', esc_attr( $atts['upload_date'] ) );
81
  }
82
 
83
+ if ( ! empty( $atts['duration'] ) ) {
84
+ $meta .= sprintf( '<meta itemprop="duration" content="PT%s">', esc_attr( $atts['duration'] ) );
85
+ }
86
+
87
  if( ! empty( $atts['img_src'] ) ) :
88
 
89
  if( in_array( $atts['mode'], array( 'lazyload', 'lazyload-lightbox' ) ) ) {
132
  if ( $arve_link ) {
133
  return sprintf(
134
  '<a href="%s" title="%s" class="arve-promote-link" target="_blank">%s</a>',
135
+ esc_url( 'https://nextgenthemes.com/plugins/arve-pro/' ),
136
  esc_attr( __( 'Embedded with ARVE Advanced Responsive Video Embedder WordPress plugin', ARVE_SLUG) ),
137
  esc_html__( 'ARVE', ARVE_SLUG )
138
  );
204
 
205
  function arve_create_video_tag( $a ) {
206
 
207
+ $html = sprintf(
208
+ '<video%s>%s%s</video>',
209
+ arve_attr( $a['video_attr'] ),
210
+ $a['video_sources_html'],
211
+ $a['video_tracks_html']
212
+ );
213
+
214
+ return apply_filters( 'arve_video_tag', $html, $a, $a['video_attr'] );
215
+ }
216
+
217
+ function arve_create_object_tag( $a ) {
218
 
219
  $html = sprintf(
220
  '<video%s>%s%s</video>',
public/functions-misc.php CHANGED
File without changes
public/functions-shortcode-data.php CHANGED
@@ -10,7 +10,7 @@ function arve_get_default_aspect_ratio( $aspect_ratio, $provider ) {
10
 
11
  function arve_get_html5_attributes() {
12
 
13
- return array( 'mp4', 'm4v', 'webm', 'ogv' );
14
  }
15
 
16
  function arve_url_query_array( $url ) {
@@ -28,12 +28,17 @@ function arve_url_query_array( $url ) {
28
 
29
  function arve_build_iframe_src( $atts ) {
30
 
31
- $id = $atts['id'];
32
- $lang = $atts['lang'];
33
- $provider = $atts['provider'];
34
-
35
  $properties = arve_get_host_properties();
36
 
 
 
 
 
 
37
  if ( isset( $properties[ $provider ]['embed_url'] ) ) {
38
  $pattern = $properties[ $provider ]['embed_url'];
39
  } else {
@@ -110,9 +115,9 @@ function arve_aspect_ratio_fixes( $aspect_ratio, $provider, $mode ) {
110
  return $aspect_ratio;
111
  }
112
 
113
- function arve_add_autoplay_query_arg( $src, $atts ) {
114
 
115
- switch ( $atts['provider'] ) {
116
  case 'alugha':
117
  case 'archiveorg':
118
  case 'dailymotion':
@@ -157,6 +162,7 @@ function arve_add_autoplay_query_arg( $src, $atts ) {
157
  $on = add_query_arg( 'player_autoplay', 'true', $src );
158
  $off = add_query_arg( 'player_autoplay', 'false', $src );
159
  break;
 
160
  case 'iframe':
161
  # We are spamming all kinds of autoplay parameters here in hope of a effect
162
  $on = add_query_arg( array(
@@ -172,6 +178,7 @@ function arve_add_autoplay_query_arg( $src, $atts ) {
172
  'player_autoStart' => 'false',
173
  ), $src );
174
  break;
 
175
  default:
176
  # Do nothing for providers that to not support autoplay or fail with parameters
177
  $on = $src;
@@ -179,7 +186,7 @@ function arve_add_autoplay_query_arg( $src, $atts ) {
179
  break;
180
  }
181
 
182
- if( $atts['autoplay'] ) {
183
  return $on;
184
  } else {
185
  return $off;
10
 
11
  function arve_get_html5_attributes() {
12
 
13
+ return array( 'mp4', 'm4v', 'webm', 'ogv', 'ogg', 'ogm' );
14
  }
15
 
16
  function arve_url_query_array( $url ) {
28
 
29
  function arve_build_iframe_src( $atts ) {
30
 
31
+ $id = $atts['id'];
32
+ $lang = $atts['lang'];
33
+ $provider = $atts['provider'];
34
+ $options = arve_get_options();
35
  $properties = arve_get_host_properties();
36
 
37
+ if ( $options['youtube_nocookie'] ) {
38
+ $properties['youtube']['embed_url'] = 'https://www.youtube-nocookie.com/embed/%s';
39
+ $properties['youtubelist']['embed_url'] = 'https://www.youtube-nocookie.com/embed/videoseries?list=%s';
40
+ }
41
+
42
  if ( isset( $properties[ $provider ]['embed_url'] ) ) {
43
  $pattern = $properties[ $provider ]['embed_url'];
44
  } else {
115
  return $aspect_ratio;
116
  }
117
 
118
+ function arve_add_autoplay_query_arg( $src, $a ) {
119
 
120
+ switch ( $a['provider'] ) {
121
  case 'alugha':
122
  case 'archiveorg':
123
  case 'dailymotion':
162
  $on = add_query_arg( 'player_autoplay', 'true', $src );
163
  $off = add_query_arg( 'player_autoplay', 'false', $src );
164
  break;
165
+ /*
166
  case 'iframe':
167
  # We are spamming all kinds of autoplay parameters here in hope of a effect
168
  $on = add_query_arg( array(
178
  'player_autoStart' => 'false',
179
  ), $src );
180
  break;
181
+ */
182
  default:
183
  # Do nothing for providers that to not support autoplay or fail with parameters
184
  $on = $src;
186
  break;
187
  }
188
 
189
+ if( $a['autoplay'] ) {
190
  return $on;
191
  } else {
192
  return $off;
public/functions-shortcode-filters.php CHANGED
@@ -1,28 +1,56 @@
1
  <?php
2
 
3
- function arve_sc_filter_attr( $a ) {
4
 
5
- $align_class = empty( $a['align'] ) ? '' : ' align' . $a['align'];
 
 
6
 
7
- foreach ( array( 'id', 'mp4', 'm4v', 'webm', 'ogv', 'url', 'webtorrent' ) as $att ) {
 
8
 
9
- if ( ! empty( $a[ $att ] ) && is_string( $a[ $att ] ) ) {
 
 
 
10
 
11
- $wrapper_id = preg_replace( '/[^-a-zA-Z0-9]+/', '', $a[ $att ] );
12
- $wrapper_id = str_replace(
13
- array( 'https', 'http', 'wp-contentuploads' ),
14
- '',
15
- $wrapper_id
16
- );
17
- $wrapper_id = 'video-' . $wrapper_id;
18
  break;
19
  }
20
  }
21
 
22
  if ( empty( $wrapper_id ) ) {
23
- $a['wrapper_id_error'] = new WP_Error( 'embed_id', __( 'Element ID could not be build, please report this bug.', ARVE_SLUG ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  }
25
 
 
 
26
  $a['wrapper_attr'] = array(
27
  'class' => "arve-wrapper$align_class",
28
  'data-mode' => $a['mode'],
@@ -37,16 +65,19 @@ function arve_sc_filter_attr( $a ) {
37
  if( 'html5' == $a['provider'] ) {
38
 
39
  $a['video_attr'] = array(
40
- 'autoplay' => in_array( $a['mode'], array( 'lazyload', 'lazyload-lightbox', 'link-lightbox' ) ) ? false : $a['autoplay'],
 
 
 
 
 
 
 
 
 
 
41
  'class' => 'arve-video fitvidsignore',
42
- 'controls' => $a['controls'],
43
- 'loop' => $a['loop'],
44
- 'poster' => isset( $a['img_src'] ) ? $a['img_src'] : false,
45
- 'preload' => $a['preload'],
46
- 'src' => isset( $a['video_src'] ) ? $a['video_src'] : false,
47
  'muted' => $a['muted'],
48
- 'width' => ! empty( $a['width'] ) ? $a['width'] : false,
49
- 'height' => ! empty( $a['height'] ) ? $a['height'] : false,
50
  'playsinline' => $a['playsinline'],
51
  'webkit-playsinline' => $a['playsinline'],
52
  );
@@ -54,7 +85,7 @@ function arve_sc_filter_attr( $a ) {
54
  } else {
55
 
56
  $properties = arve_get_host_properties();
57
-
58
  $iframe_src = arve_build_iframe_src( $a );
59
  $iframe_src = arve_add_query_args_to_iframe_src( $iframe_src, $a );
60
  $iframe_src = arve_add_autoplay_query_arg( $iframe_src, $a );
@@ -63,70 +94,67 @@ function arve_sc_filter_attr( $a ) {
63
  $iframe_src .= '#t=' . (int) $a['start'];
64
  }
65
 
66
- $iframe_sandbox = 'allow-scripts allow-same-origin allow-popups';
 
 
 
 
 
 
 
 
 
 
 
67
 
68
  if ( 'vimeo' == $a['provider'] ) {
69
- $iframe_sandbox .= ' allow-forms';
70
  }
71
 
 
 
72
  if ( null === $a['disable_flash'] && $properties[ $a['provider'] ]['requires_flash'] ) {
73
- $iframe_sandbox = false;
74
  }
75
-
76
- $a['iframe_attr'] = array(
77
- 'allowfullscreen' => '',
78
- 'class' => 'arve-iframe fitvidsignore',
79
- 'frameborder' => '0',
80
- 'name' => $a['iframe_name'],
81
- 'scrolling' => 'no',
82
- 'src' => $iframe_src,
83
- 'sandbox' => $iframe_sandbox,
84
- 'width' => ! empty( $a['width'] ) ? $a['width'] : false,
85
- 'height' => ! empty( $a['height'] ) ? $a['height'] : false,
86
- );
87
  }
88
 
89
  return $a;
90
  }
91
 
92
- function arve_sc_filter_validate( $atts ) {
93
 
94
- if ( ! empty( $atts['url'] ) && ! arve_validate_url( $atts['url'] ) ) {
95
- $atts['url'] = new WP_Error( 'thumbnail', sprintf( __( '<code>%s</code> is not a valid url', ARVE_SLUG ), esc_html( $atts['url'] ) ) );
96
- }
97
-
98
- $atts['align'] = arve_validate_align( $atts['align'], $atts['provider'] );
99
 
100
- $atts['mode'] = arve_validate_mode( $atts['mode'], $atts['provider'] );
101
 
102
- $atts['autoplay'] = arve_validate_bool( $atts['autoplay'], 'autoplay' );
103
- $atts['arve_link'] = arve_validate_bool( $atts['arve_link'], 'arve_link' );
104
- $atts['loop'] = arve_validate_bool( $atts['loop'], 'loop' );
105
- $atts['controls'] = arve_validate_bool( $atts['controls'], 'controls' );
106
- $atts['disable_flash'] = arve_validate_bool( $atts['disable_flash'], 'disable_flash' );
107
- $atts['muted'] = arve_validate_bool( $atts['muted'], 'muted' );
108
- $atts['playsinline'] = arve_validate_bool( $atts['playsinline'], 'playsinline' );
109
 
110
- $atts['maxwidth'] = (int) $atts['maxwidth'];
111
- $atts['maxwidth'] = (int) arve_maxwidth_when_aligned( $atts['maxwidth'], $atts['align'] );
112
 
113
- $atts['id'] = arve_id_fixes( $atts['id'], $atts['provider'] );
114
 
115
- $atts['aspect_ratio'] = arve_get_default_aspect_ratio( $atts['aspect_ratio'], $atts['provider'] );
116
- $atts['aspect_ratio'] = arve_aspect_ratio_fixes( $atts['aspect_ratio'], $atts['provider'], $atts['mode'] );
117
- $atts['aspect_ratio'] = arve_validate_aspect_ratio( $atts['aspect_ratio'] );
118
 
119
- return $atts;
120
  }
121
 
122
- function arve_sc_filter_set_fixed_dimensions( $atts ) {
123
 
124
  $width = 480;
125
 
126
- $atts['width'] = $width;
127
- $atts['height'] = arve_calculate_height( $width, $atts['aspect_ratio'] );
128
 
129
- return $atts;
130
  }
131
 
132
  function arve_sc_filter_sanitise( $atts ) {
@@ -137,12 +165,10 @@ function arve_sc_filter_sanitise( $atts ) {
137
 
138
  foreach ( $atts as $key => $value ) {
139
 
140
- if ( null === $value ) {
141
- continue;
142
- }
143
 
144
- if( ! is_string( $value ) ) {
145
- $atts[ $key ] = arve_error( sprintf( __( '<code>%s</code> is not a string. Only Strings should be passed to the shortcode function', ARVE_SLUG ), $key ) );
146
  }
147
  }
148
 
@@ -309,24 +335,36 @@ function arve_sc_filter_detect_youtube_playlist( $atts ) {
309
  return $atts;
310
  }
311
 
 
 
 
 
 
 
 
 
 
 
 
 
312
  function arve_sc_filter_detect_html5( $atts ) {
313
 
314
  if( ! empty( $atts['provider'] ) && 'html5' != $atts['provider'] ) {
315
  return $atts;
316
  }
317
 
318
- $html5_extensions = arve_get_html5_attributes();
319
- $html5_extensions[] = 'url';
320
 
321
- foreach ( $html5_extensions as $ext ):
322
 
323
- if ( ! empty( $atts[ $ext ] ) && $type = arve_check_filetype( $atts[ $ext ], $ext) ) {
324
 
325
  if ( arve_starts_with( $atts[ $ext ], 'https://www.dropbox.com' ) ) {
326
  $atts[ $ext ] = add_query_arg( 'dl', 1, $atts[ $ext ] );
327
  }
328
 
329
- $atts['video_sources'][ $type ] = $atts[ $ext ];
330
  }
331
 
332
  if ( ! empty( $atts['url'] ) && arve_ends_with( $atts['url'], ".$ext" ) ) {
@@ -347,19 +385,11 @@ function arve_sc_filter_detect_html5( $atts ) {
347
 
348
  endforeach;
349
 
350
- if( empty( $atts['video_src'] ) && empty( $atts['video_sources'] ) ) {
351
  return $atts;
352
  }
353
 
354
  $atts['provider'] = 'html5';
355
- $atts['video_sources_html'] = '';
356
-
357
- if ( isset( $atts['video_sources'] ) ) {
358
-
359
- foreach ( $atts['video_sources'] as $key => $value ) {
360
- $atts['video_sources_html'] .= sprintf( '<source type="%s" src="%s">', $key, $value );
361
- }
362
- }
363
 
364
  return $atts;
365
  }
@@ -392,21 +422,21 @@ function arve_sc_filter_build_tracks_html( $atts ) {
392
  return $atts;
393
  }
394
 
395
- preg_match( '#-(captions|chapters|descriptions|metadata|subtitles)-([a-z]{2}).vtt$#i', $atts[ "track_{$n}" ], $matches );
396
 
397
  if ( empty( $matches[1] ) ) {
398
  $atts[ "track_{$n}" ] = new WP_Error( 'track', __( 'Track kind or language code could not detected from filename', ARVE_SLUG ) );
399
  return $atts;
400
  }
401
 
402
- $label = empty( $atts[ "track_{$n}_label" ] ) ? arve_get_language_name_from_code( $matches[2] ) : $atts[ "track_{$n}_label" ];
403
 
404
  $attr = array(
405
  'default' => ( 1 === $n ) ? true : false,
406
- 'kind' => $matches[1],
407
  'label' => $label,
408
  'src' => $atts[ "track_{$n}" ],
409
- 'srclang' => $matches[2],
410
  );
411
 
412
  $atts['video_tracks_html'] .= sprintf( '<track%s>', arve_attr( $attr) );
1
  <?php
2
 
3
+ function arve_load_vimeo_api( $a ) {
4
 
5
+ if ( true ) {
6
+ require_once ARVE_PATH . '/vendor/autoload.php';
7
+ }
8
 
9
+ return $a;
10
+ }
11
 
12
+ function arve_get_wrapper_id( $a ) {
13
+
14
+ static $wrapper_ids = array();
15
+ $wrapper_id = null;
16
 
17
+ foreach ( array( 'id', 'mp4', 'm4v', 'webm', 'ogv', 'url', 'random_video_url', 'webtorrent' ) as $att ) {
18
+
19
+ if ( ! empty( $a[ $att ] ) && is_string( $a[ $att ] ) ) {
20
+ $wrapper_id = 'arve-' . $a[ $att ];
21
+ $wrapper_id = preg_replace( '/[^a-zA-Z0-9-]/', '', $wrapper_id );
 
 
22
  break;
23
  }
24
  }
25
 
26
  if ( empty( $wrapper_id ) ) {
27
+ return null;
28
+ } else {
29
+ $wrapper_ids[] = $wrapper_id;
30
+ }
31
+
32
+ if ( in_array( $wrapper_id, $wrapper_ids ) ) {
33
+ $id_counts = array_count_values( $wrapper_ids );
34
+ $id_count = $id_counts[ $wrapper_id ];
35
+
36
+ if ( $id_count >= 2 ) {
37
+ $wrapper_id .= '-' . $id_count;
38
+ }
39
+ }
40
+
41
+ return $wrapper_id;
42
+ }
43
+
44
+ function arve_sc_filter_attr( $a ) {
45
+
46
+ $wrapper_id = arve_get_wrapper_id( $a );
47
+
48
+ if ( empty( $wrapper_id ) ) {
49
+ $a['wrapper_id_error'] = new WP_Error( 'wrapper_id', __( 'Wrapper ID could not be build, please report this bug.', ARVE_SLUG ) );
50
  }
51
 
52
+ $align_class = empty( $a['align'] ) ? '' : ' align' . $a['align'];
53
+
54
  $a['wrapper_attr'] = array(
55
  'class' => "arve-wrapper$align_class",
56
  'data-mode' => $a['mode'],
65
  if( 'html5' == $a['provider'] ) {
66
 
67
  $a['video_attr'] = array(
68
+ # WP
69
+ 'autoplay' => in_array( $a['mode'], array( 'lazyload', 'lazyload-lightbox', 'link-lightbox' ) ) ? false : $a['autoplay'],
70
+ 'controls' => $a['controls'],
71
+ 'controlslist' => $a['controlslist'],
72
+ 'loop' => $a['loop'],
73
+ 'preload' => $a['preload'],
74
+ 'width' => empty( $a['width'] ) ? false : $a['width'],
75
+ 'height' => empty( $a['height'] ) ? false : $a['height'],
76
+ 'poster' => empty( $a['img_src'] ) ? false : $a['img_src'],
77
+ 'src' => empty( $a['video_src'] ) ? false : $a['video_src'],
78
+ # ARVE only
79
  'class' => 'arve-video fitvidsignore',
 
 
 
 
 
80
  'muted' => $a['muted'],
 
 
81
  'playsinline' => $a['playsinline'],
82
  'webkit-playsinline' => $a['playsinline'],
83
  );
85
  } else {
86
 
87
  $properties = arve_get_host_properties();
88
+ $options = arve_get_options();
89
  $iframe_src = arve_build_iframe_src( $a );
90
  $iframe_src = arve_add_query_args_to_iframe_src( $iframe_src, $a );
91
  $iframe_src = arve_add_autoplay_query_arg( $iframe_src, $a );
94
  $iframe_src .= '#t=' . (int) $a['start'];
95
  }
96
 
97
+ $a['iframe_attr'] = array(
98
+ 'allow' => 'autoplay; fullscreen',
99
+ 'allowfullscreen' => '',
100
+ 'class' => 'arve-iframe fitvidsignore',
101
+ 'frameborder' => '0',
102
+ 'name' => $a['iframe_name'],
103
+ 'sandbox' => 'allow-scripts allow-same-origin allow-presentation allow-popups',
104
+ 'scrolling' => 'no',
105
+ 'src' => $iframe_src,
106
+ 'width' => empty( $a['width'] ) ? false : $a['width'],
107
+ 'height' => empty( $a['height'] ) ? false : $a['height'],
108
+ );
109
 
110
  if ( 'vimeo' == $a['provider'] ) {
111
+ $a['iframe_attr']['sandbox'] .= ' allow-forms';
112
  }
113
 
114
+ $properties['iframe']['requires_flash'] = $options['iframe_flash'];
115
+
116
  if ( null === $a['disable_flash'] && $properties[ $a['provider'] ]['requires_flash'] ) {
117
+ $a['iframe_attr']['sandbox'] = false;
118
  }
 
 
 
 
 
 
 
 
 
 
 
 
119
  }
120
 
121
  return $a;
122
  }
123
 
124
+ function arve_sc_filter_validate( $a ) {
125
 
126
+ $a['align'] = arve_validate_align( $a['align'], $a['provider'] );
 
 
 
 
127
 
128
+ $a['mode'] = arve_validate_mode( $a['mode'], $a['provider'] );
129
 
130
+ $a['autoplay'] = arve_validate_bool( $a['autoplay'], 'autoplay' );
131
+ $a['arve_link'] = arve_validate_bool( $a['arve_link'], 'arve_link' );
132
+ $a['loop'] = arve_validate_bool( $a['loop'], 'loop' );
133
+ $a['controls'] = arve_validate_bool( $a['controls'], 'controls' );
134
+ $a['disable_flash'] = arve_validate_bool( $a['disable_flash'], 'disable_flash' );
135
+ $a['muted'] = arve_validate_bool( $a['muted'], 'muted' );
136
+ $a['playsinline'] = arve_validate_bool( $a['playsinline'], 'playsinline' );
137
 
138
+ $a['maxwidth'] = (int) $a['maxwidth'];
139
+ $a['maxwidth'] = (int) arve_maxwidth_when_aligned( $a['maxwidth'], $a['align'] );
140
 
141
+ $a['id'] = arve_id_fixes( $a['id'], $a['provider'] );
142
 
143
+ $a['aspect_ratio'] = arve_get_default_aspect_ratio( $a['aspect_ratio'], $a['provider'] );
144
+ $a['aspect_ratio'] = arve_aspect_ratio_fixes( $a['aspect_ratio'], $a['provider'], $a['mode'] );
145
+ $a['aspect_ratio'] = arve_validate_aspect_ratio( $a['aspect_ratio'] );
146
 
147
+ return $a;
148
  }
149
 
150
+ function arve_sc_filter_set_fixed_dimensions( $a ) {
151
 
152
  $width = 480;
153
 
154
+ $a['width'] = $width;
155
+ $a['height'] = arve_calculate_height( $width, $a['aspect_ratio'] );
156
 
157
+ return $a;
158
  }
159
 
160
  function arve_sc_filter_sanitise( $atts ) {
165
 
166
  foreach ( $atts as $key => $value ) {
167
 
168
+ $atts[ $key ] = (string) $value;
 
 
169
 
170
+ if ( '' === $value ) {
171
+ $atts[ $key ] = null;
172
  }
173
  }
174
 
335
  return $atts;
336
  }
337
 
338
+ function arve_get_video_type( $ext ) {
339
+
340
+ switch( $ext ) {
341
+ case 'ogv':
342
+ case 'ogm':
343
+ return 'video/ogg';
344
+ break;
345
+ default:
346
+ return 'video/' . $ext;
347
+ }
348
+ }
349
+
350
  function arve_sc_filter_detect_html5( $atts ) {
351
 
352
  if( ! empty( $atts['provider'] ) && 'html5' != $atts['provider'] ) {
353
  return $atts;
354
  }
355
 
356
+ $html5_extensions = arve_get_html5_attributes();
357
+ $atts['video_sources_html'] = '';
358
 
359
+ foreach ( $html5_extensions as $ext ) :
360
 
361
+ if ( ! empty( $atts[ $ext ] ) ) {
362
 
363
  if ( arve_starts_with( $atts[ $ext ], 'https://www.dropbox.com' ) ) {
364
  $atts[ $ext ] = add_query_arg( 'dl', 1, $atts[ $ext ] );
365
  }
366
 
367
+ $atts['video_sources_html'] .= sprintf( '<source type="%s" src="%s">', arve_get_video_type( $ext ), $atts[ $ext ] );
368
  }
369
 
370
  if ( ! empty( $atts['url'] ) && arve_ends_with( $atts['url'], ".$ext" ) ) {
385
 
386
  endforeach;
387
 
388
+ if( empty( $atts['video_src'] ) && empty( $atts['video_sources_html'] ) ) {
389
  return $atts;
390
  }
391
 
392
  $atts['provider'] = 'html5';
 
 
 
 
 
 
 
 
393
 
394
  return $atts;
395
  }
422
  return $atts;
423
  }
424
 
425
+ preg_match( '#-(?<type>captions|chapters|descriptions|metadata|subtitles)-(?<lang>[a-z]{2}).vtt$#i', $atts[ "track_{$n}" ], $matches );
426
 
427
  if ( empty( $matches[1] ) ) {
428
  $atts[ "track_{$n}" ] = new WP_Error( 'track', __( 'Track kind or language code could not detected from filename', ARVE_SLUG ) );
429
  return $atts;
430
  }
431
 
432
+ $label = empty( $atts[ "track_{$n}_label" ] ) ? arve_get_language_name_from_code( $matches['lang'] ) : $atts[ "track_{$n}_label" ];
433
 
434
  $attr = array(
435
  'default' => ( 1 === $n ) ? true : false,
436
+ 'kind' => $matches['type'],
437
  'label' => $label,
438
  'src' => $atts[ "track_{$n}" ],
439
+ 'srclang' => $matches['lang'],
440
  );
441
 
442
  $atts['video_tracks_html'] .= sprintf( '<track%s>', arve_attr( $attr) );
public/functions-shortcodes.php CHANGED
@@ -1,51 +1,73 @@
1
  <?php
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  function arve_shortcode_arve( $input_atts, $content = null, $arve_shortcode = true ) {
4
 
5
  $errors = '';
6
  $options = arve_get_options();
7
  $properties = arve_get_host_properties();
8
  $input_atts = (array) $input_atts;
9
- $f_atts = $input_atts;
10
 
11
  $pairs = array(
12
- 'align' => $options['align'],
13
- 'arve_link' => arve_bool_to_shortcode_string( $options['promote_link'] ),
14
- 'aspect_ratio' => null,
15
- 'autoplay' => arve_bool_to_shortcode_string( $options['autoplay'] ),
16
- 'description' => null,
17
- 'disable_flash' => null,
18
- 'iframe_name' => null,
19
- 'maxwidth' => (string) $options['video_maxwidth'],
20
- 'mode' => $options['mode'],
21
- 'parameters' => null,
22
- 'src' => null, # Just a alias for url to make it simple
23
- 'thumbnail' => null,
24
- 'title' => null,
25
- 'upload_date' => null,
26
- # <video>
27
- 'm4v' => null,
28
- 'mp4' => null,
29
- 'ogv' => null,
30
- 'webm' => null,
31
- 'preload' => 'metadata',
32
- 'playsinline' => null,
33
- 'muted' => null,
34
- 'controls' => 'y',
35
- 'loop' => 'n',
36
- # TED only
37
- 'lang' => null,
38
- # Vimeo only
39
- 'start' => null,
40
- # Old Shortcodes / URL embeds
41
- 'id' => null,
42
- 'provider' => null,
43
- # deprecated, title should be used
44
- 'link_text' => null,
 
 
45
  );
46
 
47
  for ( $n = 1; $n <= ARVE_NUM_TRACKS; $n++ ) {
48
-
49
  $pairs["track_{$n}"] = null;
50
  $pairs["track_{$n}_label"] = null;
51
  }
@@ -53,18 +75,18 @@ function arve_shortcode_arve( $input_atts, $content = null, $arve_shortcode = tr
53
  if ( $arve_shortcode ) {
54
  $pairs['url'] = null;
55
  } else {
56
- $pairs['provider'] = null;
57
- $pairs['id'] = null;
58
 
59
- if ( empty( $input_atts['provider'] ) || empty( $input_atts['id'] ) ) {
60
- return arve_error( __( 'id and provider shortcodes attributes are mandatory for old shortcodes. It is recommended to switch to new shortcodes that need only url', ARVE_SLUG ) );
61
- }
62
  }
63
 
64
  $atts = shortcode_atts( apply_filters( 'arve_shortcode_pairs', $pairs ), $input_atts, 'arve' );
65
 
66
  if ( $errors = arve_output_errors( $atts ) ) {
67
- return $errors . arve_get_debug_info( '', $atts, $input_atts );
68
  }
69
 
70
  $html['video'] = arve_video_or_iframe( $atts );
@@ -77,7 +99,7 @@ function arve_shortcode_arve( $input_atts, $content = null, $arve_shortcode = tr
77
  $output = apply_filters( 'arve_output', $normal_embed, $html, $atts );
78
 
79
  if ( empty( $output ) ) {
80
- return arve_error( 'The output is empty, this should not happen' );
81
  } elseif ( is_wp_error( $output ) ) {
82
  return arve_error( $output->get_error_message() );
83
  }
@@ -103,15 +125,15 @@ function arve_create_shortcodes() {
103
 
104
  foreach( $options['shortcodes'] as $provider => $shortcode ) {
105
 
106
- $function = function( $atts ) use ( $provider ) {
107
- $atts['provider'] = $provider;
108
- return arve_shortcode_arve( $atts, null, false );
109
- };
110
 
111
- add_shortcode( $shortcode, $function );
112
  }
113
 
114
- add_shortcode( 'arve', 'arve_shortcode_arve' );
115
  add_shortcode( 'arve-supported', 'arve_shortcode_arve_supported' );
116
  add_shortcode( 'arve-supported-list', 'arve_shortcode_arve_supported_list' );
117
  add_shortcode( 'arve-params', 'arve_shortcode_arve_params' );
@@ -138,30 +160,31 @@ function arve_shortcode_arve_supported() {
138
  $out .= '</tr>';
139
  $out .= '<tr>';
140
  $out .= '<td></td>';
141
- $out .= '<td colspan="6"><a href="https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/documentation/#general-iframe-embedding">All providers with responsive iframe embed codes</a></td>';
142
  $out .= '</tr>';
143
 
144
  $count = 1;
145
 
146
  foreach ( $providers as $key => $values ) {
147
 
148
- if ( ! isset( $values['name'] ) )
149
- $values['name'] = $key;
150
-
151
- $out .= '<tr>';
152
- $out .= sprintf( '<td>%d</td>', $count++ );
153
- $out .= sprintf( '<td>%s</td>', esc_html( $values['name'] ) );
154
- $out .= sprintf( '<td>%s</td>', ( isset( $values['requires_src'] ) && $values['requires_src'] ) ? '' : '&#x2713;' );
155
- $out .= sprintf( '<td>%s</td>', ( isset( $values['embed_url'] ) && arve_starts_with( $values['embed_url'], 'https' ) ) ? '&#x2713;' : '' );
156
- $out .= sprintf( '<td>%s</td>', ! empty( $values['requires_flash'] ) ? '&#x2713;' : '' );
157
- $out .= sprintf( '<td>%s</td>', ( isset( $values['auto_thumbnail'] ) && $values['auto_thumbnail'] ) ? '&#x2713;' : '' );
158
- $out .= sprintf( '<td>%s</td>', ( isset( $values['auto_title'] ) && $values['auto_title'] ) ? '&#x2713;' : '' );
159
- $out .= '</tr>';
 
160
  }
161
 
162
  $out .= '<tr>';
163
  $out .= '<td></td>';
164
- $out .= '<td colspan="6"><a href="https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/documentation/#general-iframe-embedding">All providers with responsive iframe embed codes</a></td>';
165
  $out .= '</tr>';
166
  $out .= '</table>';
167
 
@@ -177,7 +200,7 @@ function arve_shortcode_arve_supported_list() {
177
  unset( $providers['iframe'] );
178
 
179
  foreach ( $providers as $key => $values ) {
180
- $list .= '* ' . $values['name'] . PHP_EOL;
181
  }
182
 
183
  return '<textarea style="width:100%" rows="15">'. $list . '</textarea>';
@@ -188,7 +211,7 @@ function arve_shortcode_arve_params() {
188
  $attrs = arve_get_settings_definitions();
189
 
190
  if( function_exists( 'arve_pro_get_settings_definitions' ) ) {
191
- $attrs = array_merge( $attrs, arve_pro_get_settings_definitions() );
192
  }
193
 
194
  $out = '<table class="table table-hover table-arve-params">';
@@ -199,31 +222,35 @@ function arve_shortcode_arve_params() {
199
 
200
  foreach ( $attrs as $key => $values ) {
201
 
202
- if( isset( $values['hide_from_sc'] ) && $values['hide_from_sc'] ) {
203
- continue;
204
- }
 
 
 
 
 
 
205
 
206
- $desc = '';
207
- unset( $values['options'][''] );
208
- unset( $choices );
209
 
210
- if ( ! empty( $values['options'] ) ) {
211
- foreach ($values['options'] as $key => $value) {
212
- $choices[] = sprintf( '<code>%s</code>', $key );
213
- }
214
- $desc .= __('Options: ', ARVE_SLUG ) . implode( ', ', $choices ) . '<br>';
215
- }
216
 
217
- if ( ! empty( $values['description'] ) )
218
- $desc .= $values['description'];
 
219
 
220
- if ( ! empty( $values['meta']['placeholder'] ) )
221
- $desc .= $values['meta']['placeholder'];
 
222
 
223
- $out .= '<tr>';
224
- $out .= sprintf( '<td>%s</td>', $values['attr'] );
225
- $out .= sprintf( '<td>%s</td>', $desc );
226
- $out .= '</tr>';
227
  }
228
 
229
  $out .= '</table>';
1
  <?php
2
 
3
+ function arve_shortcode( $input_atts, $content = null ) {
4
+
5
+ /**
6
+ * Filters the default arve shortcode output.
7
+ *
8
+ * If the filtered output isn't empty, it will be used instead of generating
9
+ * the default video template.
10
+ *
11
+ * @since 8.8.2
12
+ *
13
+ * @param string $html Empty variable to be replaced with shortcode markup.
14
+ * @param array $atts Attributes of the shortcode.
15
+ * @param string $content Video shortcode content.
16
+ */
17
+ $override = apply_filters( 'arve_shortcode_overwride', '', $input_atts, $content );
18
+ if ( '' !== $override ) {
19
+ return $override;
20
+ }
21
+
22
+ return arve_shortcode_arve( $input_atts, $content );
23
+ }
24
+
25
  function arve_shortcode_arve( $input_atts, $content = null, $arve_shortcode = true ) {
26
 
27
  $errors = '';
28
  $options = arve_get_options();
29
  $properties = arve_get_host_properties();
30
  $input_atts = (array) $input_atts;
 
31
 
32
  $pairs = array(
33
+ 'align' => $options['align'],
34
+ 'arve_link' => arve_bool_to_shortcode_string( $options['promote_link'] ),
35
+ 'aspect_ratio' => null,
36
+ 'autoplay' => arve_bool_to_shortcode_string( $options['autoplay'] ),
37
+ 'description' => null,
38
+ 'duration' => null,
39
+ 'disable_flash' => null,
40
+ 'iframe_name' => null,
41
+ 'maxwidth' => (string) $options['video_maxwidth'],
42
+ 'mode' => $options['mode'],
43
+ 'parameters' => null,
44
+ 'src' => null, // Just a alias for url to make it simple
45
+ 'thumbnail' => null,
46
+ 'title' => null,
47
+ 'upload_date' => null,
48
+ // <video>
49
+ 'm4v' => null,
50
+ 'mp4' => null,
51
+ 'ogv' => null,
52
+ 'webm' => null,
53
+ 'preload' => 'metadata',
54
+ 'playsinline' => null,
55
+ 'muted' => null,
56
+ 'controls' => 'y',
57
+ 'controlslist' => empty( $options['controlslist'] ) ? null : (string) $options['controlslist'],
58
+ 'loop' => 'n',
59
+ // TED only
60
+ 'lang' => null,
61
+ // Vimeo only
62
+ 'start' => null,
63
+ // Old Shortcodes / URL embeds
64
+ 'id' => null,
65
+ 'provider' => null,
66
+ // deprecated, title should be used
67
+ 'link_text' => null,
68
  );
69
 
70
  for ( $n = 1; $n <= ARVE_NUM_TRACKS; $n++ ) {
 
71
  $pairs["track_{$n}"] = null;
72
  $pairs["track_{$n}_label"] = null;
73
  }
75
  if ( $arve_shortcode ) {
76
  $pairs['url'] = null;
77
  } else {
78
+ $pairs['provider'] = null;
79
+ $pairs['id'] = null;
80
 
81
+ if ( empty( $input_atts['provider'] ) || empty( $input_atts['id'] ) ) {
82
+ return arve_error( __( 'id and provider shortcodes attributes are mandatory for old shortcodes. It is recommended to switch to new shortcodes that need only url', ARVE_SLUG ) );
83
+ }
84
  }
85
 
86
  $atts = shortcode_atts( apply_filters( 'arve_shortcode_pairs', $pairs ), $input_atts, 'arve' );
87
 
88
  if ( $errors = arve_output_errors( $atts ) ) {
89
+ return $errors . arve_get_debug_info( '', $atts, $input_atts );
90
  }
91
 
92
  $html['video'] = arve_video_or_iframe( $atts );
99
  $output = apply_filters( 'arve_output', $normal_embed, $html, $atts );
100
 
101
  if ( empty( $output ) ) {
102
+ return arve_error( 'The output is empty, this should not happen', ARVE_SLUG );
103
  } elseif ( is_wp_error( $output ) ) {
104
  return arve_error( $output->get_error_message() );
105
  }
125
 
126
  foreach( $options['shortcodes'] as $provider => $shortcode ) {
127
 
128
+ $function = function( $atts ) use ( $provider ) {
129
+ $atts['provider'] = $provider;
130
+ return arve_shortcode_arve( $atts, null, false );
131
+ };
132
 
133
+ add_shortcode( $shortcode, $function );
134
  }
135
 
136
+ add_shortcode( 'arve', 'arve_shortcode' );
137
  add_shortcode( 'arve-supported', 'arve_shortcode_arve_supported' );
138
  add_shortcode( 'arve-supported-list', 'arve_shortcode_arve_supported_list' );
139
  add_shortcode( 'arve-params', 'arve_shortcode_arve_params' );
160
  $out .= '</tr>';
161
  $out .= '<tr>';
162
  $out .= '<td></td>';
163
+ $out .= '<td colspan="6"><a href="https://nextgenthemes.com/plugins/arve/documentation/#general-iframe-embedding">All providers with responsive iframe embed codes</a></td>';
164
  $out .= '</tr>';
165
 
166
  $count = 1;
167
 
168
  foreach ( $providers as $key => $values ) {
169
 
170
+ if ( ! isset( $values['name'] ) ) {
171
+ $values['name'] = $key;
172
+ }
173
+
174
+ $out .= '<tr>';
175
+ $out .= sprintf( '<td>%d</td>', $count++ );
176
+ $out .= sprintf( '<td>%s</td>', esc_html( $values['name'] ) );
177
+ $out .= sprintf( '<td>%s</td>', ( isset( $values['requires_src'] ) && $values['requires_src'] ) ? '&#x2713;' : '' );
178
+ $out .= sprintf( '<td>%s</td>', ( isset( $values['embed_url'] ) && arve_starts_with( $values['embed_url'], 'https' ) ) ? '&#x2713;' : '' );
179
+ $out .= sprintf( '<td>%s</td>', ! empty( $values['requires_flash'] ) ? '&#x2713;' : '' );
180
+ $out .= sprintf( '<td>%s</td>', ( isset( $values['auto_thumbnail'] ) && $values['auto_thumbnail'] ) ? '&#x2713;' : '' );
181
+ $out .= sprintf( '<td>%s</td>', ( isset( $values['auto_title'] ) && $values['auto_title'] ) ? '&#x2713;' : '' );
182
+ $out .= '</tr>';
183
  }
184
 
185
  $out .= '<tr>';
186
  $out .= '<td></td>';
187
+ $out .= '<td colspan="6"><a href="https://nextgenthemes.com/plugins/arve/documentation/#general-iframe-embedding">All providers with responsive iframe embed codes</a></td>';
188
  $out .= '</tr>';
189
  $out .= '</table>';
190
 
200
  unset( $providers['iframe'] );
201
 
202
  foreach ( $providers as $key => $values ) {
203
+ $list .= '* ' . $values['name'] . PHP_EOL;
204
  }
205
 
206
  return '<textarea style="width:100%" rows="15">'. $list . '</textarea>';
211
  $attrs = arve_get_settings_definitions();
212
 
213
  if( function_exists( 'arve_pro_get_settings_definitions' ) ) {
214
+ $attrs = array_merge( $attrs, arve_pro_get_settings_definitions() );
215
  }
216
 
217
  $out = '<table class="table table-hover table-arve-params">';
222
 
223
  foreach ( $attrs as $key => $values ) {
224
 
225
+ if( isset( $values['hide_from_sc'] ) && $values['hide_from_sc'] ) {
226
+ continue;
227
+ }
228
+
229
+ $desc = '';
230
+ unset( $values['options'][''] );
231
+ unset( $choices );
232
+
233
+ if ( ! empty( $values['options'] ) ) {
234
 
235
+ foreach ( $values['options'] as $key => $value) {
236
+ $choices[] = sprintf( '<code>%s</code>', $key );
237
+ }
238
 
239
+ $desc .= __('Options: ', ARVE_SLUG ) . implode( ', ', $choices ) . '<br>';
240
+ }
 
 
 
 
241
 
242
+ if ( ! empty( $values['description'] ) ) {
243
+ $desc .= $values['description'];
244
+ }
245
 
246
+ if ( ! empty( $values['meta']['placeholder'] ) ) {
247
+ $desc .= $values['meta']['placeholder'];
248
+ }
249
 
250
+ $out .= '<tr>';
251
+ $out .= sprintf( '<td>%s</td>', $values['attr'] );
252
+ $out .= sprintf( '<td>%s</td>', $desc );
253
+ $out .= '</tr>';
254
  }
255
 
256
  $out .= '</table>';
public/functions-thumbnails.php CHANGED
File without changes
public/functions-url-handlers.php CHANGED
File without changes
public/functions-validation.php CHANGED
@@ -101,10 +101,12 @@ function arve_validate_mode( $mode, $provider ) {
101
 
102
  if ( ! array_key_exists( $mode, $supported_modes ) ) {
103
 
104
- $mode = new WP_Error( 'mode', sprintf(
105
- __( 'Mode: <code>%s</code> is invalid or not supported. Note that you will need the Pro Addon activated for modes other than normal.', ARVE_SLUG ),
106
- esc_html( $mode )
107
- ) );
 
 
108
  }
109
 
110
  return $mode;
101
 
102
  if ( ! array_key_exists( $mode, $supported_modes ) ) {
103
 
104
+ #$mode = new WP_Error( 'mode', sprintf(
105
+ # __( 'Mode: <code>%s</code> is invalid or not supported. Note that you will need the Pro Addon activated for modes other than normal.', ARVE_SLUG ),
106
+ # esc_html( $mode )
107
+ #) );
108
+
109
+ $mode = 'normal';
110
  }
111
 
112
  return $mode;
public/index.php CHANGED
File without changes
readme.md → readme.txt RENAMED
@@ -3,8 +3,9 @@ Contributors: nico23
3
  Donate link: https://www.paypal.me/nico23
4
  Tags: YouTube, Vimeo, lazyload, thumbnail, video, responsive, embeds, video-embedder, iframe, lightweight, simplicity, shortcodes
5
  Requires at least: 4.4.0
6
- Tested up to: 4.7.3
7
- Stable tag: trunk
 
8
  License: GPL-3.0
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -18,85 +19,42 @@ It is very likely the one and only plugin you will ever need to handle video emb
18
 
19
  [youtube https://www.youtube.com/watch?v=m6mkA6Zr1vY ]
20
 
21
- Make sure to check out the [official page](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/) for examples of the plugin and everything about it.
22
-
23
- * [Official Page](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/)
24
- * [GitHub Page](https://github.com/nextgenthemes/advanced-responsive-video-embedder/)
25
- * [Documentation](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/Documentation/)
26
 
27
  ### Features ###
28
 
29
- * ARVE is now SEO friendly. Letting you specify title, description, upload date to provide search engines with the schema.org data they like to have for better indexing.
30
- * <abbr title="What You See Is What You Get">WYSIWYG</abbr> Editor. No more messing around with shortcodes and previewing.
31
  * New improved dialog for embedding videos.
32
- * Embeds via pasting the URL in its own line just like WordPress!
33
  * Magically makes those url embedded videos responsive.
34
- * No 'lock in' for the above' if you use providers WordPress already supports.
35
- * Supports [almost every video host](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#video-host-support) that supports iframe embed codes.
 
36
  * Optionally use very powerful Shortcodes instead.
37
- * One single button for all providers. (for most providers not required because of URL embeds, but allows to create custom shortcodes with advanced features within seconds)
38
- * Responsive embeds with CSS, much better then with Javascript.
39
- * Tries to be as unobtrusive as possible, sets 'hide brand' variables if supported, disabled related videos at the end … to help keep people on your site rather then going to YouTube or keep watching videos.
40
- * Clean shortcode syntax `[arve url="https://youtu.be/yUCFRL43Zm4" /]`, no unnecessary shortcode wrapping.
41
  * Autostart (for providers that support it, mobile browsers prevent this)
42
- * Custom URL parameters to use all options providers offer
43
- * Optional maximal width
44
- * Video alignment
45
  * Detailed description of options in-place.
46
- * Custom aspect ratio
47
-
48
- ### [Supported Providers](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#video-host-support) ###
49
-
50
- * Alugha
51
- * Archive.org
52
- * Break
53
- * Brightcove
54
- * CollegeHumor
55
- * Comedy Central
56
- * Dailymotion
57
- * Facebook
58
- * Funny or Die
59
- * Gametrailers
60
- * IGN
61
- * Kickstarter
62
- * LiveLeak
63
- * Livestream
64
- * kla.tv
65
- * Metacafe
66
- * Movieweb
67
- * MPORA
68
- * Myspace
69
- * Snotr
70
- * Spike
71
- * TED Talks
72
- * Twitch
73
- * Ustream
74
- * RuTube.ru
75
- * Veoh
76
- * Vevo
77
- * Viddler
78
- * vidspot.net
79
- * Vine
80
- * Vimeo
81
- * VK
82
- * Vzaar
83
- * Wistia
84
- * XTube
85
- * Yahoo
86
- * Youku
87
- * YouTube
88
- * YouTube Playlist
89
- * HTML5 Video (.mp4 .webm file you upload or URL to a readable file on any site/server)
90
- * [All providers with responsive iframe embed codes](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/documentation/#general-iframe-embedding)
91
 
92
- ### Reviews ###
 
 
 
93
 
94
- If you find this plugin useful please [give it a 5 star review](https://wordpress.org/support/plugin/advanced-responsive-video-embedder/reviews/#new-post). It has 60000+ installs but only 100 reviews after over 5 years!
95
 
96
  #### &#9733; &#9733; &#9733; &#9733; &#9733; The best there is – I have tried many… ####
97
  Have downloaded and paid for at least 4 other video players that use lightbox. Each one has major flaws. This products works perfectly. If you use the OnSite Editor, then just copy the short code and it works great.
98
 
99
- [arve url="https://www.youtube.com/watch?v=Z7g8-GxLTSc"]
100
 
101
  For speed, the product uses the thumbnails from the server. So many of the other products do NOT do this and it slows the page rendering. This product should appear first on the WordPress search. Spent 3 days of my life wasted on other products, only to delete each one. [review by jodani](https://wordpress.org/support/plugin/advanced-responsive-video-embedder/reviews/?filter=5)
102
 
@@ -106,28 +64,30 @@ So I have a responsive theme but on pages with you tube videos it wasn't making
106
  #### &#9733; &#9733; &#9733; &#9733; &#9733; Only Plug-in that worked ####
107
  I used a lot of high ranking plug-ins but they still broke my design. Downloaded this and worked right away. Thanks! [review by crconnell89](https://wordpress.org/support/plugin/advanced-responsive-video-embedder/reviews/?filter=5)
108
 
109
- This plugin is financed by the awesome buyers of the [Pro Addon](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#purchase). The development and support of this plugins has become a almost full time job for me so I hope you understand that I can not make all features gratis and that you [purchase it](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#purchase) to get extra features support the development.
110
 
111
- ### [Pro Addon](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#purchase) ###
112
 
113
- * **Feel good about yourself**
114
- for supporting my long time work on this plugin. Tons of hours, weekends … always worked on [improving it](https://wordpress.org/plugins/advanced-responsive-video-embedder/changelog/) 5+ years.
115
- * **Disable links in embeds (killer feature!)**
116
- For example: Clicking on a title in a YouTube embed will not open a new popup/tab/window. **Prevent video hosters to lead your visitors away from your site!** Note this also breaks sharing functionality and is not possible when the provider requires flash. Try it on [this page](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/). Right click on links still works.
117
- * **Lazyload mode**
118
- Make your site load **faster** by loading only a image instead of the entire video player on pageload.
119
- * **Lazyload -> Lightbox**
120
  Shows the Video in a Lightbox after clicking a preview image
121
- * **Link -> Lightbox**
122
  Use simple links as triggers for lightboxed videos
123
- * Show the latest video of a YouTube channel by using the channel URL (updated/cached hourly)
124
  * Automatic or custom thumbnail images
125
  * Automatic or custom titles on top of your thumbnails
126
- * 'Grow on click' feature
127
  * 3 hover styles
128
  * 2 play icon styles to choose from
129
  * Responsive thumbnails using cutting edge HTML5 technology
130
- * **[Get the ARVE Pro Addon](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#purchase)**
 
 
 
131
 
132
  ### ARVE AMP Addon ###
133
 
@@ -142,16 +102,16 @@ This plugin is financed by the awesome buyers of the [Pro Addon](https://nextgen
142
 
143
  ### Thanks ###
144
 
 
145
  * Howard Iken of [myfloridalaw.com](https://www.myfloridalaw.com) top donor, super nice to me even if I was rude and not deserved it!
146
  * [Ilya Grishkov](https://www.ilyagrishkov.com) for bringing up the idea and the first code to cache thumbnail urls.
147
  * Everybody giving constructive feedback, testing beta versions.
148
  * Everybody who donated back in the days when this was donation based.
149
- * Of course all the customers who bought a addon.
150
 
151
  ### Thanks to the developers of the software used in ARVE ###
152
 
153
  * [Shortcode UI](https://wordpress.org/plugins/shortcode-ui/), optional Plugin, utilized by ARVE
154
- * [Lity Lightbox](http://sorgalla.com/lity/), used in [Pro Addon](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#purchase))
155
 
156
  ## Installation ##
157
 
@@ -165,7 +125,7 @@ Please report it on [nextgenthemes.com/support/](https://nextgenthemes.com/suppo
165
 
166
  ### How to get the pro version working? ###
167
 
168
- 1. Go though the purchase process on [nextgenthemes.com/advanced-responsive-video-embedder-pro/](https://nextgenthemes.com/advanced-responsive-video-embedder-pro/)
169
  1. Follow the 3 easy steps you get with the purchase receipt. It is basically downloading a arve-pro.zip and installing it through your WordPress Admin panel.
170
 
171
  ### Why are my videos not filling their container? ###
@@ -192,11 +152,183 @@ This plugins embed is considered as 'custom player' by YouTube so you have to pa
192
  2. Main Options
193
  2. URL Parameter Options
194
  3. Pro Options
 
195
  ## Changelog ##
196
 
197
- * [ARVE Pro addon changelog](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/changelog/)
198
  * [ARVE AMP addon changelog](https://nextgenthemes.com/plugins/arve-amp/)
199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
200
  ### 2017-05-04 - 8.5.0 ###
201
 
202
  * New: playsinline, and muted attributes for HTML5 video.
@@ -274,7 +406,7 @@ This plugins embed is considered as 'custom player' by YouTube so you have to pa
274
 
275
  ### 2017-02-12 - 8.0.5 ###
276
 
277
- * Fix: Small size of lightbox when using the [Pro Addon](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/).
278
 
279
  ### 2017-02-11 - 8.0.4 ###
280
 
3
  Donate link: https://www.paypal.me/nico23
4
  Tags: YouTube, Vimeo, lazyload, thumbnail, video, responsive, embeds, video-embedder, iframe, lightweight, simplicity, shortcodes
5
  Requires at least: 4.4.0
6
+ Tested up to: 4.9.4
7
+ Requires PHP: 5.3
8
+ Stable tag: 8.9.9
9
  License: GPL-3.0
10
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
11
 
19
 
20
  [youtube https://www.youtube.com/watch?v=m6mkA6Zr1vY ]
21
 
22
+ * [Documentation](https://nextgenthemes.com/plugins/arve/documentation/)
23
+ * [GitHub Page](https://github.com/nextgenthemes/advanced-responsive-video-embedder)
24
+ * [Pro Addon](https://nextgenthemes.com/plugins/arve-pro/)
 
 
25
 
26
  ### Features ###
27
 
28
+ * SEO friendly, lets you specify title, description, upload date to provide search engines with the schema.org data they like to have for better indexing.
29
+ * <abbr title="What You See Is What You Get">WYSIWYG</abbr> support. No more messing around with shortcodes and previewing.
30
  * New improved dialog for embedding videos.
 
31
  * Magically makes those url embedded videos responsive.
32
+ * No 'lock in' if you do not use shortcodes and use providers WordPress already supports.
33
+ * Supports [almost every video host](https://nextgenthemes.com/plugins/arve-pro/#support-table) that supports iframe embed codes.
34
+ * Embeds via pasting the URL in its own line just like WordPress!
35
  * Optionally use very powerful Shortcodes instead.
36
+ * Clean shortcode syntax `[arve url="https://youtu.be/yUCFRL43Zm4" align="left" parameters="start=30" ... /]`, no unnecessary shortcode wrapping.
37
+ * One single button for all providers.
38
+ * Responsive embeds with CSS, much better then with JavaScript.
39
+ * Tries to be as unobtrusive as possible, sets 'hide brand' variables if supported, disables related videos at the end … to help keep people on your site rather then going to YouTube or keep watching videos.
40
  * Autostart (for providers that support it, mobile browsers prevent this)
41
+ * Custom URL parameters to use all options providers offer.
42
+ * Optional maximal width.
43
+ * Video alignment.
44
  * Detailed description of options in-place.
45
+ * Automatic detected and custom aspect ratio.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
 
47
+ ### [Supported Providers](https://nextgenthemes.com/plugins/arve-pro/#support-table) ###
48
+
49
+ allmyvideos.net, Alugha, Archive.org, Break, Brightcove, CollegeHumor, Comedy Central, Dailymotion, Facebook, Funny or Die, IGN, Kickstarter, LiveLeak, Livestream, kla.tv, Metacafe, Movieweb, MPORA, Myspace, Snotr, Spike, TED Talks, Twitch, Ustream, RuTube.ru, Veoh, Vevo, Viddler, vidspot.net, Vine, Vimeo, VK, Vzaar, Wistia, XTube, Yahoo, Youku, YouTube, YouTube Playlist, HTML5 video files directly, Google_drive, Dropbox, Ooyala
50
+ [All providers with responsive iframe embed codes](https://nextgenthemes.com/plugins/arve/documentation/#general-iframe-embedding)
51
 
52
+ ### Reviews ###
53
 
54
  #### &#9733; &#9733; &#9733; &#9733; &#9733; The best there is – I have tried many… ####
55
  Have downloaded and paid for at least 4 other video players that use lightbox. Each one has major flaws. This products works perfectly. If you use the OnSite Editor, then just copy the short code and it works great.
56
 
57
+ [arve url="https://www.youtube.com/watch?v=Z7g8-GxLTSc" /]
58
 
59
  For speed, the product uses the thumbnails from the server. So many of the other products do NOT do this and it slows the page rendering. This product should appear first on the WordPress search. Spent 3 days of my life wasted on other products, only to delete each one. [review by jodani](https://wordpress.org/support/plugin/advanced-responsive-video-embedder/reviews/?filter=5)
60
 
64
  #### &#9733; &#9733; &#9733; &#9733; &#9733; Only Plug-in that worked ####
65
  I used a lot of high ranking plug-ins but they still broke my design. Downloaded this and worked right away. Thanks! [review by crconnell89](https://wordpress.org/support/plugin/advanced-responsive-video-embedder/reviews/?filter=5)
66
 
67
+ This plugin is financed by sales of the [Pro Addon](https://nextgenthemes.com/plugins/arve-pro/). The development and support of this plugins has become a job for me so I hope you understand that I can not make all features gratis and that you [purchase it](https://nextgenthemes.com/plugins/arve-pro/) to get extra features and support the development.
68
 
69
+ ### [Pro Addon](https://nextgenthemes.com/plugins/arve-pro/) ###
70
 
71
+ Limited time price experiment: **44% off** first year with discount code `wporg`
72
+
73
+ * **Disable links in embeds (killer feature!)**<br>
74
+ For example: Clicking on a title in a YouTube embed will not open a new popup/tab/window. **Prevent video hosts to lead your visitors away from your site!** Note this also breaks sharing functionality and is not possible when the provider requires flash. Try it on [this page](https://nextgenthemes.com/plugins/arve-pro/). Right click on links still works.
75
+ * **Lazyload mode**<br>
76
+ Make your site load **faster** by loading only a image instead of the entire video player on pageload.
77
+ * **Lazyload -> Lightbox**<br>
78
  Shows the Video in a Lightbox after clicking a preview image
79
+ * **Link -> Lightbox**<br>
80
  Use simple links as triggers for lightboxed videos
 
81
  * Automatic or custom thumbnail images
82
  * Automatic or custom titles on top of your thumbnails
83
+ * 'Expand on click' feature
84
  * 3 hover styles
85
  * 2 play icon styles to choose from
86
  * Responsive thumbnails using cutting edge HTML5 technology
87
+ * **Feel good about yourself**<br>
88
+ for supporting my 5+ years work on this plugin. Tons of hours, weekends … always worked on improving it.
89
+ * Show the latest video of a YouTube channel by using the channel URL (updated/cached hourly)
90
+ * **[Get the ARVE Pro Addon](https://nextgenthemes.com/plugins/arve-pro/)**
91
 
92
  ### ARVE AMP Addon ###
93
 
102
 
103
  ### Thanks ###
104
 
105
+ * Of course all the customers who bought a addon.
106
  * Howard Iken of [myfloridalaw.com](https://www.myfloridalaw.com) top donor, super nice to me even if I was rude and not deserved it!
107
  * [Ilya Grishkov](https://www.ilyagrishkov.com) for bringing up the idea and the first code to cache thumbnail urls.
108
  * Everybody giving constructive feedback, testing beta versions.
109
  * Everybody who donated back in the days when this was donation based.
 
110
 
111
  ### Thanks to the developers of the software used in ARVE ###
112
 
113
  * [Shortcode UI](https://wordpress.org/plugins/shortcode-ui/), optional Plugin, utilized by ARVE
114
+ * [Lity Lightbox](http://sorgalla.com/lity/), used in [Pro Addon](https://nextgenthemes.com/plugins/arve-pro/)
115
 
116
  ## Installation ##
117
 
125
 
126
  ### How to get the pro version working? ###
127
 
128
+ 1. Go though the purchase process on [nextgenthemes.com/arve-pro/](https://nextgenthemes.com/arve-pro/)
129
  1. Follow the 3 easy steps you get with the purchase receipt. It is basically downloading a arve-pro.zip and installing it through your WordPress Admin panel.
130
 
131
  ### Why are my videos not filling their container? ###
152
  2. Main Options
153
  2. URL Parameter Options
154
  3. Pro Options
155
+
156
  ## Changelog ##
157
 
158
+ * [ARVE Pro addon changelog](https://nextgenthemes.com/plugins/arve-pro/changelog/)
159
  * [ARVE AMP addon changelog](https://nextgenthemes.com/plugins/arve-amp/)
160
 
161
+ ### 2018-10-02 - 8.9.9 ###
162
+
163
+ * Fix: White space above video in Gutenberg blocks.
164
+
165
+ ### 2018-10-02 - 8.9.8 ###
166
+
167
+ * Updated EDD Plugin update class, this may fix some people having trouble auto updating ARVE Pro
168
+ * Fix: Licensing page no longer shows plugins wrongly as not installed.
169
+
170
+ ### 2018-07-22 - 8.9.6 ###
171
+
172
+ * New: Option to enable or disable youtube-nocookie.com embeds. It a privacy enhanced feature but it has at least one bug when setting highlighted video boxes they will open the wrong url so in case you need them you have to disable this.
173
+
174
+ ### 2018-06-07 - 8.9.5 ###
175
+
176
+ * Fixed: When pasting embed codes into the Shortcode UI dialog the `src=` will be extracted even when no quotes are used.
177
+ * Improved: Use youtube-nocookie.com domain again it is GPRP/Privacy friendly. Note the name is confusing as it sets cookies, but only when the user plays the video rather then just when loading the iframe. So its not "no cookies". But you can mention this into your cookie notices when dealing with GPRP.
178
+
179
+ ### 2018-06-02 - 8.9.4 ###
180
+
181
+ * Improved: Try to make autoplay in Chrome possible again. See [New Chrome Autoplay behavior](https://developers.google.com/web/updates/2017/09/autoplay-policy-changes). At the point of writing its not clear if the new iframe attribute makes them just autoplay no matter what. Please report your experiences.
182
+
183
+ ### 2018-04-29 - 8.9.3 ###
184
+
185
+ * Improved: Make overwrite of shortcode possible. Used in new [Random Video Addon](https://nextgenthemes.com/plugins/arve-random-video/)
186
+
187
+ ### 2018-04-18 - 8.9.2 ###
188
+
189
+ * Fix possible "not a string" errors.
190
+
191
+ ### 2018-04-12 - 8.9.1 ###
192
+
193
+ * New: Option to always load assets. Needed when dealing with AJAX and other special cases.
194
+
195
+ ### 2018-03-16 - 8.9.0 ###
196
+
197
+ * Fixed/improved Ustream url detection. Make sure you remove `wmode=transparent` if present and include `html5ui=1` for ustream on the ARVE URL parameters settings tab.
198
+
199
+ ### 2018-03-13 - 8.8.9 ###
200
+
201
+ * Improved licensing debug code.
202
+ * Added Vimeo PHP API class for upcoming versions and addons.
203
+
204
+ ### 2018-03-13 - 8.8.8 ###
205
+
206
+ * Added code to debug issues with license activations.
207
+
208
+ ### 2018-03-05 - 8.8.7 ###
209
+
210
+ * Fixed a link on the plugins screen (Thanks Hans).
211
+
212
+ ### 2018-02-25 - 8.8.6 ###
213
+
214
+ * Fix: HTML5 videos not working with lightbox in [ARVE PRO](https://nextgenthemes.com/plugins/arve-pro/)
215
+
216
+ ### 2018-02-25 - 8.8.5 ###
217
+
218
+ * Fix: Add default url parameters to youtube playlists. Note they will effect playlist urls like `https://www.youtube.com/playlist?list=PLXYApifkdCACM_ykvnCHeth-vIB6v1XE3` only and not those who also reference the starting video. There is currently a separate parameters option for this but it will be removed in version 9.0.
219
+
220
+ ### 2018-02-23 - 8.8.4 ###
221
+
222
+ * Fix: YouTube playlists where not correctly detected when having a underscore in the id.
223
+ * Improved: Better explanation of the new disable flash for general iframe option on the settings page.
224
+
225
+ ### 2018-02-16 - 8.8.3 ###
226
+
227
+ * New: Option to disable flash for not listed providers for more secure embeds and make the 'disable links' Pro Addon feature possible for those. See the description on the options page.
228
+ * Fix: Licensing deactivation did not work.
229
+ * Improved: Marked some providers as not requiring flash anymore.
230
+ * Improved: Fixed some links throughout the plugin and readme.
231
+ * Improved: Some minor code improvements.
232
+
233
+ ### 2018-02-12 - 8.8.2 ###
234
+
235
+ * Fix: Issue with the new Video API class.
236
+
237
+ ### 2018-02-12 - 8.8.1 ###
238
+
239
+ * Fix: `Can’t use function return value in write context`, white screen of deaths type error from the last update.
240
+
241
+ ### 2018-02-12 - 8.8.0 ###
242
+
243
+ **I could really use some positive reviews. It has been over 7 months without a 5 star review.** The top level menu that was complained about a lot has been removed. I am working on a big update that will make ARVE even better with automatic detection of aspect ratios, better caching and lots of improved code.
244
+
245
+ * New: Added options fields for Vimeo API used in upcoming addons.
246
+ * Improved: Removed NextGenThemes top level menu and ads page because to many complaints.
247
+ * Improved: Moved licensing settings page to 'settings' menu.
248
+
249
+ ### 2018-02-02 - 8.7.8 ###
250
+
251
+ * No longer try to guess and spam autoplay parameters for general iframe embeds.
252
+ * Fix: Google drive embeds not working.
253
+
254
+ ### 2018-01-09 - 8.7.7 ###
255
+
256
+ * New: `duration` shortcode attribute and dialog entry.
257
+ * Fixed: Corrected some dead links inside the plugin.
258
+ * Improved: Added `muted`, `controls` and `loop` to shortcode UI dialog for HTML5 videos.
259
+ * Improved: Removed video file extension check so any file can be used `[arve mp4="http://example.com/some-file" webm="http://example.com/some-other-file" /]`. Useful for example to embed files hosted on IPFS that do have a cryptic hash instead of a human readable filename.
260
+
261
+ ### 2017-12-20 - 8.7.6 ###
262
+
263
+ * Fix license activation now working correctly.
264
+ * Corrected link in readme.
265
+
266
+ ### 2017-12-19 - 8.7.5 ###
267
+
268
+ * Maybe fix license activation in some rare cases.
269
+
270
+ ### 2017-12-17 - 8.7.4 ###
271
+
272
+ * Fix: Removed URL validation because it fails with some weird URLs.
273
+
274
+ ### 2017-12-13 - 8.7.3 ###
275
+
276
+ * Updated EDD Plugin Updater class.
277
+ * Fixed some links in the readme.
278
+
279
+ ### 2017-08-16 - 8.7.2 ###
280
+
281
+ * Fix: Same Video with different start times in lightboxes.
282
+
283
+ ### 2017-07-12 - 8.7.1 ###
284
+
285
+ * Fix: Throw no PHP notice on admin when WP_DEBUG is enabled.
286
+ * Fix: Fix related to upcoming Pro Addon update and private vimeo videos.
287
+
288
+ ### 2017-07-10 - 8.7.0 ###
289
+
290
+ * Fix: web.facebook.com/... video urls not getting detected
291
+
292
+ ### 2017-06-17 - 8.6.6 ###
293
+
294
+ * Fix: Message dismissal not working.
295
+
296
+ ### 2017-06-17 - 8.6.5 ###
297
+
298
+ * Fix: Added `allow-presentation` to iframe sandbox to fix Chrome 59 not loading iframes. Thanks njs
299
+ * Improved: Admin message and dashboard ad size reduced, added links to dashboard widget, settings page ad is now sidebar-like on big screens.
300
+
301
+ ### 2017-06-15 - 8.6.4 ###
302
+
303
+ * Fix: Removes a .video-wrap element from ARVE's HTML that is added by a theme and caused videos to be invisible.
304
+ * Fix: PHP error in some cases.
305
+ * Improved: If mode is not supported fall back to normal without error message (for now).
306
+ * Improved: Changed embed URL for Alugha
307
+
308
+ ### 2017-05-17 - 8.6.3 ###
309
+
310
+ * Fixed issue with width and height attributes
311
+
312
+ ### 2017-05-17 - 8.6.2 ###
313
+
314
+ * Fixed license activation issues.
315
+
316
+ ### 2017-05-10 - 8.6.1 ###
317
+
318
+ * Minor code change.
319
+
320
+ ### 2017-05-10 - 8.6.0 ###
321
+
322
+ * New: `controlslist` shortcode attribute and option to control the Chrome HTML5 player `nodownload` is default, it hides the download button on the player.
323
+
324
+ ### 2017-05-05 - 8.5.2 ###
325
+
326
+ * Improved: Embed Liveleak with https. Remove the default parameter.
327
+
328
+ ### 2017-05-05 - 8.5.1 ###
329
+
330
+ * Improved: Mark Liveleak that it not requires flash anymore. This makes the 'disable links' option of the Pro Addon possible. Becomes very handy as Liveleak annoyingly opens new tabs when clicking outside the play button.
331
+
332
  ### 2017-05-04 - 8.5.0 ###
333
 
334
  * New: playsinline, and muted attributes for HTML5 video.
406
 
407
  ### 2017-02-12 - 8.0.5 ###
408
 
409
+ * Fix: Small size of lightbox when using the [Pro Addon](https://nextgenthemes.com/plugins/arve-pro/).
410
 
411
  ### 2017-02-11 - 8.0.4 ###
412
 
readme/01-top.md DELETED
@@ -1,25 +0,0 @@
1
- === ARVE Advanced Responsive Video Embedder (YouTube, Vimeo, HTML5 Video ...) ===
2
- Contributors: nico23
3
- Donate link: https://www.paypal.me/nico23
4
- Tags: YouTube, Vimeo, lazyload, thumbnail, video, responsive, embeds, video-embedder, iframe, lightweight, simplicity, shortcodes
5
- Requires at least: 4.4.0
6
- Tested up to: 4.7.3
7
- Stable tag: trunk
8
- License: GPL-3.0
9
- License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
-
11
- Easy responsive video embeds via URLs or shortcodes. Perfect drop-in replacement for WordPress' default embeds. Best plugin for videos?
12
-
13
- ## Description ##
14
-
15
- The best WordPress plugin for videos? Supports close to everything you can imagine, still keeping it easy & simple.
16
-
17
- It is very likely the one and only plugin you will ever need to handle video embeds on your WordPress site(s). It goes far beyond just making your videos responsive!
18
-
19
- [youtube https://www.youtube.com/watch?v=m6mkA6Zr1vY ]
20
-
21
- Make sure to check out the [official page](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/) for examples of the plugin and everything about it.
22
-
23
- * [Official Page](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/)
24
- * [GitHub Page](https://github.com/nextgenthemes/advanced-responsive-video-embedder/)
25
- * [Documentation](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/Documentation/)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme/10-description-features.md DELETED
@@ -1,21 +0,0 @@
1
-
2
- ### Features ###
3
-
4
- * ARVE is now SEO friendly. Letting you specify title, description, upload date to provide search engines with the schema.org data they like to have for better indexing.
5
- * <abbr title="What You See Is What You Get">WYSIWYG</abbr> Editor. No more messing around with shortcodes and previewing.
6
- * New improved dialog for embedding videos.
7
- * Embeds via pasting the URL in its own line just like WordPress!
8
- * Magically makes those url embedded videos responsive.
9
- * No 'lock in' for the above' if you use providers WordPress already supports.
10
- * Supports [almost every video host](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#video-host-support) that supports iframe embed codes.
11
- * Optionally use very powerful Shortcodes instead.
12
- * One single button for all providers. (for most providers not required because of URL embeds, but allows to create custom shortcodes with advanced features within seconds)
13
- * Responsive embeds with CSS, much better then with Javascript.
14
- * Tries to be as unobtrusive as possible, sets 'hide brand' variables if supported, disabled related videos at the end … to help keep people on your site rather then going to YouTube or keep watching videos.
15
- * Clean shortcode syntax `[arve url="https://youtu.be/yUCFRL43Zm4" /]`, no unnecessary shortcode wrapping.
16
- * Autostart (for providers that support it, mobile browsers prevent this)
17
- * Custom URL parameters to use all options providers offer
18
- * Optional maximal width
19
- * Video alignment
20
- * Detailed description of options in-place.
21
- * Custom aspect ratio
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme/12-description-supported-providers.md DELETED
@@ -1,44 +0,0 @@
1
-
2
- ### [Supported Providers](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#video-host-support) ###
3
-
4
- * Alugha
5
- * Archive.org
6
- * Break
7
- * Brightcove
8
- * CollegeHumor
9
- * Comedy Central
10
- * Dailymotion
11
- * Facebook
12
- * Funny or Die
13
- * Gametrailers
14
- * IGN
15
- * Kickstarter
16
- * LiveLeak
17
- * Livestream
18
- * kla.tv
19
- * Metacafe
20
- * Movieweb
21
- * MPORA
22
- * Myspace
23
- * Snotr
24
- * Spike
25
- * TED Talks
26
- * Twitch
27
- * Ustream
28
- * RuTube.ru
29
- * Veoh
30
- * Vevo
31
- * Viddler
32
- * vidspot.net
33
- * Vine
34
- * Vimeo
35
- * VK
36
- * Vzaar
37
- * Wistia
38
- * XTube
39
- * Yahoo
40
- * Youku
41
- * YouTube
42
- * YouTube Playlist
43
- * HTML5 Video (.mp4 .webm file you upload or URL to a readable file on any site/server)
44
- * [All providers with responsive iframe embed codes](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/documentation/#general-iframe-embedding)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme/13-description-reviews.md DELETED
@@ -1,17 +0,0 @@
1
-
2
- ### Reviews ###
3
-
4
- If you find this plugin useful please [give it a 5 star review](https://wordpress.org/support/plugin/advanced-responsive-video-embedder/reviews/#new-post). It has 60000+ installs but only 100 reviews after over 5 years!
5
-
6
- #### &#9733; &#9733; &#9733; &#9733; &#9733; The best there is – I have tried many… ####
7
- Have downloaded and paid for at least 4 other video players that use lightbox. Each one has major flaws. This products works perfectly. If you use the OnSite Editor, then just copy the short code and it works great.
8
-
9
- [arve url="https://www.youtube.com/watch?v=Z7g8-GxLTSc"]
10
-
11
- For speed, the product uses the thumbnails from the server. So many of the other products do NOT do this and it slows the page rendering. This product should appear first on the WordPress search. Spent 3 days of my life wasted on other products, only to delete each one. [review by jodani](https://wordpress.org/support/plugin/advanced-responsive-video-embedder/reviews/?filter=5)
12
-
13
- #### &#9733; &#9733; &#9733; &#9733; &#9733; Finally something that works ####
14
- So I have a responsive theme but on pages with you tube videos it wasn't making the you tube videos fit in the mobile screen. I have spent the last hour trying many plugins and researching on google and finally I installed this. And I didn't have to update any settings or anything just refreshed a post with videos and all the sudden it is beautiful and responsive on my mobile phone!!!!!! THANK YOU!!!! [review by happyecho](https://wordpress.org/support/plugin/advanced-responsive-video-embedder/reviews/?filter=5)
15
-
16
- #### &#9733; &#9733; &#9733; &#9733; &#9733; Only Plug-in that worked ####
17
- I used a lot of high ranking plug-ins but they still broke my design. Downloaded this and worked right away. Thanks! [review by crconnell89](https://wordpress.org/support/plugin/advanced-responsive-video-embedder/reviews/?filter=5)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme/20-description-features-pro.md DELETED
@@ -1,23 +0,0 @@
1
-
2
- This plugin is financed by the awesome buyers of the [Pro Addon](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#purchase). The development and support of this plugins has become a almost full time job for me so I hope you understand that I can not make all features gratis and that you [purchase it](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#purchase) to get extra features support the development.
3
-
4
- ### [Pro Addon](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#purchase) ###
5
-
6
- * **Feel good about yourself**
7
- for supporting my long time work on this plugin. Tons of hours, weekends … always worked on [improving it](https://wordpress.org/plugins/advanced-responsive-video-embedder/changelog/) 5+ years.
8
- * **Disable links in embeds (killer feature!)**
9
- For example: Clicking on a title in a YouTube embed will not open a new popup/tab/window. **Prevent video hosters to lead your visitors away from your site!** Note this also breaks sharing functionality and is not possible when the provider requires flash. Try it on [this page](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/). Right click on links still works.
10
- * **Lazyload mode**
11
- Make your site load **faster** by loading only a image instead of the entire video player on pageload.
12
- * **Lazyload -> Lightbox**
13
- Shows the Video in a Lightbox after clicking a preview image
14
- * **Link -> Lightbox**
15
- Use simple links as triggers for lightboxed videos
16
- * Show the latest video of a YouTube channel by using the channel URL (updated/cached hourly)
17
- * Automatic or custom thumbnail images
18
- * Automatic or custom titles on top of your thumbnails
19
- * 'Grow on click' feature
20
- * 3 hover styles
21
- * 2 play icon styles to choose from
22
- * Responsive thumbnails using cutting edge HTML5 technology
23
- * **[Get the ARVE Pro Addon](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#purchase)**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme/25-description-features-amp.md DELETED
@@ -1,11 +0,0 @@
1
-
2
- ### ARVE AMP Addon ###
3
-
4
- * Requires the gratis plugins [ARVE](https://wordpress.org/plugins/advanced-responsive-video-embedder/) and [AMP](https://wordpress.org/plugins/amp/)
5
- * Makes ARVE ready for Accelerated Mobile Pages (AMP)
6
- * It will display videos embedded with ARVE on AMP pages correctly
7
- * No options, just works
8
- * It creates &lt;amp-brightcove&gt;, &lt;amp-youtube&gt;, &lt;amp-vimeo&gt;, &lt;amp-dailymotion&gt; elements
9
- * For all other video hosts supported by ARVE &lt;amp-iframe&gt; element is used
10
- * HTML5 video embeds are also supported with &lt;amp-video&gt;
11
- * **[Check out the ARVE AMP Addon](https://nextgenthemes.com/plugins/arve-amp/)**
 
 
 
 
 
 
 
 
 
 
 
readme/35-description-thanks.md DELETED
@@ -1,13 +0,0 @@
1
-
2
- ### Thanks ###
3
-
4
- * Howard Iken of [myfloridalaw.com](https://www.myfloridalaw.com) top donor, super nice to me even if I was rude and not deserved it!
5
- * [Ilya Grishkov](https://www.ilyagrishkov.com) for bringing up the idea and the first code to cache thumbnail urls.
6
- * Everybody giving constructive feedback, testing beta versions.
7
- * Everybody who donated back in the days when this was donation based.
8
- * Of course all the customers who bought a addon.
9
-
10
- ### Thanks to the developers of the software used in ARVE ###
11
-
12
- * [Shortcode UI](https://wordpress.org/plugins/shortcode-ui/), optional Plugin, utilized by ARVE
13
- * [Lity Lightbox](http://sorgalla.com/lity/), used in [Pro Addon](https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#purchase))
 
 
 
 
 
 
 
 
 
 
 
 
 
readme/50-installation-faq-screenshots.md DELETED
@@ -1,40 +0,0 @@
1
-
2
- ## Installation ##
3
-
4
- Please refer to [codex.wordpress.org/Managing_Plugins#Automatic_Plugin_Installation](https://codex.wordpress.org/Managing_Plugins#Automatic_Plugin_Installation).
5
-
6
- ## Frequently Asked Questions ##
7
-
8
- ### I have a problem ... ###
9
-
10
- Please report it on [nextgenthemes.com/support/](https://nextgenthemes.com/support/) **and please do not on the wordpess.org forums, thanks.**
11
-
12
- ### How to get the pro version working? ###
13
-
14
- 1. Go though the purchase process on [nextgenthemes.com/advanced-responsive-video-embedder-pro/](https://nextgenthemes.com/advanced-responsive-video-embedder-pro/)
15
- 1. Follow the 3 easy steps you get with the purchase receipt. It is basically downloading a arve-pro.zip and installing it through your WordPress Admin panel.
16
-
17
- ### Why are my videos not filling their container? ###
18
-
19
- You are most likely use `align`, this plugin has a option for limiting video width with alignment. If you want your videos to fill their containers then you should not use the `align` shortcode attribute. This assumes that you left the 'Video Maximal Width' field on the options page empty.
20
-
21
- ### Can you add a video provider? ###
22
-
23
- I have no plans on implementing providers that include videos via JavaScript such as www.nicovideo.jp. I also will not implement video services from mainstream media news organizations. For others, feel free to ask.
24
-
25
- ### How do I embed videos from a unlisted providers / iframes? ###
26
-
27
- This plugin not changes anything to usual HTML `<iframe>` embed codes you have to use the shortcode creator dialog and paste iframe embed codes there or write them manually. They will become `[arve url="https://..."]`. The url represents what is the `src` in HTML embeds. It works as simple as this, if the [arve] shortcode does not detect a known URL structure then it will treat the URL as a `src` for the iframe.
28
-
29
- ### Why does my YouTube video not repeat/loop? ###
30
-
31
- This plugins embed is considered as 'custom player' by YouTube so you have to pass the video ID as playlist parameters to make the loop work.
32
-
33
- `[arve url="https://www.youtube.com/watch?v=pvRqvX413Ik" parameters="loop=1&playlist=pvRqvX413Ik"]`
34
-
35
- ## Screenshots ##
36
-
37
- 1. Shortcode dialog
38
- 2. Main Options
39
- 2. URL Parameter Options
40
- 3. Pro Options
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme/html/01-top.md.html DELETED
@@ -1,12 +0,0 @@
1
- <p>=== ARVE Advanced Responsive Video Embedder (YouTube, Vimeo, HTML5 Video ...) ===<br>Contributors: nico23<br>Donate link: <a href="https://www.paypal.me/nico23">https://www.paypal.me/nico23</a><br>Tags: YouTube, Vimeo, lazyload, thumbnail, video, responsive, embeds, video-embedder, iframe, lightweight, simplicity, shortcodes<br>Requires at least: 4.4.0<br>Tested up to: 4.7.3<br>Stable tag: trunk<br>License: GPL-3.0<br>License URI: <a href="https://www.gnu.org/licenses/gpl-3.0.html">https://www.gnu.org/licenses/gpl-3.0.html</a></p>
2
- <p>Easy responsive video embeds via URLs or shortcodes. Perfect drop-in replacement for WordPress&#39; default embeds. Best plugin for videos?</p>
3
- <h2 id="description">Description</h2>
4
- <p>The best WordPress plugin for videos? Supports close to everything you can imagine, still keeping it easy &amp; simple.</p>
5
- <p>It is very likely the one and only plugin you will ever need to handle video embeds on your WordPress site(s). It goes far beyond just making your videos responsive!</p>
6
- <p>[youtube <a href="https://www.youtube.com/watch?v=m6mkA6Zr1vY">https://www.youtube.com/watch?v=m6mkA6Zr1vY</a> ]</p>
7
- <p>Make sure to check out the <a href="https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/">official page</a> for examples of the plugin and everything about it.</p>
8
- <ul>
9
- <li><a href="https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/">Official Page</a></li>
10
- <li><a href="https://github.com/nextgenthemes/advanced-responsive-video-embedder/">GitHub Page</a></li>
11
- <li><a href="https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/Documentation/">Documentation</a></li>
12
- </ul>
 
 
 
 
 
 
 
 
 
 
 
 
readme/html/10-description-features.md.html DELETED
@@ -1,21 +0,0 @@
1
- <h3 id="features">Features</h3>
2
- <ul>
3
- <li>ARVE is now SEO friendly. Letting you specify title, description, upload date to provide search engines with the schema.org data they like to have for better indexing.</li>
4
- <li>&lt;abbr title=&quot;What You See Is What You Get&quot;&gt;WYSIWYG&lt;/abbr&gt; Editor. No more messing around with shortcodes and previewing.</li>
5
- <li>New improved dialog for embedding videos.</li>
6
- <li>Embeds via pasting the URL in its own line just like WordPress!</li>
7
- <li>Magically makes those url embedded videos responsive.</li>
8
- <li>No &#39;lock in&#39; for the above&#39; if you use providers WordPress already supports.</li>
9
- <li>Supports <a href="https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#video-host-support">almost every video host</a> that supports iframe embed codes.</li>
10
- <li>Optionally use very powerful Shortcodes instead.</li>
11
- <li>One single button for all providers. (for most providers not required because of URL embeds, but allows to create custom shortcodes with advanced features within seconds)</li>
12
- <li>Responsive embeds with CSS, much better then with Javascript.</li>
13
- <li>Tries to be as unobtrusive as possible, sets &#39;hide brand&#39; variables if supported, disabled related videos at the end … to help keep people on your site rather then going to YouTube or keep watching videos.</li>
14
- <li>Clean shortcode syntax <code>[arve url=&quot;https://youtu.be/yUCFRL43Zm4&quot; /]</code>, no unnecessary shortcode wrapping.</li>
15
- <li>Autostart (for providers that support it, mobile browsers prevent this)</li>
16
- <li>Custom URL parameters to use all options providers offer</li>
17
- <li>Optional maximal width</li>
18
- <li>Video alignment</li>
19
- <li>Detailed description of options in-place.</li>
20
- <li>Custom aspect ratio</li>
21
- </ul>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme/html/12-description-supported-providers.md.html DELETED
@@ -1,44 +0,0 @@
1
- <h3 id="-supported-providers-https-nextgenthemes-com-plugins-advanced-responsive-video-embedder-pro-video-host-support-"><a href="https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#video-host-support">Supported Providers</a></h3>
2
- <ul>
3
- <li>Alugha</li>
4
- <li>Archive.org</li>
5
- <li>Break</li>
6
- <li>Brightcove</li>
7
- <li>CollegeHumor</li>
8
- <li>Comedy Central</li>
9
- <li>Dailymotion</li>
10
- <li>Facebook</li>
11
- <li>Funny or Die</li>
12
- <li>Gametrailers</li>
13
- <li>IGN</li>
14
- <li>Kickstarter</li>
15
- <li>LiveLeak</li>
16
- <li>Livestream</li>
17
- <li>kla.tv</li>
18
- <li>Metacafe</li>
19
- <li>Movieweb</li>
20
- <li>MPORA</li>
21
- <li>Myspace</li>
22
- <li>Snotr</li>
23
- <li>Spike</li>
24
- <li>TED Talks</li>
25
- <li>Twitch</li>
26
- <li>Ustream</li>
27
- <li>RuTube.ru</li>
28
- <li>Veoh</li>
29
- <li>Vevo</li>
30
- <li>Viddler</li>
31
- <li>vidspot.net</li>
32
- <li>Vine</li>
33
- <li>Vimeo</li>
34
- <li>VK</li>
35
- <li>Vzaar</li>
36
- <li>Wistia</li>
37
- <li>XTube</li>
38
- <li>Yahoo</li>
39
- <li>Youku</li>
40
- <li>YouTube</li>
41
- <li>YouTube Playlist</li>
42
- <li>HTML5 Video (.mp4 .webm file you upload or URL to a readable file on any site/server)</li>
43
- <li><a href="https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/documentation/#general-iframe-embedding">All providers with responsive iframe embed codes</a></li>
44
- </ul>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme/html/13-description-reviews.md.html DELETED
@@ -1,10 +0,0 @@
1
- <h3 id="reviews">Reviews</h3>
2
- <p>If you find this plugin useful please <a href="https://wordpress.org/support/plugin/advanced-responsive-video-embedder/reviews/#new-post">give it a 5 star review</a>. It has 60000+ installs but only 100 reviews after over 5 years!</p>
3
- <h4 id="-9733-9733-9733-9733-9733-the-best-there-is-i-have-tried-many-">&#9733; &#9733; &#9733; &#9733; &#9733; The best there is – I have tried many…</h4>
4
- <p>Have downloaded and paid for at least 4 other video players that use lightbox. Each one has major flaws. This products works perfectly. If you use the OnSite Editor, then just copy the short code and it works great.</p>
5
- <p>[arve url=&quot;<a href="https://www.youtube.com/watch?v=Z7g8-GxLTSc">https://www.youtube.com/watch?v=Z7g8-GxLTSc</a>&quot;]</p>
6
- <p>For speed, the product uses the thumbnails from the server. So many of the other products do NOT do this and it slows the page rendering. This product should appear first on the WordPress search. Spent 3 days of my life wasted on other products, only to delete each one. <a href="https://wordpress.org/support/plugin/advanced-responsive-video-embedder/reviews/?filter=5">review by jodani</a></p>
7
- <h4 id="-9733-9733-9733-9733-9733-finally-something-that-works">&#9733; &#9733; &#9733; &#9733; &#9733; Finally something that works</h4>
8
- <p>So I have a responsive theme but on pages with you tube videos it wasn&#39;t making the you tube videos fit in the mobile screen. I have spent the last hour trying many plugins and researching on google and finally I installed this. And I didn&#39;t have to update any settings or anything just refreshed a post with videos and all the sudden it is beautiful and responsive on my mobile phone!!!!!! THANK YOU!!!! <a href="https://wordpress.org/support/plugin/advanced-responsive-video-embedder/reviews/?filter=5">review by happyecho</a></p>
9
- <h4 id="-9733-9733-9733-9733-9733-only-plug-in-that-worked">&#9733; &#9733; &#9733; &#9733; &#9733; Only Plug-in that worked</h4>
10
- <p>I used a lot of high ranking plug-ins but they still broke my design. Downloaded this and worked right away. Thanks! <a href="https://wordpress.org/support/plugin/advanced-responsive-video-embedder/reviews/?filter=5">review by crconnell89</a></p>
 
 
 
 
 
 
 
 
 
 
readme/html/20-description-features-pro.md.html DELETED
@@ -1,17 +0,0 @@
1
- <p>This plugin is financed by the awesome buyers of the <a href="https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#purchase">Pro Addon</a>. The development and support of this plugins has become a almost full time job for me so I hope you understand that I can not make all features gratis and that you <a href="https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#purchase">purchase it</a> to get extra features support the development.</p>
2
- <h3 id="-pro-addon-https-nextgenthemes-com-plugins-advanced-responsive-video-embedder-pro-purchase-"><a href="https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#purchase">Pro Addon</a></h3>
3
- <ul>
4
- <li><strong>Feel good about yourself</strong><br>for supporting my long time work on this plugin. Tons of hours, weekends … always worked on <a href="https://wordpress.org/plugins/advanced-responsive-video-embedder/changelog/">improving it</a> 5+ years.</li>
5
- <li><strong>Disable links in embeds (killer feature!)</strong><br>For example: Clicking on a title in a YouTube embed will not open a new popup/tab/window. <strong>Prevent video hosters to lead your visitors away from your site!</strong> Note this also breaks sharing functionality and is not possible when the provider requires flash. Try it on <a href="https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/">this page</a>. Right click on links still works.</li>
6
- <li><strong>Lazyload mode</strong><br>Make your site load <strong>faster</strong> by loading only a image instead of the entire video player on pageload. </li>
7
- <li><strong>Lazyload -&gt; Lightbox</strong><br>Shows the Video in a Lightbox after clicking a preview image</li>
8
- <li><strong>Link -&gt; Lightbox</strong><br>Use simple links as triggers for lightboxed videos</li>
9
- <li>Show the latest video of a YouTube channel by using the channel URL (updated/cached hourly)</li>
10
- <li>Automatic or custom thumbnail images</li>
11
- <li>Automatic or custom titles on top of your thumbnails</li>
12
- <li>&#39;Grow on click&#39; feature</li>
13
- <li>3 hover styles</li>
14
- <li>2 play icon styles to choose from</li>
15
- <li>Responsive thumbnails using cutting edge HTML5 technology</li>
16
- <li><strong><a href="https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#purchase">Get the ARVE Pro Addon</a></strong></li>
17
- </ul>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme/html/25-description-features-amp.md.html DELETED
@@ -1,11 +0,0 @@
1
- <h3 id="arve-amp-addon">ARVE AMP Addon</h3>
2
- <ul>
3
- <li>Requires the gratis plugins <a href="https://wordpress.org/plugins/advanced-responsive-video-embedder/">ARVE</a> and <a href="https://wordpress.org/plugins/amp/">AMP</a></li>
4
- <li>Makes ARVE ready for Accelerated Mobile Pages (AMP)</li>
5
- <li>It will display videos embedded with ARVE on AMP pages correctly</li>
6
- <li>No options, just works</li>
7
- <li>It creates &lt;amp-brightcove&gt;, &lt;amp-youtube&gt;, &lt;amp-vimeo&gt;, &lt;amp-dailymotion&gt; elements</li>
8
- <li>For all other video hosts supported by ARVE &lt;amp-iframe&gt; element is used</li>
9
- <li>HTML5 video embeds are also supported with &lt;amp-video&gt;</li>
10
- <li><strong><a href="https://nextgenthemes.com/plugins/arve-amp/">Check out the ARVE AMP Addon</a></strong></li>
11
- </ul>
 
 
 
 
 
 
 
 
 
 
 
readme/html/35-description-thanks.md.html DELETED
@@ -1,13 +0,0 @@
1
- <h3 id="thanks">Thanks</h3>
2
- <ul>
3
- <li>Howard Iken of <a href="https://www.myfloridalaw.com">myfloridalaw.com</a> top donor, super nice to me even if I was rude and not deserved it!</li>
4
- <li><a href="https://www.ilyagrishkov.com">Ilya Grishkov</a> for bringing up the idea and the first code to cache thumbnail urls.</li>
5
- <li>Everybody giving constructive feedback, testing beta versions.</li>
6
- <li>Everybody who donated back in the days when this was donation based.</li>
7
- <li>Of course all the customers who bought a addon.</li>
8
- </ul>
9
- <h3 id="thanks-to-the-developers-of-the-software-used-in-arve">Thanks to the developers of the software used in ARVE</h3>
10
- <ul>
11
- <li><a href="https://wordpress.org/plugins/shortcode-ui/">Shortcode UI</a>, optional Plugin, utilized by ARVE</li>
12
- <li><a href="http://sorgalla.com/lity/">Lity Lightbox</a>, used in <a href="https://nextgenthemes.com/plugins/advanced-responsive-video-embedder-pro/#purchase">Pro Addon</a>)</li>
13
- </ul>
 
 
 
 
 
 
 
 
 
 
 
 
 
readme/html/50-installation-faq-screenshots.md.html DELETED
@@ -1,26 +0,0 @@
1
- <h2 id="installation">Installation</h2>
2
- <p>Please refer to <a href="https://codex.wordpress.org/Managing_Plugins#Automatic_Plugin_Installation">codex.wordpress.org/Managing_Plugins#Automatic_Plugin_Installation</a>.</p>
3
- <h2 id="frequently-asked-questions">Frequently Asked Questions</h2>
4
- <h3 id="i-have-a-problem-">I have a problem ...</h3>
5
- <p>Please report it on <a href="https://nextgenthemes.com/support/">nextgenthemes.com/support/</a> <strong>and please do not on the wordpess.org forums, thanks.</strong></p>
6
- <h3 id="how-to-get-the-pro-version-working-">How to get the pro version working?</h3>
7
- <ol>
8
- <li>Go though the purchase process on <a href="https://nextgenthemes.com/advanced-responsive-video-embedder-pro/">nextgenthemes.com/advanced-responsive-video-embedder-pro/</a></li>
9
- <li>Follow the 3 easy steps you get with the purchase receipt. It is basically downloading a arve-pro.zip and installing it through your WordPress Admin panel.</li>
10
- </ol>
11
- <h3 id="why-are-my-videos-not-filling-their-container-">Why are my videos not filling their container?</h3>
12
- <p>You are most likely use <code>align</code>, this plugin has a option for limiting video width with alignment. If you want your videos to fill their containers then you should not use the <code>align</code> shortcode attribute. This assumes that you left the &#39;Video Maximal Width&#39; field on the options page empty.</p>
13
- <h3 id="can-you-add-a-video-provider-">Can you add a video provider?</h3>
14
- <p>I have no plans on implementing providers that include videos via JavaScript such as www.nicovideo.jp. I also will not implement video services from mainstream media news organizations. For others, feel free to ask.</p>
15
- <h3 id="how-do-i-embed-videos-from-a-unlisted-providers-iframes-">How do I embed videos from a unlisted providers / iframes?</h3>
16
- <p>This plugin not changes anything to usual HTML <code>&lt;iframe&gt;</code> embed codes you have to use the shortcode creator dialog and paste iframe embed codes there or write them manually. They will become <code>[arve url=&quot;https://...&quot;]</code>. The url represents what is the <code>src</code> in HTML embeds. It works as simple as this, if the [arve] shortcode does not detect a known URL structure then it will treat the URL as a <code>src</code> for the iframe.</p>
17
- <h3 id="why-does-my-youtube-video-not-repeat-loop-">Why does my YouTube video not repeat/loop?</h3>
18
- <p>This plugins embed is considered as &#39;custom player&#39; by YouTube so you have to pass the video ID as playlist parameters to make the loop work.</p>
19
- <p><code>[arve url=&quot;https://www.youtube.com/watch?v=pvRqvX413Ik&quot; parameters=&quot;loop=1&amp;playlist=pvRqvX413Ik&quot;]</code></p>
20
- <h2 id="screenshots">Screenshots</h2>
21
- <ol>
22
- <li>Shortcode dialog</li>
23
- <li>Main Options</li>
24
- <li>URL Parameter Options</li>
25
- <li>Pro Options</li>
26
- </ol>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme/prep/description-perfectdropinreplacement.md DELETED
@@ -1,11 +0,0 @@
1
- ### Perfect Drop in Replacement ###
2
-
3
- It lets you embed videos from many providers with full responsive sizes via URL or Shortcodes. Let your sites load faster with Lazyload mode (Provider must support native thumbnails). Show videos as thumbnails and let them open in Colorbox. Clean and easy shortcode syntax.
4
-
5
- The Plugin has a set of customization options to embed the video exactly as you like, this includes custom URL parameters. Defaults to make the videos as unobtrusive as possible and keep your visitors on your site are already included.
6
-
7
- = Perfect drop in replacement for the WordPress easy embeds feature =
8
-
9
- If you have [URLs on its own line](https://codex.wordpress.org/Embeds) in your posts/pages this plugin will make them responsive and ads its special features to this embeds right after activation without you having to to anything. If you decide to disable this plugin for any reason, the embeds will still work as before!
10
-
11
- This effect the following video hosters WP supports by default: Blip, YouTube, Funny Or Die, Dailymotion, Vimeo, Vine, TED Talks.
 
 
 
 
 
 
 
 
 
 
 
readme/prep/description-reasons.html DELETED
@@ -1,9 +0,0 @@
1
- <ol>
2
- <li>WordPress embeds are not truely respnsive. Bad workarrounds like max-width: 100% on iframes let videos show in weird aspect ratios with black bars.</li>
3
- <li>WordPress embeds are use oEmbed, and oEmbed **sucks** for videos embeds.</li>
4
- <li>WordPress embeds use providers defaults, ARVE enhances embeds with usefull options by default.</li>
5
- <li>WordPress embeds cant be aligned.</li>
6
- <li>WordPress embeds give you no controll over them whatsoever.</li>
7
- <li></li>
8
- <li></li>
9
- </ol>
 
 
 
 
 
 
 
 
 
readme/prep/description-whatitis.md DELETED
@@ -1,6 +0,0 @@
1
- ### What it is ###
2
-
3
- * Simple
4
- * Lightweight
5
- * Responsive
6
- * Customizable
 
 
 
 
 
 
shared/functions-shared.php CHANGED
@@ -3,16 +3,20 @@
3
  function arve_get_options_defaults( $section ) {
4
 
5
  $options['main'] = array(
6
- 'align_maxwidth' => 400,
7
- 'align' => 'none',
8
- 'autoplay' => false,
9
- 'mode' => 'normal',
10
- 'promote_link' => false,
11
- 'sandbox' => false,
12
- 'video_maxwidth' => '',
13
- 'wp_image_cache_time' => 18000,
14
- 'last_settings_tab' => '',
15
- 'wp_video_override' => true,
 
 
 
 
16
  );
17
 
18
  $properties = arve_get_host_properties();
@@ -88,7 +92,7 @@ function arve_get_settings_definitions() {
88
  $current_mode_name = $options['mode'];
89
  }
90
 
91
- return array(
92
  array(
93
  'hide_from_settings' => true,
94
  'attr' => 'url',
@@ -100,7 +104,7 @@ function arve_get_settings_definitions() {
100
  'description' => sprintf(
101
  __( 'Post the URL of the video here. For %s and any <a href="%s">unlisted</a> video hosts paste their iframe embed codes or its src URL in here (providers embeds need to be responsive).', ARVE_SLUG ),
102
  $embed_code_only,
103
- 'https://nextgenthemes.com/advanced-responsive-video-embedder-pro/#video-host-support'
104
  )
105
  ),
106
  array(
@@ -172,6 +176,13 @@ function arve_get_settings_definitions() {
172
  'placeholder' => __( 'Upload Date for SEO, ISO 8601 format', ARVE_SLUG ),
173
  )
174
  ),
 
 
 
 
 
 
 
175
  array(
176
  'attr' => 'autoplay',
177
  'label' => esc_html__('Autoplay', ARVE_SLUG ),
@@ -256,6 +267,12 @@ function arve_get_settings_definitions() {
256
  ),
257
  'description' => esc_html__( "Use ARVE to embed HTML5 video files. ARVE uses the browsers players instead of loading the mediaelement player that WP uses.", ARVE_SLUG ),
258
  ),
 
 
 
 
 
 
259
  array(
260
  'hide_from_settings' => true,
261
  'attr' => 'mp4',
@@ -295,7 +312,93 @@ function arve_get_settings_definitions() {
295
  'placeholder' => __( '.ogv file url for HTML5 video', ARVE_SLUG ),
296
  ),
297
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
298
  );
 
 
 
 
299
  }
300
 
301
  /**
@@ -352,7 +455,7 @@ function arve_get_host_properties() {
352
  ),
353
  'alugha' => array(
354
  'regex' => $s . 'alugha\.com/(1/)?videos/(?<id>[a-z0-9_\-]+)',
355
- 'embed_url' => 'https://alugha.com/embed/polymer-live/?v=%s',
356
  'default_params' => 'nologo=1',
357
  'auto_thumbnail' => true,
358
  'tests' => array(
@@ -376,7 +479,6 @@ function arve_get_host_properties() {
376
  array( 'url' => 'https://archive.org/details/arashyekt4_gmail_Cat', 'id' => 'arashyekt4' ),
377
  )
378
  ),
379
- #<iframe src="http://www.break.com/embed/2542591?embed=1" width="640" height="360" webkitallowfullscreen mozallowfullscreen allowfullscreen frameborder="0"></iframe><div>- Watch More <a href="http://www.break.com">Funny Videos</a>&nbsp;<font size=1><a href="http://view.break.com/2542591" target="_blank">First Person POV of Tornado Strike</a></font></div>
380
  'break' => array(
381
  'regex' => 'https?://(www\.|view\.)break\.com/(video/|embed/)?[-a-z0-9]*?(?<id>[0-9]+)',
382
  'embed_url' => 'http://break.com/embed/%s',
@@ -440,7 +542,6 @@ function arve_get_host_properties() {
440
  'embed_url' => 'http://media.mtvnservices.com/embed/mgid:arc:video:comedycentral.com:%s',
441
  'requires_src' => true,
442
  'auto_thumbnail' => false,
443
- 'requires_flash' => true,
444
  'tests' => array(
445
  array(
446
  'url' => 'http://media.mtvnservices.com/embed/mgid:arc:video:comedycentral.com:c80adf02-3e24-437a-8087-d6b77060571c',
@@ -503,7 +604,6 @@ function arve_get_host_properties() {
503
  'regex' => $s . 'dailymotion\.com/playlist/(?<id>[a-z0-9]+)',
504
  'embed_url' => 'https://www.dailymotion.com/widget/jukebox?list[]=%2Fplaylist%2F%s%2F1&',
505
  'auto_thumbnail' => false,
506
- 'requires_flash' => true,
507
  'tests' => array(
508
  array(
509
  'url' => 'http://www.dailymotion.com/playlist/x3yk8p_PHIL-MDS_nature-et-environnement-2011/1#video=xm3x45',
@@ -514,7 +614,7 @@ function arve_get_host_properties() {
514
  'facebook' => array(
515
  # https://www.facebook.com/TheKillingsOfTonyBlair/videos/vb.551089058285349/562955837098671/?type=2&theater
516
  #<iframe src="https://www.facebook.com/plugins/video.php?href=https%3A%2F%2Fwww.facebook.com%2FTheKillingsOfTonyBlair%2Fvideos%2Fvb.551089058285349%2F562955837098671%2F%3Ftype%3D2%26theater&width=500&show_text=false&height=280&appId" width="500" height="280" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowTransparency="true"></iframe>
517
- 'regex' => '(?<id>' . $s . 'facebook\.com/[-.a-z0-9]+/videos/[a-z.0-9/]+)',
518
  'url_encode_id' => true,
519
  'embed_url' => 'https://www.facebook.com/plugins/video.php?href=%s',
520
  #'embed_url' => 'https://www.facebook.com/video/embed?video_id=%s',
@@ -523,7 +623,10 @@ function arve_get_host_properties() {
523
  array(
524
  'url' => 'https://www.facebook.com/TheKillingsOfTonyBlair/videos/vb.551089058285349/562955837098671/?type=2&theater',
525
  'id' => 'https://www.facebook.com/TheKillingsOfTonyBlair/videos/vb.551089058285349/562955837098671/',
526
- 'img' => '',
 
 
 
527
  ),
528
  ),
529
  ),
@@ -562,7 +665,8 @@ function arve_get_host_properties() {
562
  'tests' => array(
563
  array(
564
  'url' => 'https://www.kickstarter.com/projects/obsidian/project-eternity?ref=discovery',
565
- 'id' => 'obsidian/project-eternity' ),
 
566
  array(
567
  'url' => 'https://www.kickstarter.com/projects/trinandtonic/friendship-postcards?ref=category_featured',
568
  'id' => 'trinandtonic/friendship-postcards'
@@ -572,10 +676,9 @@ function arve_get_host_properties() {
572
  'liveleak' => array(
573
  'name' => 'LiveLeak',
574
  'regex' => $s . 'liveleak\.com/(view|ll_embed)\?(?<id>(f|i)=[0-9a-z\_]+)',
575
- 'embed_url' => 'http://www.liveleak.com/ll_embed?%s',
576
- 'default_params' => 'wmode=transparent',
577
- 'auto_thumbnail' => false,
578
- 'requires_flash' => true,
579
  'tests' => array(
580
  array( 'url' => 'http://www.liveleak.com/view?i=703_1385224413', 'id' => 'i=703_1385224413' ), # Page/item 'i=' URL
581
  array( 'url' => 'http://www.liveleak.com/view?f=c85bdf5e45b2', 'id' => 'f=c85bdf5e45b2' ), #File f= URL
@@ -588,9 +691,8 @@ function arve_get_host_properties() {
588
  'livestream' => array(
589
  'regex' => $s . 'livestream\.com/accounts/(?<id>[0-9]+/events/[0-9]+(/videos/[0-9]+)?)',
590
  'embed_url' => 'https://livestream.com/accounts/%s/player',
591
- 'default_params' => 'width=1280&height=720&enableInfoAndActivity=true&defaultDrawer=&autoPlay=true&mute=false',
592
  'auto_thumbnail' => false,
593
- 'requires_flash' => true,
594
  'tests' => array(
595
  # https://livestream.com/accounts/23470201/events/7021166
596
  # <iframe id="ls_embed_1491401341" src="https://livestream.com/accounts/4683311/events/3747538/player?width=640&height=360&enableInfoAndActivity=true&defaultDrawer=&autoPlay=true&mute=false" width="640" height="360" frameborder="0" scrolling="no" allowfullscreen> </iframe>
@@ -607,8 +709,8 @@ function arve_get_host_properties() {
607
  'url' => true,
608
  'auto_thumbnail' => false,
609
  'tests' => array(
610
- array( 'url' => 'http://www.klagemauer.tv/9106', 'id' => 9106 ),
611
- array( 'url' => 'http://www.kla.tv/9122', 'id' => 9122 ),
612
  ),
613
  ),
614
  'metacafe' => array(
@@ -636,7 +738,7 @@ function arve_get_host_properties() {
636
  'auto_thumbnail' => true,
637
  'tests' => array(
638
  array( 'url' => 'http://mpora.com/videos/AAdphry14rkn', 'id' => 'AAdphry14rkn' ),
639
- array( 'url' => 'http://mpora.de/videos/AAdpxhiv6pqd', 'id' => 'AAdpxhiv6pqd' ),
640
  )
641
  ),
642
  'myspace' => array(
@@ -663,7 +765,6 @@ function arve_get_host_properties() {
663
  'regex' => $s . 'snotr\.com/(video|embed)/(?<id>[0-9]+)',
664
  'embed_url' => 'http://www.snotr.com/embed/%s',
665
  'auto_thumbnail' => false,
666
- 'requires_flash' => true,
667
  'tests' => array(
668
  array(
669
  'url' => 'http://www.snotr.com/video/12314/How_big_a_truck_blind_spot_really_is',
@@ -676,17 +777,12 @@ function arve_get_host_properties() {
676
  'embed_url' => 'http://media.mtvnservices.com/embed/mgid:arc:video:spike.com:%s',
677
  'requires_src' => true,
678
  'auto_thumbnail' => false,
679
- 'requires_flash' => true,
680
  'tests' => array(
681
- # <iframe src="http://media.mtvnservices.com/embed/mgid:arc:video:spike.com:6a219882-c412-46ce-a8c9-32e043396621" width="512" height="288" frameborder="0"></iframe><p style="text-align:left;background-color:#FFFFFF;padding:4px;margin-top:4px;margin-bottom:0px;font-family:Arial, Helvetica, sans-serif;font-size:12px;"><b><a href="http://www.spike.com/shows/ink-master">Ink Master</a></b></p></div></div>
682
  array(
683
  'url' => 'http://media.mtvnservices.com/embed/mgid:arc:video:spike.com:6a219882-c412-46ce-a8c9-32e043396621',
684
  'id' => '6a219882-c412-46ce-a8c9-32e043396621',
685
  ),
686
  ),
687
- 'test_ids' => array(
688
- '5afddf30-31d8-40fb-81e6-bb5c6f45525f',
689
- )
690
  ),
691
  'ted' => array(
692
  'name' => 'TED Talks',
@@ -694,7 +790,6 @@ function arve_get_host_properties() {
694
  'embed_url' => 'https://embed-ssl.ted.com/talks/%s.html',
695
  'auto_thumbnail' => true,
696
  'auto_title' => true,
697
- 'requires_flash' => true,
698
  'tests' => array(
699
  array(
700
  'url' => 'https://www.ted.com/talks/margaret_stewart_how_youtube_thinks_about_copyright',
@@ -725,16 +820,21 @@ function arve_get_host_properties() {
725
  ),
726
  ),
727
  'ustream' => array(
728
- 'regex' => $s . 'ustream\.tv/(channel/)?(?<id>[0-9]{8}|recorded/[0-9]{8}(/highlight/[0-9]+)?)',
729
  'embed_url' => 'http://www.ustream.tv/embed/%s',
730
  'default_params' => 'html5ui',
731
  'auto_thumbnail' => false,
732
  'aspect_ratio' => '480:270',
733
- 'requires_flash' => true,
734
  'tests' => array(
735
- array( 'url' => 'http://www.ustream.tv/recorded/59999872?utm_campaign=ustre.am&utm_source=ustre.am/:43KHS&utm_medium=social&utm_content=20170405204127', 'id' => 'recorded/59999872' ),
 
 
 
 
 
 
 
736
  ),
737
-
738
  ),
739
  'rutube' => array(
740
  'name' => 'RuTube.ru',
@@ -744,7 +844,7 @@ function arve_get_host_properties() {
744
  'tests' => array(
745
  array(
746
  'url' => 'https://rutube.ru/play/embed/9822149',
747
- 'id' => 9822149
748
  ),
749
  ),
750
  ),
@@ -778,12 +878,13 @@ function arve_get_host_properties() {
778
  ),
779
  'viddler' => array(
780
  'regex' => $s . 'viddler\.com/(embed|v)/(?<id>[a-z0-9]{8})',
781
- 'embed_url' => 'https://www.viddler.com/player/%s/',
782
- 'default_params' => 'wmode=transparent&player=full&f=1&disablebranding=1',
 
 
783
  'auto_thumbnail' => true,
784
  'auto_title' => true,
785
  'aspect_ratio' => '545:349',
786
- 'requires_flash' => true,
787
  'tests' => array(
788
  array(
789
  'url' => 'https://www.viddler.com/v/a695c468',
@@ -814,7 +915,7 @@ function arve_get_host_properties() {
814
  ),
815
  ),
816
  'vimeo' => array(
817
- 'regex' => 'https?://(player\.)?vimeo\.com/((video/)|(channels/[a-z]+/)|(groups/[a-z]+/videos/))?(?<id>[0-9]+)',
818
  'embed_url' => 'https://player.vimeo.com/video/%s',
819
  'default_params' => 'html5=1&title=1&byline=0&portrait=0',
820
  'auto_thumbnail' => true,
@@ -1114,9 +1215,10 @@ function arve_get_host_properties() {
1114
  */
1115
  ),
1116
  'youtubelist' => array(
1117
- 'regex' => $s . 'youtube\.com/(embed/videoseries|playlist)\?list=(?<id>[-a-z0-9]+)',
1118
  'name' => 'YouTube Playlist',
1119
  'embed_url' => 'https://www.youtube.com/embed/videoseries?list=%s',
 
1120
  'auto_thumbnail' => true,
1121
  'tests' => array(
1122
  array(
3
  function arve_get_options_defaults( $section ) {
4
 
5
  $options['main'] = array(
6
+ 'align_maxwidth' => 400,
7
+ 'align' => 'none',
8
+ 'always_enqueue_assets' => false,
9
+ 'autoplay' => false,
10
+ 'mode' => 'normal',
11
+ 'promote_link' => false,
12
+ 'video_maxwidth' => '',
13
+ 'wp_image_cache_time' => 18000,
14
+ 'last_settings_tab' => '',
15
+ 'wp_video_override' => true,
16
+ 'controlslist' => 'nodownload',
17
+ 'vimeo_api_token' => '',
18
+ 'iframe_flash' => true,
19
+ 'youtube_nocookie' => true,
20
  );
21
 
22
  $properties = arve_get_host_properties();
92
  $current_mode_name = $options['mode'];
93
  }
94
 
95
+ $definitions = array(
96
  array(
97
  'hide_from_settings' => true,
98
  'attr' => 'url',
104
  'description' => sprintf(
105
  __( 'Post the URL of the video here. For %s and any <a href="%s">unlisted</a> video hosts paste their iframe embed codes or its src URL in here (providers embeds need to be responsive).', ARVE_SLUG ),
106
  $embed_code_only,
107
+ 'https://nextgenthemes.com/arve-pro/#video-host-support'
108
  )
109
  ),
110
  array(
176
  'placeholder' => __( 'Upload Date for SEO, ISO 8601 format', ARVE_SLUG ),
177
  )
178
  ),
179
+ array(
180
+ 'hide_from_settings' => true,
181
+ 'attr' => 'duration',
182
+ 'label' => esc_html__( 'Duration', ARVE_SLUG ),
183
+ 'type' => 'text',
184
+ 'description' => __( 'Duration in this format. <code>1HJ2M3S</code> for 1 hour, 2 minutes and 3 seconds. <code>5M</code> for 5 minutes.', ARVE_SLUG ),
185
+ ),
186
  array(
187
  'attr' => 'autoplay',
188
  'label' => esc_html__('Autoplay', ARVE_SLUG ),
267
  ),
268
  'description' => esc_html__( "Use ARVE to embed HTML5 video files. ARVE uses the browsers players instead of loading the mediaelement player that WP uses.", ARVE_SLUG ),
269
  ),
270
+ array(
271
+ 'attr' => 'controlslist',
272
+ 'label' => esc_html__( 'Chrome HTML5 Player controls', ARVE_SLUG ),
273
+ 'type' => 'text',
274
+ 'description' => __( "controlsList attribute on &lt;video&gt; for example use <code>nodownload nofullscreen noremoteplayback</code> to hide the download and the fullscreen button on the chrome HTML5 video player and disable remote playback.", ARVE_SLUG ),
275
+ ),
276
  array(
277
  'hide_from_settings' => true,
278
  'attr' => 'mp4',
312
  'placeholder' => __( '.ogv file url for HTML5 video', ARVE_SLUG ),
313
  ),
314
  ),
315
+ array(
316
+ 'hide_from_settings' => true,
317
+ 'attr' => 'controls',
318
+ 'label' => esc_html__( 'Show Controls?', ARVE_SLUG ),
319
+ 'type' => 'select',
320
+ 'options' => array(
321
+ '' => esc_html__( 'Yes', ARVE_SLUG ),
322
+ 'no' => esc_html__( 'No', ARVE_SLUG ),
323
+ ),
324
+ 'description' => esc_html__( 'Show controls on HTML5 video.', ARVE_SLUG ),
325
+ ),
326
+ array(
327
+ 'hide_from_settings' => true,
328
+ 'attr' => 'loop',
329
+ 'label' => esc_html__( 'Loop?', ARVE_SLUG ),
330
+ 'type' => 'select',
331
+ 'options' => array(
332
+ '' => esc_html__( 'No', ARVE_SLUG ),
333
+ 'yes' => esc_html__( 'Yes', ARVE_SLUG ),
334
+ ),
335
+ 'description' => esc_html__( 'Loop HTML5 video.', ARVE_SLUG ),
336
+ ),
337
+ array(
338
+ 'hide_from_settings' => true,
339
+ 'attr' => 'muted',
340
+ 'label' => esc_html__( 'Mute?', ARVE_SLUG ),
341
+ 'type' => 'select',
342
+ 'options' => array(
343
+ '' => esc_html__( 'No', ARVE_SLUG ),
344
+ 'yes' => esc_html__( 'Yes', ARVE_SLUG ),
345
+ ),
346
+ 'description' => esc_html__( 'Mute HTML5 video.', ARVE_SLUG ),
347
+ ),
348
+ array(
349
+ 'hide_from_sc' => true,
350
+ 'attr' => 'iframe_flash',
351
+ 'label' => esc_html__( 'Allow Flash for general iframe?', ARVE_SLUG ),
352
+ 'type' => 'select',
353
+ 'options' => array(
354
+ 'yes' => esc_html__( 'Allow Flash', ARVE_SLUG ),
355
+ 'no' => esc_html__( 'Do not allow Flash', ARVE_SLUG ),
356
+ ),
357
+ 'description' => sprintf(
358
+ __( 'It is recommented to have this disabled if you not embed videos from a <a href="%s">not listed provider</a> that still requires flash and is not listed here. Disable flash will make general iframe embeds more secure, prevents evil redirection from within the iframe. This also makes the Pro Addon\'s \'Disable Links\' feature possible for unlisted providers. Note you can still put <code>disable_flash="yes/no"</code> on individual shortcodes to overwrite this if needed.', ARVE_SLUG ),
359
+ 'https://nextgenthemes.com/plugins/arve-pro/#support-table'
360
+ ),
361
+ ),
362
+ array(
363
+ 'hide_from_sc' => true,
364
+ 'attr' => 'always_enqueue_assets',
365
+ 'label' => esc_html__( 'Assent loading', ARVE_SLUG ),
366
+ 'type' => 'select',
367
+ 'options' => array(
368
+ 'no' => esc_html__( 'When ARVE video is detected', ARVE_SLUG ),
369
+ 'yes' => esc_html__( 'Always', ARVE_SLUG ),
370
+ ),
371
+ 'description' => sprintf(
372
+ __( 'Usually ARVE will loads its scripts and styles only on pages what need them. In case your content is loaded via AJAX or the styles are not loaded for another reason you may have to enable this option', ARVE_SLUG ),
373
+ 'https://nextgenthemes.com/plugins/arve-pro/#support-table'
374
+ ),
375
+ ),
376
+ array(
377
+ 'hide_from_sc' => true,
378
+ 'attr' => 'youtube_nocookie',
379
+ 'label' => esc_html__( 'Use youtube-nocookie.com url?', ARVE_SLUG ),
380
+ 'type' => 'select',
381
+ 'options' => array(
382
+ 'yes' => esc_html__( 'Yes', ARVE_SLUG ),
383
+ 'no' => esc_html__( 'No', ARVE_SLUG ),
384
+ ),
385
+ 'description' => esc_html__( 'Privacy enhanced mode, will NOT disable cookies but only sets them when a user starts to play a video. There is currently a youtube bug that opens highlighed video boxes with a wrong -nocookie.com url so you need to disble this if you need those.' ),
386
+ ),
387
+ array(
388
+ 'hide_from_sc' => true,
389
+ 'attr' => 'vimeo_api_token',
390
+ 'label' => esc_html__( 'Video API Token', ARVE_SLUG ),
391
+ 'type' => 'text',
392
+ 'description' => sprintf(
393
+ __( 'Needed for <a href="%s">Random Video Addon</a>.', ARVE_SLUG ),
394
+ 'https://nextgenthemes.local/plugins/arve-random-video/'
395
+ ),
396
+ ),
397
  );
398
+
399
+ $definitions = apply_filters( 'arve_settings_definitions', $definitions );
400
+
401
+ return $definitions;
402
  }
403
 
404
  /**
455
  ),
456
  'alugha' => array(
457
  'regex' => $s . 'alugha\.com/(1/)?videos/(?<id>[a-z0-9_\-]+)',
458
+ 'embed_url' => 'https://alugha.com/embed/web-player/?v=%s',
459
  'default_params' => 'nologo=1',
460
  'auto_thumbnail' => true,
461
  'tests' => array(
479
  array( 'url' => 'https://archive.org/details/arashyekt4_gmail_Cat', 'id' => 'arashyekt4' ),
480
  )
481
  ),
 
482
  'break' => array(
483
  'regex' => 'https?://(www\.|view\.)break\.com/(video/|embed/)?[-a-z0-9]*?(?<id>[0-9]+)',
484
  'embed_url' => 'http://break.com/embed/%s',
542
  'embed_url' => 'http://media.mtvnservices.com/embed/mgid:arc:video:comedycentral.com:%s',
543
  'requires_src' => true,
544
  'auto_thumbnail' => false,
 
545
  'tests' => array(
546
  array(
547
  'url' => 'http://media.mtvnservices.com/embed/mgid:arc:video:comedycentral.com:c80adf02-3e24-437a-8087-d6b77060571c',
604
  'regex' => $s . 'dailymotion\.com/playlist/(?<id>[a-z0-9]+)',
605
  'embed_url' => 'https://www.dailymotion.com/widget/jukebox?list[]=%2Fplaylist%2F%s%2F1&',
606
  'auto_thumbnail' => false,
 
607
  'tests' => array(
608
  array(
609
  'url' => 'http://www.dailymotion.com/playlist/x3yk8p_PHIL-MDS_nature-et-environnement-2011/1#video=xm3x45',
614
  'facebook' => array(
615
  # https://www.facebook.com/TheKillingsOfTonyBlair/videos/vb.551089058285349/562955837098671/?type=2&theater
616
  #<iframe src="https://www.facebook.com/plugins/video.php?href=https%3A%2F%2Fwww.facebook.com%2FTheKillingsOfTonyBlair%2Fvideos%2Fvb.551089058285349%2F562955837098671%2F%3Ftype%3D2%26theater&width=500&show_text=false&height=280&appId" width="500" height="280" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowTransparency="true"></iframe>
617
+ 'regex' => '(?<id>https?://([a-z]+\.)?facebook\.com/[-.a-z0-9]+/videos/[a-z.0-9/]+)',
618
  'url_encode_id' => true,
619
  'embed_url' => 'https://www.facebook.com/plugins/video.php?href=%s',
620
  #'embed_url' => 'https://www.facebook.com/video/embed?video_id=%s',
623
  array(
624
  'url' => 'https://www.facebook.com/TheKillingsOfTonyBlair/videos/vb.551089058285349/562955837098671/?type=2&theater',
625
  'id' => 'https://www.facebook.com/TheKillingsOfTonyBlair/videos/vb.551089058285349/562955837098671/',
626
+ ),
627
+ array(
628
+ 'url' => 'https://web.facebook.com/XTvideo/videos/10153906059711871/',
629
+ 'id' => 'https://web.facebook.com/XTvideo/videos/10153906059711871/',
630
  ),
631
  ),
632
  ),
665
  'tests' => array(
666
  array(
667
  'url' => 'https://www.kickstarter.com/projects/obsidian/project-eternity?ref=discovery',
668
+ 'id' => 'obsidian/project-eternity'
669
+ ),
670
  array(
671
  'url' => 'https://www.kickstarter.com/projects/trinandtonic/friendship-postcards?ref=category_featured',
672
  'id' => 'trinandtonic/friendship-postcards'
676
  'liveleak' => array(
677
  'name' => 'LiveLeak',
678
  'regex' => $s . 'liveleak\.com/(view|ll_embed)\?(?<id>(f|i)=[0-9a-z\_]+)',
679
+ 'embed_url' => 'https://www.liveleak.com/ll_embed?%s',
680
+ 'default_params' => '',
681
+ 'auto_thumbnail' => true,
 
682
  'tests' => array(
683
  array( 'url' => 'http://www.liveleak.com/view?i=703_1385224413', 'id' => 'i=703_1385224413' ), # Page/item 'i=' URL
684
  array( 'url' => 'http://www.liveleak.com/view?f=c85bdf5e45b2', 'id' => 'f=c85bdf5e45b2' ), #File f= URL
691
  'livestream' => array(
692
  'regex' => $s . 'livestream\.com/accounts/(?<id>[0-9]+/events/[0-9]+(/videos/[0-9]+)?)',
693
  'embed_url' => 'https://livestream.com/accounts/%s/player',
694
+ 'default_params' => 'width=1280&height=720&enableInfoAndActivity=true&defaultDrawer=&mute=false',
695
  'auto_thumbnail' => false,
 
696
  'tests' => array(
697
  # https://livestream.com/accounts/23470201/events/7021166
698
  # <iframe id="ls_embed_1491401341" src="https://livestream.com/accounts/4683311/events/3747538/player?width=640&height=360&enableInfoAndActivity=true&defaultDrawer=&autoPlay=true&mute=false" width="640" height="360" frameborder="0" scrolling="no" allowfullscreen> </iframe>
709
  'url' => true,
710
  'auto_thumbnail' => false,
711
  'tests' => array(
712
+ array( 'url' => 'http://www.klagemauer.tv/9106', 'id' => 9106 ),
713
+ array( 'url' => 'http://www.kla.tv/9122', 'id' => 9122 ),
714
  ),
715
  ),
716
  'metacafe' => array(
738
  'auto_thumbnail' => true,
739
  'tests' => array(
740
  array( 'url' => 'http://mpora.com/videos/AAdphry14rkn', 'id' => 'AAdphry14rkn' ),
741
+ array( 'url' => 'http://mpora.de/videos/AAdpxhiv6pqd', 'id' => 'AAdpxhiv6pqd' ),
742
  )
743
  ),
744
  'myspace' => array(
765
  'regex' => $s . 'snotr\.com/(video|embed)/(?<id>[0-9]+)',
766
  'embed_url' => 'http://www.snotr.com/embed/%s',
767
  'auto_thumbnail' => false,
 
768
  'tests' => array(
769
  array(
770
  'url' => 'http://www.snotr.com/video/12314/How_big_a_truck_blind_spot_really_is',
777
  'embed_url' => 'http://media.mtvnservices.com/embed/mgid:arc:video:spike.com:%s',
778
  'requires_src' => true,
779
  'auto_thumbnail' => false,
 
780
  'tests' => array(
 
781
  array(
782
  'url' => 'http://media.mtvnservices.com/embed/mgid:arc:video:spike.com:6a219882-c412-46ce-a8c9-32e043396621',
783
  'id' => '6a219882-c412-46ce-a8c9-32e043396621',
784
  ),
785
  ),
 
 
 
786
  ),
787
  'ted' => array(
788
  'name' => 'TED Talks',
790
  'embed_url' => 'https://embed-ssl.ted.com/talks/%s.html',
791
  'auto_thumbnail' => true,
792
  'auto_title' => true,
 
793
  'tests' => array(
794
  array(
795
  'url' => 'https://www.ted.com/talks/margaret_stewart_how_youtube_thinks_about_copyright',
820
  ),
821
  ),
822
  'ustream' => array(
823
+ 'regex' => $s . 'ustream\.tv/(embed/)?(channel/)?(?<id>[0-9]+|recorded/[0-9]+(/highlight/[0-9]+)?)',
824
  'embed_url' => 'http://www.ustream.tv/embed/%s',
825
  'default_params' => 'html5ui',
826
  'auto_thumbnail' => false,
827
  'aspect_ratio' => '480:270',
 
828
  'tests' => array(
829
+ array(
830
+ 'url' => 'http://www.ustream.tv/recorded/59999872?utm_campaign=ustre.am&utm_source=ustre.am/:43KHS&utm_medium=social&utm_content=20170405204127',
831
+ 'id' => 'recorded/59999872'
832
+ ),
833
+ array(
834
+ 'url' => 'http://www.ustream.tv/embed/17074538?wmode=transparent&v=3&autoplay=false',
835
+ 'id' => '17074538'
836
+ ),
837
  ),
 
838
  ),
839
  'rutube' => array(
840
  'name' => 'RuTube.ru',
844
  'tests' => array(
845
  array(
846
  'url' => 'https://rutube.ru/play/embed/9822149',
847
+ 'id' => '9822149'
848
  ),
849
  ),
850
  ),
878
  ),
879
  'viddler' => array(
880
  'regex' => $s . 'viddler\.com/(embed|v)/(?<id>[a-z0-9]{8})',
881
+ #'embed_url' => 'https://www.viddler.com/player/%s/',
882
+ #'default_params' => 'wmode=transparent&player=full&f=1&disablebranding=1',
883
+ 'embed_url' => 'https://www.viddler.com/embed/%s/',
884
+ 'default_params' => '?f=1&player=full&secret=59822701&disablebackwardseek=false&disableseek=false&disableforwardseek=false&make_responsive=false&loop=false&nologo=false&hd=false',
885
  'auto_thumbnail' => true,
886
  'auto_title' => true,
887
  'aspect_ratio' => '545:349',
 
888
  'tests' => array(
889
  array(
890
  'url' => 'https://www.viddler.com/v/a695c468',
915
  ),
916
  ),
917
  'vimeo' => array(
918
+ 'regex' => 'https?://(player\.)?vimeo\.com/((video/)|(channels/[a-z]+/)|(groups/[a-z]+/videos/))?(?<id>[0-9]+)(?<vimeo_secret>/[0-9a-z]+)?',
919
  'embed_url' => 'https://player.vimeo.com/video/%s',
920
  'default_params' => 'html5=1&title=1&byline=0&portrait=0',
921
  'auto_thumbnail' => true,
1215
  */
1216
  ),
1217
  'youtubelist' => array(
1218
+ 'regex' => $s . 'youtube\.com/(embed/videoseries|playlist)\?list=(?<id>[-a-z0-9_]+)',
1219
  'name' => 'YouTube Playlist',
1220
  'embed_url' => 'https://www.youtube.com/embed/videoseries?list=%s',
1221
+ 'default_params' => 'iv_load_policy=3&modestbranding=1&rel=0&autohide=1&playsinline=1',
1222
  'auto_thumbnail' => true,
1223
  'tests' => array(
1224
  array(
shared/index.php CHANGED
File without changes
uninstall.php CHANGED
@@ -29,4 +29,3 @@
29
  if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
30
  exit;
31
  }
32
-
29
  if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
30
  exit;
31
  }
 
vendor/autoload.php ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // autoload.php @generated by Composer
4
+
5
+ require_once __DIR__ . '/composer/autoload_real.php';
6
+
7
+ return ComposerAutoloaderInitfb499b858061dcbc3a5ecc8995cf88b8::getLoader();
vendor/composer/ClassLoader.php ADDED
@@ -0,0 +1,445 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of Composer.
5
+ *
6
+ * (c) Nils Adermann <naderman@naderman.de>
7
+ * Jordi Boggiano <j.boggiano@seld.be>
8
+ *
9
+ * For the full copyright and license information, please view the LICENSE
10
+ * file that was distributed with this source code.
11
+ */
12
+
13
+ namespace Composer\Autoload;
14
+
15
+ /**
16
+ * ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
17
+ *
18
+ * $loader = new \Composer\Autoload\ClassLoader();
19
+ *
20
+ * // register classes with namespaces
21
+ * $loader->add('Symfony\Component', __DIR__.'/component');
22
+ * $loader->add('Symfony', __DIR__.'/framework');
23
+ *
24
+ * // activate the autoloader
25
+ * $loader->register();
26
+ *
27
+ * // to enable searching the include path (eg. for PEAR packages)
28
+ * $loader->setUseIncludePath(true);
29
+ *
30
+ * In this example, if you try to use a class in the Symfony\Component
31
+ * namespace or one of its children (Symfony\Component\Console for instance),
32
+ * the autoloader will first look for the class under the component/
33
+ * directory, and it will then fallback to the framework/ directory if not
34
+ * found before giving up.
35
+ *
36
+ * This class is loosely based on the Symfony UniversalClassLoader.
37
+ *
38
+ * @author Fabien Potencier <fabien@symfony.com>
39
+ * @author Jordi Boggiano <j.boggiano@seld.be>
40
+ * @see http://www.php-fig.org/psr/psr-0/
41
+ * @see http://www.php-fig.org/psr/psr-4/
42
+ */
43
+ class ClassLoader
44
+ {
45
+ // PSR-4
46
+ private $prefixLengthsPsr4 = array();
47
+ private $prefixDirsPsr4 = array();
48
+ private $fallbackDirsPsr4 = array();
49
+
50
+ // PSR-0
51
+ private $prefixesPsr0 = array();
52
+ private $fallbackDirsPsr0 = array();
53
+
54
+ private $useIncludePath = false;
55
+ private $classMap = array();
56
+ private $classMapAuthoritative = false;
57
+ private $missingClasses = array();
58
+ private $apcuPrefix;
59
+
60
+ public function getPrefixes()
61
+ {
62
+ if (!empty($this->prefixesPsr0)) {
63
+ return call_user_func_array('array_merge', $this->prefixesPsr0);
64
+ }
65
+
66
+ return array();
67
+ }
68
+
69
+ public function getPrefixesPsr4()
70
+ {
71
+ return $this->prefixDirsPsr4;
72
+ }
73
+
74
+ public function getFallbackDirs()
75
+ {
76
+ return $this->fallbackDirsPsr0;
77
+ }
78
+
79
+ public function getFallbackDirsPsr4()
80
+ {
81
+ return $this->fallbackDirsPsr4;
82
+ }
83
+
84
+ public function getClassMap()
85
+ {
86
+ return $this->classMap;
87
+ }
88
+
89
+ /**
90
+ * @param array $classMap Class to filename map
91
+ */
92
+ public function addClassMap(array $classMap)
93
+ {
94
+ if ($this->classMap) {
95
+ $this->classMap = array_merge($this->classMap, $classMap);
96
+ } else {
97
+ $this->classMap = $classMap;
98
+ }
99
+ }
100
+
101
+ /**
102
+ * Registers a set of PSR-0 directories for a given prefix, either
103
+ * appending or prepending to the ones previously set for this prefix.
104
+ *
105
+ * @param string $prefix The prefix
106
+ * @param array|string $paths The PSR-0 root directories
107
+ * @param bool $prepend Whether to prepend the directories
108
+ */
109
+ public function add($prefix, $paths, $prepend = false)
110
+ {
111
+ if (!$prefix) {
112
+ if ($prepend) {
113
+ $this->fallbackDirsPsr0 = array_merge(
114
+ (array) $paths,
115
+ $this->fallbackDirsPsr0
116
+ );
117
+ } else {
118
+ $this->fallbackDirsPsr0 = array_merge(
119
+ $this->fallbackDirsPsr0,
120
+ (array) $paths
121
+ );
122
+ }
123
+
124
+ return;
125
+ }
126
+
127
+ $first = $prefix[0];
128
+ if (!isset($this->prefixesPsr0[$first][$prefix])) {
129
+ $this->prefixesPsr0[$first][$prefix] = (array) $paths;
130
+
131
+ return;
132
+ }
133
+ if ($prepend) {
134
+ $this->prefixesPsr0[$first][$prefix] = array_merge(
135
+ (array) $paths,
136
+ $this->prefixesPsr0[$first][$prefix]
137
+ );
138
+ } else {
139
+ $this->prefixesPsr0[$first][$prefix] = array_merge(
140
+ $this->prefixesPsr0[$first][$prefix],
141
+ (array) $paths
142
+ );
143
+ }
144
+ }
145
+
146
+ /**
147
+ * Registers a set of PSR-4 directories for a given namespace, either
148
+ * appending or prepending to the ones previously set for this namespace.
149
+ *
150
+ * @param string $prefix The prefix/namespace, with trailing '\\'
151
+ * @param array|string $paths The PSR-4 base directories
152
+ * @param bool $prepend Whether to prepend the directories
153
+ *
154
+ * @throws \InvalidArgumentException
155
+ */
156
+ public function addPsr4($prefix, $paths, $prepend = false)
157
+ {
158
+ if (!$prefix) {
159
+ // Register directories for the root namespace.
160
+ if ($prepend) {
161
+ $this->fallbackDirsPsr4 = array_merge(
162
+ (array) $paths,
163
+ $this->fallbackDirsPsr4
164
+ );
165
+ } else {
166
+ $this->fallbackDirsPsr4 = array_merge(
167
+ $this->fallbackDirsPsr4,
168
+ (array) $paths
169
+ );
170
+ }
171
+ } elseif (!isset($this->prefixDirsPsr4[$prefix])) {
172
+ // Register directories for a new namespace.
173
+ $length = strlen($prefix);
174
+ if ('\\' !== $prefix[$length - 1]) {
175
+ throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
176
+ }
177
+ $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
178
+ $this->prefixDirsPsr4[$prefix] = (array) $paths;
179
+ } elseif ($prepend) {
180
+ // Prepend directories for an already registered namespace.
181
+ $this->prefixDirsPsr4[$prefix] = array_merge(
182
+ (array) $paths,
183
+ $this->prefixDirsPsr4[$prefix]
184
+ );
185
+ } else {
186
+ // Append directories for an already registered namespace.
187
+ $this->prefixDirsPsr4[$prefix] = array_merge(
188
+ $this->prefixDirsPsr4[$prefix],
189
+ (array) $paths
190
+ );
191
+ }
192
+ }
193
+
194
+ /**
195
+ * Registers a set of PSR-0 directories for a given prefix,
196
+ * replacing any others previously set for this prefix.
197
+ *
198
+ * @param string $prefix The prefix
199
+ * @param array|string $paths The PSR-0 base directories
200
+ */
201
+ public function set($prefix, $paths)
202
+ {
203
+ if (!$prefix) {
204
+ $this->fallbackDirsPsr0 = (array) $paths;
205
+ } else {
206
+ $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
207
+ }
208
+ }
209
+
210
+ /**
211
+ * Registers a set of PSR-4 directories for a given namespace,
212
+ * replacing any others previously set for this namespace.
213
+ *
214
+ * @param string $prefix The prefix/namespace, with trailing '\\'
215
+ * @param array|string $paths The PSR-4 base directories
216
+ *
217
+ * @throws \InvalidArgumentException
218
+ */
219
+ public function setPsr4($prefix, $paths)
220
+ {
221
+ if (!$prefix) {
222
+ $this->fallbackDirsPsr4 = (array) $paths;
223
+ } else {
224
+ $length = strlen($prefix);
225
+ if ('\\' !== $prefix[$length - 1]) {
226
+ throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
227
+ }
228
+ $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
229
+ $this->prefixDirsPsr4[$prefix] = (array) $paths;
230
+ }
231
+ }
232
+
233
+ /**
234
+ * Turns on searching the include path for class files.
235
+ *
236
+ * @param bool $useIncludePath
237
+ */
238
+ public function setUseIncludePath($useIncludePath)
239
+ {
240
+ $this->useIncludePath = $useIncludePath;
241
+ }
242
+
243
+ /**
244
+ * Can be used to check if the autoloader uses the include path to check
245
+ * for classes.
246
+ *
247
+ * @return bool
248
+ */
249
+ public function getUseIncludePath()
250
+ {
251
+ return $this->useIncludePath;
252
+ }
253
+
254
+ /**
255
+ * Turns off searching the prefix and fallback directories for classes
256
+ * that have not been registered with the class map.
257
+ *
258
+ * @param bool $classMapAuthoritative
259
+ */
260
+ public function setClassMapAuthoritative($classMapAuthoritative)
261
+ {
262
+ $this->classMapAuthoritative = $classMapAuthoritative;
263
+ }
264
+
265
+ /**
266
+ * Should class lookup fail if not found in the current class map?
267
+ *
268
+ * @return bool
269
+ */
270
+ public function isClassMapAuthoritative()
271
+ {
272
+ return $this->classMapAuthoritative;
273
+ }
274
+
275
+ /**
276
+ * APCu prefix to use to cache found/not-found classes, if the extension is enabled.
277
+ *
278
+ * @param string|null $apcuPrefix
279
+ */
280
+ public function setApcuPrefix($apcuPrefix)
281
+ {
282
+ $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null;
283
+ }
284
+
285
+ /**
286
+ * The APCu prefix in use, or null if APCu caching is not enabled.
287
+ *
288
+ * @return string|null
289
+ */
290
+ public function getApcuPrefix()
291
+ {
292
+ return $this->apcuPrefix;
293
+ }
294
+
295
+ /**
296
+ * Registers this instance as an autoloader.
297
+ *
298
+ * @param bool $prepend Whether to prepend the autoloader or not
299
+ */
300
+ public function register($prepend = false)
301
+ {
302
+ spl_autoload_register(array($this, 'loadClass'), true, $prepend);
303
+ }
304
+
305
+ /**
306
+ * Unregisters this instance as an autoloader.
307
+ */
308
+ public function unregister()
309
+ {
310
+ spl_autoload_unregister(array($this, 'loadClass'));
311
+ }
312
+
313
+ /**
314
+ * Loads the given class or interface.
315
+ *
316
+ * @param string $class The name of the class
317
+ * @return bool|null True if loaded, null otherwise
318
+ */
319
+ public function loadClass($class)
320
+ {
321
+ if ($file = $this->findFile($class)) {
322
+ includeFile($file);
323
+
324
+ return true;
325
+ }
326
+ }
327
+
328
+ /**
329
+ * Finds the path to the file where the class is defined.
330
+ *
331
+ * @param string $class The name of the class
332
+ *
333
+ * @return string|false The path if found, false otherwise
334
+ */
335
+ public function findFile($class)
336
+ {
337
+ // class map lookup
338
+ if (isset($this->classMap[$class])) {
339
+ return $this->classMap[$class];
340
+ }
341
+ if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
342
+ return false;
343
+ }
344
+ if (null !== $this->apcuPrefix) {
345
+ $file = apcu_fetch($this->apcuPrefix.$class, $hit);
346
+ if ($hit) {
347
+ return $file;
348
+ }
349
+ }
350
+
351
+ $file = $this->findFileWithExtension($class, '.php');
352
+
353
+ // Search for Hack files if we are running on HHVM
354
+ if (false === $file && defined('HHVM_VERSION')) {
355
+ $file = $this->findFileWithExtension($class, '.hh');
356
+ }
357
+
358
+ if (null !== $this->apcuPrefix) {
359
+ apcu_add($this->apcuPrefix.$class, $file);
360
+ }
361
+
362
+ if (false === $file) {
363
+ // Remember that this class does not exist.
364
+ $this->missingClasses[$class] = true;
365
+ }
366
+
367
+ return $file;
368
+ }
369
+
370
+ private function findFileWithExtension($class, $ext)
371
+ {
372
+ // PSR-4 lookup
373
+ $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
374
+
375
+ $first = $class[0];
376
+ if (isset($this->prefixLengthsPsr4[$first])) {
377
+ $subPath = $class;
378
+ while (false !== $lastPos = strrpos($subPath, '\\')) {
379
+ $subPath = substr($subPath, 0, $lastPos);
380
+ $search = $subPath.'\\';
381
+ if (isset($this->prefixDirsPsr4[$search])) {
382
+ $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
383
+ foreach ($this->prefixDirsPsr4[$search] as $dir) {
384
+ if (file_exists($file = $dir . $pathEnd)) {
385
+ return $file;
386
+ }
387
+ }
388
+ }
389
+ }
390
+ }
391
+
392
+ // PSR-4 fallback dirs
393
+ foreach ($this->fallbackDirsPsr4 as $dir) {
394
+ if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
395
+ return $file;
396
+ }
397
+ }
398
+
399
+ // PSR-0 lookup
400
+ if (false !== $pos = strrpos($class, '\\')) {
401
+ // namespaced class name
402
+ $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
403
+ . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
404
+ } else {
405
+ // PEAR-like class name
406
+ $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
407
+ }
408
+
409
+ if (isset($this->prefixesPsr0[$first])) {
410
+ foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
411
+ if (0 === strpos($class, $prefix)) {
412
+ foreach ($dirs as $dir) {
413
+ if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
414
+ return $file;
415
+ }
416
+ }
417
+ }
418
+ }
419
+ }
420
+
421
+ // PSR-0 fallback dirs
422
+ foreach ($this->fallbackDirsPsr0 as $dir) {
423
+ if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
424
+ return $file;
425
+ }
426
+ }
427
+
428
+ // PSR-0 include paths.
429
+ if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
430
+ return $file;
431
+ }
432
+
433
+ return false;
434
+ }
435
+ }
436
+
437
+ /**
438
+ * Scope isolated include.
439
+ *
440
+ * Prevents access to $this/self from included files.
441
+ */
442
+ function includeFile($file)
443
+ {
444
+ include $file;
445
+ }
vendor/composer/LICENSE ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ Copyright (c) Nils Adermann, Jordi Boggiano
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ of this software and associated documentation files (the "Software"), to deal
6
+ in the Software without restriction, including without limitation the rights
7
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the Software is furnished
9
+ to do so, subject to the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all
12
+ copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20
+ THE SOFTWARE.
21
+
vendor/composer/autoload_classmap.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // autoload_classmap.php @generated by Composer
4
+
5
+ $vendorDir = dirname(dirname(__FILE__));
6
+ $baseDir = dirname($vendorDir);
7
+
8
+ return array(
9
+ );
vendor/composer/autoload_namespaces.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // autoload_namespaces.php @generated by Composer
4
+
5
+ $vendorDir = dirname(dirname(__FILE__));
6
+ $baseDir = dirname($vendorDir);
7
+
8
+ return array(
9
+ );
vendor/composer/autoload_psr4.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // autoload_psr4.php @generated by Composer
4
+
5
+ $vendorDir = dirname(dirname(__FILE__));
6
+ $baseDir = dirname($vendorDir);
7
+
8
+ return array(
9
+ 'Vimeo\\' => array($vendorDir . '/vimeo/vimeo-api/src/Vimeo'),
10
+ 'Composer\\Installers\\' => array($vendorDir . '/composer/installers/src/Composer/Installers'),
11
+ );
vendor/composer/autoload_real.php ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // autoload_real.php @generated by Composer
4
+
5
+ class ComposerAutoloaderInitfb499b858061dcbc3a5ecc8995cf88b8
6
+ {
7
+ private static $loader;
8
+
9
+ public static function loadClassLoader($class)
10
+ {
11
+ if ('Composer\Autoload\ClassLoader' === $class) {
12
+ require __DIR__ . '/ClassLoader.php';
13
+ }
14
+ }
15
+
16
+ public static function getLoader()
17
+ {
18
+ if (null !== self::$loader) {
19
+ return self::$loader;
20
+ }
21
+
22
+ spl_autoload_register(array('ComposerAutoloaderInitfb499b858061dcbc3a5ecc8995cf88b8', 'loadClassLoader'), true, true);
23
+ self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInitfb499b858061dcbc3a5ecc8995cf88b8', 'loadClassLoader'));
25
+
26
+ $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
+ if ($useStaticLoader) {
28
+ require_once __DIR__ . '/autoload_static.php';
29
+
30
+ call_user_func(\Composer\Autoload\ComposerStaticInitfb499b858061dcbc3a5ecc8995cf88b8::getInitializer($loader));
31
+ } else {
32
+ $map = require __DIR__ . '/autoload_namespaces.php';
33
+ foreach ($map as $namespace => $path) {
34
+ $loader->set($namespace, $path);
35
+ }
36
+
37
+ $map = require __DIR__ . '/autoload_psr4.php';
38
+ foreach ($map as $namespace => $path) {
39
+ $loader->setPsr4($namespace, $path);
40
+ }
41
+
42
+ $classMap = require __DIR__ . '/autoload_classmap.php';
43
+ if ($classMap) {
44
+ $loader->addClassMap($classMap);
45
+ }
46
+ }
47
+
48
+ $loader->register(true);
49
+
50
+ return $loader;
51
+ }
52
+ }
vendor/composer/autoload_static.php ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // autoload_static.php @generated by Composer
4
+
5
+ namespace Composer\Autoload;
6
+
7
+ class ComposerStaticInitfb499b858061dcbc3a5ecc8995cf88b8
8
+ {
9
+ public static $prefixLengthsPsr4 = array (
10
+ 'V' =>
11
+ array (
12
+ 'Vimeo\\' => 6,
13
+ ),
14
+ 'C' =>
15
+ array (
16
+ 'Composer\\Installers\\' => 20,
17
+ ),
18
+ );
19
+
20
+ public static $prefixDirsPsr4 = array (
21
+ 'Vimeo\\' =>
22
+ array (
23
+ 0 => __DIR__ . '/..' . '/vimeo/vimeo-api/src/Vimeo',
24
+ ),
25
+ 'Composer\\Installers\\' =>
26
+ array (
27
+ 0 => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers',
28
+ ),
29
+ );
30
+
31
+ public static function getInitializer(ClassLoader $loader)
32
+ {
33
+ return \Closure::bind(function () use ($loader) {
34
+ $loader->prefixLengthsPsr4 = ComposerStaticInitfb499b858061dcbc3a5ecc8995cf88b8::$prefixLengthsPsr4;
35
+ $loader->prefixDirsPsr4 = ComposerStaticInitfb499b858061dcbc3a5ecc8995cf88b8::$prefixDirsPsr4;
36
+
37
+ }, null, ClassLoader::class);
38
+ }
39
+ }
vendor/composer/installed.json ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "name": "composer/installers",
4
+ "version": "v1.5.0",
5
+ "version_normalized": "1.5.0.0",
6
+ "source": {
7
+ "type": "git",
8
+ "url": "https://github.com/composer/installers.git",
9
+ "reference": "049797d727261bf27f2690430d935067710049c2"
10
+ },
11
+ "dist": {
12
+ "type": "zip",
13
+ "url": "https://api.github.com/repos/composer/installers/zipball/049797d727261bf27f2690430d935067710049c2",
14
+ "reference": "049797d727261bf27f2690430d935067710049c2",
15
+ "shasum": ""
16
+ },
17
+ "require": {
18
+ "composer-plugin-api": "^1.0"
19
+ },
20
+ "replace": {
21
+ "roundcube/plugin-installer": "*",
22
+ "shama/baton": "*"
23
+ },
24
+ "require-dev": {
25
+ "composer/composer": "1.0.*@dev",
26
+ "phpunit/phpunit": "^4.8.36"
27
+ },
28
+ "time": "2017-12-29T09:13:20+00:00",
29
+ "type": "composer-plugin",
30
+ "extra": {
31
+ "class": "Composer\\Installers\\Plugin",
32
+ "branch-alias": {
33
+ "dev-master": "1.0-dev"
34
+ }
35
+ },
36
+ "installation-source": "dist",
37
+ "autoload": {
38
+ "psr-4": {
39
+ "Composer\\Installers\\": "src/Composer/Installers"
40
+ }
41
+ },
42
+ "notification-url": "https://packagist.org/downloads/",
43
+ "license": [
44
+ "MIT"
45
+ ],
46
+ "authors": [
47
+ {
48
+ "name": "Kyle Robinson Young",
49
+ "email": "kyle@dontkry.com",
50
+ "homepage": "https://github.com/shama"
51
+ }
52
+ ],
53
+ "description": "A multi-framework Composer library installer",
54
+ "homepage": "https://composer.github.io/installers/",
55
+ "keywords": [
56
+ "Craft",
57
+ "Dolibarr",
58
+ "Eliasis",
59
+ "Hurad",
60
+ "ImageCMS",
61
+ "Kanboard",
62
+ "Lan Management System",
63
+ "MODX Evo",
64
+ "Mautic",
65
+ "Maya",
66
+ "OXID",
67
+ "Plentymarkets",
68
+ "Porto",
69
+ "RadPHP",
70
+ "SMF",
71
+ "Thelia",
72
+ "WolfCMS",
73
+ "agl",
74
+ "aimeos",
75
+ "annotatecms",
76
+ "attogram",
77
+ "bitrix",
78
+ "cakephp",
79
+ "chef",
80
+ "cockpit",
81
+ "codeigniter",
82
+ "concrete5",
83
+ "croogo",
84
+ "dokuwiki",
85
+ "drupal",
86
+ "eZ Platform",
87
+ "elgg",
88
+ "expressionengine",
89
+ "fuelphp",
90
+ "grav",
91
+ "installer",
92
+ "itop",
93
+ "joomla",
94
+ "kohana",
95
+ "laravel",
96
+ "lavalite",
97
+ "lithium",
98
+ "magento",
99
+ "majima",
100
+ "mako",
101
+ "mediawiki",
102
+ "modulework",
103
+ "modx",
104
+ "moodle",
105
+ "osclass",
106
+ "phpbb",
107
+ "piwik",
108
+ "ppi",
109
+ "puppet",
110
+ "pxcms",
111
+ "reindex",
112
+ "roundcube",
113
+ "shopware",
114
+ "silverstripe",
115
+ "sydes",
116
+ "symfony",
117
+ "typo3",
118
+ "wordpress",
119
+ "yawik",
120
+ "zend",
121
+ "zikula"
122
+ ]
123
+ },
124
+ {
125
+ "name": "vimeo/vimeo-api",
126
+ "version": "2.0.0",
127
+ "version_normalized": "2.0.0.0",
128
+ "source": {
129
+ "type": "git",
130
+ "url": "https://github.com/vimeo/vimeo.php.git",
131
+ "reference": "9fbf705cf4885282183744c04f3fb10793768911"
132
+ },
133
+ "dist": {
134
+ "type": "zip",
135
+ "url": "https://api.github.com/repos/vimeo/vimeo.php/zipball/9fbf705cf4885282183744c04f3fb10793768911",
136
+ "reference": "9fbf705cf4885282183744c04f3fb10793768911",
137
+ "shasum": ""
138
+ },
139
+ "require": {
140
+ "ext-curl": "*",
141
+ "ext-json": "*",
142
+ "php": ">=5.3.0"
143
+ },
144
+ "require-dev": {
145
+ "phpunit/phpunit": "^4.8"
146
+ },
147
+ "time": "2018-02-06T19:06:58+00:00",
148
+ "type": "library",
149
+ "installation-source": "dist",
150
+ "autoload": {
151
+ "psr-4": {
152
+ "Vimeo\\": "src/Vimeo"
153
+ }
154
+ },
155
+ "notification-url": "https://packagist.org/downloads/",
156
+ "license": [
157
+ "Apache-2.0"
158
+ ],
159
+ "authors": [
160
+ {
161
+ "name": "Vimeo",
162
+ "homepage": "http://vimeo.com"
163
+ }
164
+ ],
165
+ "description": "Official PHP library for the Vimeo API.",
166
+ "homepage": "https://github.com/vimeo/vimeo.php",
167
+ "keywords": [
168
+ "video",
169
+ "vimeo"
170
+ ]
171
+ }
172
+ ]
vendor/composer/installers/.editorconfig ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ ; top-most EditorConfig file
2
+ root = true
3
+
4
+ ; Unix-style newlines
5
+ [*]
6
+ end_of_line = LF
7
+
8
+ [*.php]
9
+ indent_style = space
10
+ indent_size = 4
vendor/composer/installers/.gitignore ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ vendor/
2
+ composer.lock
3
+ .idea/
vendor/composer/installers/.travis.yml ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ language: php
2
+
3
+ sudo: false
4
+
5
+ dist: trusty
6
+
7
+ git:
8
+ depth: 5
9
+
10
+ php:
11
+ - 5.4
12
+ - 5.5
13
+ - 5.6
14
+ - 7.0
15
+ - 7.1
16
+ - 7.2
17
+ - hhvm
18
+ - nightly
19
+
20
+ matrix:
21
+ include:
22
+ - dist: precise
23
+ php: 5.3
24
+ fast_finish: true
25
+ allow_failures:
26
+ - php: nightly
27
+
28
+ before_script:
29
+ - composer self-update
30
+ - composer install
31
+
32
+ script:
33
+ - composer test
vendor/composer/installers/CHANGELOG.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Change Log
2
+
3
+ ## [Unreleased]
4
+
5
+ ## v1.5.0 - 2017-12-29
6
+ ### Added
7
+ * Added WordPress dropin support.
8
+ * Added new types supported for Eliasis.
9
+ * Added support for Phoenix CMS.
10
+ * Added MODX installer.
11
+ * Added Majima instaler.
12
+ * Added SiteDirect installer.
13
+ * Added support optional prefix in OctoberCMS installers.
14
+ * Added PHP 7.2 support.
15
+
16
+ ### Changed
17
+ * Changed remove packages, see [#348](https://github.com/composer/installers/pull/348).
18
+
19
+ ### Fixed
20
+ * Fixed code style, removed unused imports.
21
+
22
+ ## v1.4.0 - 2017-08-09
23
+ ### Added
24
+ * Installer for eZ Platform.
25
+ * Installer for UserFrosting.
26
+ * Installer for Osclass.
27
+ * Installer for Lan Management System.
28
+
29
+ ### Changed
30
+ * Added vendor name to package path for Lavalite.
31
+
32
+ ## v1.3.0 - 2017-04-24
33
+ ### Added
34
+ * Kanboard plugins installer.
35
+ * Porto-SAP installer.
36
+ * Add `core` to concrete5 installer.
37
+ * Support Moodle "search" plugin type.
38
+ * SyDES installer.
39
+ * iTop installer.
40
+ * Lavalite installer.
41
+ * Module type for Eliasis.
42
+ * Vgmcp installer.
43
+ * OntoWiki installer.
44
+ * The requirements for contributing (CONTRIBUTING.md).
45
+
46
+ ## v1.2.0 - 2016-08-13
47
+ ### Added
48
+ * Installer for Attogram.
49
+ * Installer for Cockpit.
50
+ * Installer for Plentymarkets.
51
+ * Installer for ReIndex.
52
+ * Installer for Vanilla.
53
+ * Installer for YAWIK.
54
+ * Added missing environments for new Shopware (5.2) Plugin System.
55
+
56
+ ## v1.1.0 - 2016-07-05
57
+ ### Added
58
+ * Installer for ReIndex.
59
+ * Installer for RadPHP.
60
+ * Installer for Decibel.
61
+ * Installer for Phifty.
62
+ * Installer for ExpressionEngine.
63
+
64
+ ### Changed
65
+ * New paths for new Bitrix CMS. Old paths is deprecated.
66
+
67
+ ### Deprecated
68
+ * Old paths in Bitrix CMS Installer is deprecated.
69
+
70
+ ## v1.0.25 - 2016-04-13
71
+ ### Removed
72
+ * Revert TYPO3 installer deletion.
73
+
74
+ ## v1.0.24 - 2016-04-05
75
+ ### Added
76
+ * Installer for ImageCMS.
77
+ * Installer for Mautic.
78
+ * New types in the Kirby installer: `kirby-plugin` and `kirby-field`.
79
+ * New types in the Drupal installer: `custom-theme` and `custom-module`.
80
+
81
+ ### Changed
82
+ * Switch to PSR-4.
83
+ * Update Bitrix Installer: configuration for setting custom path to directory with kernel.
84
+
85
+ ### Removed
86
+ * Remove TYPO3 Extension installers.
vendor/composer/installers/CONTRIBUTING.md ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Contributing
2
+
3
+ If you would like to help, please take a look at the list of
4
+ [issues](https://github.com/composer/installers/issues).
5
+
6
+ ## Pull requests
7
+
8
+ * [Fork and clone](https://help.github.com/articles/fork-a-repo).
9
+ * Run the command `php composer.phar install` to install the dependencies.
10
+ This will also install the dev dependencies. See [Composer](https://getcomposer.org/doc/03-cli.md#install).
11
+ * Use the command `phpunit` to run the tests. See [PHPUnit](http://phpunit.de).
12
+ * Create a branch, commit, push and send us a
13
+ [pull request](https://help.github.com/articles/using-pull-requests).
14
+
15
+ To ensure a consistent code base, you should make sure the code follows the
16
+ coding standards [PSR-1](http://www.php-fig.org/psr/psr-1/) and
17
+ [PSR-2](http://www.php-fig.org/psr/psr-2/).
18
+
19
+ ### Create a new Installer
20
+
21
+ * Create class extends `Composer\Installers\BaseInstaller` with your Installer.
22
+ * Create unit tests as a separate class or as part of a `Composer\Installers\Test\InstallerTest`.
23
+ * Add information about your Installer in `README.md` in section "Current Supported Package Types".
24
+ * Run the tests.
vendor/composer/installers/LICENSE ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Copyright (c) 2012 Kyle Robinson Young
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is furnished
8
+ to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.
vendor/composer/installers/README.md ADDED
@@ -0,0 +1,221 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # A Multi-Framework [Composer](http://getcomposer.org) Library Installer
2
+
3
+ [![Build Status](http://img.shields.io/travis/composer/installers.svg)](http://travis-ci.org/composer/installers)
4
+
5
+ This is for PHP package authors to require in their `composer.json`. It will
6
+ install their package to the correct location based on the specified package
7
+ type.
8
+
9
+ The goal of Installers is to be a simple package type to install path map.
10
+ Users can also customize the install path per package and package authors can
11
+ modify the package name upon installing.
12
+
13
+ Installers isn't intended on replacing all custom installers. If your
14
+ package requires special installation handling then by all means, create a
15
+ custom installer to handle it.
16
+
17
+ **Natively Supported Frameworks**:
18
+
19
+ The following frameworks natively work with Composer and will be
20
+ installed to the default `vendor` directory. `composer/installers`
21
+ is not needed to install packages with these frameworks:
22
+
23
+ * Aura
24
+ * Symfony2
25
+ * Yii
26
+ * Yii2
27
+
28
+ ## Current Supported Package Types
29
+
30
+ > Stable types are marked as **bold**, this means that installation paths
31
+ > for those type will not be changed. Any adjustment for those types would
32
+ > require creation of brand new type that will cover required changes.
33
+
34
+ | Framework | Types
35
+ | --------- | -----
36
+ | Aimeos | `aimeos-extension`
37
+ | Asgard | `asgard-module`<br>`asgard-theme`
38
+ | Attogram | `attogram-module`
39
+ | AGL | `agl-module`
40
+ | Bonefish | `bonefish-package`
41
+ | AnnotateCms | `annotatecms-module`<br>`annotatecms-component`<br>`annotatecms-service`
42
+ | Bitrix | `bitrix-module` (deprecated) <br>`bitrix-component` (deprecated) <br>`bitrix-theme` (deprecated) <br><br> `bitrix-d7-module` <br> `bitrix-d7-component` <br> `bitrix-d7-template`
43
+ | CakePHP 2+ | **`cakephp-plugin`**
44
+ | Chef | `chef-cookbook`<br>`chef-role`
45
+ | CCFramework | `ccframework-ship`<br>`ccframework-theme`
46
+ | Cockpit | `cockpit-module`
47
+ | CodeIgniter | `codeigniter-library`<br>`codeigniter-third-party`<br>`codeigniter-module`
48
+ | concrete5 | `concrete5-core`<br>`concrete5-package`<br>`concrete5-theme`<br>`concrete5-block`<br>`concrete5-update`
49
+ | Craft | `craft-plugin`
50
+ | Croogo | `croogo-plugin`<br>`croogo-theme`
51
+ | Decibel | `decibel-app`
52
+ | DokuWiki | `dokuwiki-plugin`<br>`dokuwiki-template`
53
+ | Dolibarr | `dolibarr-module`
54
+ | Drupal | <b>`drupal-core`<br>`drupal-module`<br>`drupal-theme`</b><br>`drupal-library`<br>`drupal-profile`<br>`drupal-drush`
55
+ | Elgg | `elgg-plugin`
56
+ | Eliasis | `eliasis-component`<br>`eliasis-module`<br>`eliasis-plugin`<br>`eliasis-template`
57
+ | ExpressionEngine 3 | `ee3-addon`<br>`ee3-theme`
58
+ | eZ Platform | `ezplatform-assets`<br>`ezplatform-meta-assets`
59
+ | FuelPHP v1.x | `fuel-module`<br>`fuel-package`<br/>`fuel-theme`
60
+ | FuelPHP v2.x | `fuelphp-component`
61
+ | Grav | `grav-plugin`<br>`grav-theme`
62
+ | Hurad | `hurad-plugin`<br>`hurad-theme`
63
+ | ImageCMS | `imagecms-template`<br>`imagecms-module`<br>`imagecms-library`
64
+ | iTop | `itop-extension`
65
+ | Joomla | `joomla-component`<br>`joomla-module`<br>`joomla-template`<br>`joomla-plugin`<br>`joomla-library`
66
+ | Kanboard | `kanboard-plugin`
67
+ | Kirby | **`kirby-plugin`**<br>`kirby-field`<br>`kirby-tag`
68
+ | KodiCMS | `kodicms-plugin`<br>`kodicms-media`
69
+ | Kohana | **`kohana-module`**
70
+ | Lan Management System | `lms-plugin`<br>`lms-template`<br>`lms-document-template`<br>`lms-userpanel-module`
71
+ | Laravel | `laravel-library`
72
+ | Lavalite | `lavalite-theme`<br>`lavalite-package`
73
+ | Lithium | **`lithium-library`<br>`lithium-source`**
74
+ | Magento | `magento-library`<br>`magento-skin`<br>`magento-theme`
75
+ | majima | `majima-plugin`
76
+ | Mako | `mako-package`
77
+ | Mautic | `mautic-plugin`<br>`mautic-theme`
78
+ | Maya | `maya-module`
79
+ | MODX | `modx-extra`
80
+ | MODX Evo | `modxevo-snippet`<br>`modxevo-plugin`<br>`modxevo-module`<br>`modxevo-template`<br>`modxevo-lib`
81
+ | MediaWiki | `mediawiki-extension`
82
+ | October | **`october-module`<br>`october-plugin`<br>`october-theme`**
83
+ | OntoWiki | `ontowiki-extension`<br>`ontowiki-theme`<br>`ontowiki-translation`
84
+ | OXID | `oxid-module`<br>`oxid-theme`<br>`oxid-out`
85
+ | Osclass | `osclass-plugin`<br>`osclass-theme`<br>`osclass-language`
86
+ | MODULEWork | `modulework-module`
87
+ | Moodle | `moodle-*` (Please [check source](https://raw.githubusercontent.com/composer/installers/master/src/Composer/Installers/MoodleInstaller.php) for all supported types)
88
+ | Piwik | `piwik-plugin`
89
+ | phpBB | `phpbb-extension`<br>`phpbb-style`<br>`phpbb-language`
90
+ | Pimcore | `pimcore-plugin`
91
+ | Plentymarkets | `plentymarkets-plugin`
92
+ | PPI | **`ppi-module`**
93
+ | Puppet | `puppet-module`
94
+ | Porto | `porto-container`
95
+ | RadPHP | `radphp-bundle`
96
+ | REDAXO | `redaxo-addon`
97
+ | ReIndex | **`reindex-plugin`** <br> **`reindex-theme`**
98
+ | Roundcube | `roundcube-plugin`
99
+ | shopware | `shopware-backend-plugin`<br/>`shopware-core-plugin`<br/>`shopware-frontend-plugin`<br/>`shopware-theme`<br/>`shopware-plugin`<br/>`shopware-frontend-theme`
100
+ | SilverStripe | `silverstripe-module`<br>`silverstripe-theme`
101
+ | SiteDirect | `sitedirect-module`<br>`sitedirect-plugin`
102
+ | SMF | `smf-module`<br>`smf-theme`
103
+ | SyDES | `sydes-module`<br>`sydes-theme`
104
+ | symfony1 | **`symfony1-plugin`**
105
+ | Tusk | `tusk-task`<br>`tusk-command`<br>`tusk-asset`
106
+ | TYPO3 Flow | `typo3-flow-package`<br>`typo3-flow-framework`<br>`typo3-flow-plugin`<br>`typo3-flow-site`<br>`typo3-flow-boilerplate`<br>`typo3-flow-build`
107
+ | TYPO3 CMS | `typo3-cms-extension` (Deprecated in this package, use the [TYPO3 CMS Installers](https://packagist.org/packages/typo3/cms-composer-installers) instead)
108
+ | UserFrosting | `userfrosting-sprinkle`
109
+ | Vanilla | `vanilla-plugin`<br>`vanilla-theme`
110
+ | Vgmcp | `vgmcp-bundle`<br>`vgmcp-theme`
111
+ | Wolf CMS | `wolfcms-plugin`
112
+ | WordPress | <b>`wordpress-plugin`<br>`wordpress-theme`</b><br>`wordpress-muplugin`<br>`wordpress-dropin`
113
+ | YAWIK | `yawik-module`
114
+ | Zend | `zend-library`<br>`zend-extra`<br>`zend-module`
115
+ | Zikula | `zikula-module`<br>`zikula-theme`
116
+ | Prestashop | `prestashop-module`<br>`prestashop-theme`
117
+ | Phifty | `phifty-bundle`<br>`phifty-framework`<br>`phifty-library`
118
+
119
+ ## Example `composer.json` File
120
+
121
+ This is an example for a CakePHP plugin. The only important parts to set in your
122
+ composer.json file are `"type": "cakephp-plugin"` which describes what your
123
+ package is and `"require": { "composer/installers": "~1.0" }` which tells composer
124
+ to load the custom installers.
125
+
126
+ ```json
127
+ {
128
+ "name": "you/ftp",
129
+ "type": "cakephp-plugin",
130
+ "require": {
131
+ "composer/installers": "~1.0"
132
+ }
133
+ }
134
+ ```
135
+
136
+ This would install your package to the `Plugin/Ftp/` folder of a CakePHP app
137
+ when a user runs `php composer.phar install`.
138
+
139
+ So submit your packages to [packagist.org](http://packagist.org)!
140
+
141
+ ## Custom Install Paths
142
+
143
+ If you are consuming a package that uses the `composer/installers` you can
144
+ override the install path with the following extra in your `composer.json`:
145
+
146
+ ```json
147
+ {
148
+ "extra": {
149
+ "installer-paths": {
150
+ "your/custom/path/{$name}/": ["shama/ftp", "vendor/package"]
151
+ }
152
+ }
153
+ }
154
+ ```
155
+
156
+ A package type can have a custom installation path with a `type:` prefix.
157
+
158
+ ``` json
159
+ {
160
+ "extra": {
161
+ "installer-paths": {
162
+ "your/custom/path/{$name}/": ["type:wordpress-plugin"]
163
+ }
164
+ }
165
+ }
166
+ ```
167
+
168
+ You can also have the same vendor packages with a custom installation path by
169
+ using the `vendor:` prefix.
170
+
171
+ ``` json
172
+ {
173
+ "extra": {
174
+ "installer-paths": {
175
+ "your/custom/path/{$name}/": ["vendor:my_organization"]
176
+ }
177
+ }
178
+ }
179
+ ```
180
+
181
+ These would use your custom path for each of the listed packages. The available
182
+ variables to use in your paths are: `{$name}`, `{$vendor}`, `{$type}`.
183
+
184
+ ## Custom Install Names
185
+
186
+ If you're a package author and need your package to be named differently when
187
+ installed consider using the `installer-name` extra.
188
+
189
+ For example you have a package named `shama/cakephp-ftp` with the type
190
+ `cakephp-plugin`. Installing with `composer/installers` would install to the
191
+ path `Plugin/CakephpFtp`. Due to the strict naming conventions, you as a
192
+ package author actually need the package to be named and installed to
193
+ `Plugin/Ftp`. Using the following config within your **package** `composer.json`
194
+ will allow this:
195
+
196
+ ```json
197
+ {
198
+ "name": "shama/cakephp-ftp",
199
+ "type": "cakephp-plugin",
200
+ "extra": {
201
+ "installer-name": "Ftp"
202
+ }
203
+ }
204
+ ```
205
+
206
+ Please note the name entered into `installer-name` will be the final and will
207
+ not be inflected.
208
+
209
+ ## Should we allow dynamic package types or paths? No.
210
+
211
+ What are they? The ability for a package author to determine where a package
212
+ will be installed either through setting the path directly in their
213
+ `composer.json` or through a dynamic package type: `"type":
214
+ "framework-install-here"`.
215
+
216
+ It has been proposed many times. Even implemented once early on and then
217
+ removed. Installers won't do this because it would allow a single package
218
+ author to wipe out entire folders without the user's consent. That user would
219
+ then come here to yell at us.
220
+
221
+ Anyone still wanting this capability should consider requiring https://github.com/oomphinc/composer-installers-extender.
vendor/composer/installers/_config.yml ADDED
@@ -0,0 +1 @@
 
1
+ theme: jekyll-theme-cayman
vendor/composer/installers/composer.json ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "composer/installers",
3
+ "type": "composer-plugin",
4
+ "license": "MIT",
5
+ "description": "A multi-framework Composer library installer",
6
+ "keywords": [
7
+ "installer",
8
+ "Aimeos",
9
+ "AGL",
10
+ "AnnotateCms",
11
+ "Attogram",
12
+ "Bitrix",
13
+ "CakePHP",
14
+ "Chef",
15
+ "Cockpit",
16
+ "CodeIgniter",
17
+ "concrete5",
18
+ "Craft",
19
+ "Croogo",
20
+ "DokuWiki",
21
+ "Dolibarr",
22
+ "Drupal",
23
+ "Elgg",
24
+ "Eliasis",
25
+ "ExpressionEngine",
26
+ "eZ Platform",
27
+ "FuelPHP",
28
+ "Grav",
29
+ "Hurad",
30
+ "ImageCMS",
31
+ "iTop",
32
+ "Joomla",
33
+ "Kanboard",
34
+ "Kohana",
35
+ "Lan Management System",
36
+ "Laravel",
37
+ "Lavalite",
38
+ "Lithium",
39
+ "Magento",
40
+ "majima",
41
+ "Mako",
42
+ "Mautic",
43
+ "Maya",
44
+ "MODX",
45
+ "MODX Evo",
46
+ "MediaWiki",
47
+ "OXID",
48
+ "osclass",
49
+ "MODULEWork",
50
+ "Moodle",
51
+ "Piwik",
52
+ "pxcms",
53
+ "phpBB",
54
+ "Plentymarkets",
55
+ "PPI",
56
+ "Puppet",
57
+ "Porto",
58
+ "RadPHP",
59
+ "ReIndex",
60
+ "Roundcube",
61
+ "shopware",
62
+ "SilverStripe",
63
+ "SMF",
64
+ "SyDES",
65
+ "symfony",
66
+ "Thelia",
67
+ "TYPO3",
68
+ "WolfCMS",
69
+ "WordPress",
70
+ "YAWIK",
71
+ "Zend",
72
+ "Zikula"
73
+ ],
74
+ "homepage": "https://composer.github.io/installers/",
75
+ "authors": [
76
+ {
77
+ "name": "Kyle Robinson Young",
78
+ "email": "kyle@dontkry.com",
79
+ "homepage": "https://github.com/shama"
80
+ }
81
+ ],
82
+ "autoload": {
83
+ "psr-4": { "Composer\\Installers\\": "src/Composer/Installers" }
84
+ },
85
+ "extra": {
86
+ "class": "Composer\\Installers\\Plugin",
87
+ "branch-alias": {
88
+ "dev-master": "1.0-dev"
89
+ }
90
+ },
91
+ "replace": {
92
+ "shama/baton": "*",
93
+ "roundcube/plugin-installer": "*"
94
+ },
95
+ "require": {
96
+ "composer-plugin-api": "^1.0"
97
+ },
98
+ "require-dev": {
99
+ "composer/composer": "1.0.*@dev",
100
+ "phpunit/phpunit": "^4.8.36"
101
+ },
102
+ "scripts": {
103
+ "test": "phpunit"
104
+ }
105
+ }
vendor/composer/installers/phpunit.xml.dist ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <phpunit backupGlobals="false"
4
+ backupStaticAttributes="false"
5
+ colors="true"
6
+ convertErrorsToExceptions="true"
7
+ convertNoticesToExceptions="true"
8
+ convertWarningsToExceptions="true"
9
+ processIsolation="false"
10
+ stopOnFailure="false"
11
+ syntaxCheck="false"
12
+ bootstrap="tests/bootstrap.php"
13
+ >
14
+ <testsuites>
15
+ <testsuite name="Installers Test Suite">
16
+ <directory>tests/Composer/Installers</directory>
17
+ </testsuite>
18
+ </testsuites>
19
+
20
+ <filter>
21
+ <whitelist>
22
+ <directory>src/Composer/Installers</directory>
23
+ </whitelist>
24
+ </filter>
25
+ </phpunit>
vendor/composer/installers/src/Composer/Installers/AglInstaller.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class AglInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'More/{$name}/',
8
+ );
9
+
10
+ /**
11
+ * Format package name to CamelCase
12
+ */
13
+ public function inflectPackageVars($vars)
14
+ {
15
+ $vars['name'] = preg_replace_callback('/(?:^|_|-)(.?)/', function ($matches) {
16
+ return strtoupper($matches[1]);
17
+ }, $vars['name']);
18
+
19
+ return $vars;
20
+ }
21
+ }
vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class AimeosInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'extension' => 'ext/{$name}/',
8
+ );
9
+ }
vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class AnnotateCmsInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'addons/modules/{$name}/',
8
+ 'component' => 'addons/components/{$name}/',
9
+ 'service' => 'addons/services/{$name}/',
10
+ );
11
+ }
vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class AsgardInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'Modules/{$name}/',
8
+ 'theme' => 'Themes/{$name}/'
9
+ );
10
+
11
+ /**
12
+ * Format package name.
13
+ *
14
+ * For package type asgard-module, cut off a trailing '-plugin' if present.
15
+ *
16
+ * For package type asgard-theme, cut off a trailing '-theme' if present.
17
+ *
18
+ */
19
+ public function inflectPackageVars($vars)
20
+ {
21
+ if ($vars['type'] === 'asgard-module') {
22
+ return $this->inflectPluginVars($vars);
23
+ }
24
+
25
+ if ($vars['type'] === 'asgard-theme') {
26
+ return $this->inflectThemeVars($vars);
27
+ }
28
+
29
+ return $vars;
30
+ }
31
+
32
+ protected function inflectPluginVars($vars)
33
+ {
34
+ $vars['name'] = preg_replace('/-module$/', '', $vars['name']);
35
+ $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
36
+ $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
37
+
38
+ return $vars;
39
+ }
40
+
41
+ protected function inflectThemeVars($vars)
42
+ {
43
+ $vars['name'] = preg_replace('/-theme$/', '', $vars['name']);
44
+ $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
45
+ $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
46
+
47
+ return $vars;
48
+ }
49
+ }
vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class AttogramInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'modules/{$name}/',
8
+ );
9
+ }
vendor/composer/installers/src/Composer/Installers/BaseInstaller.php ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ use Composer\IO\IOInterface;
5
+ use Composer\Composer;
6
+ use Composer\Package\PackageInterface;
7
+
8
+ abstract class BaseInstaller
9
+ {
10
+ protected $locations = array();
11
+ protected $composer;
12
+ protected $package;
13
+ protected $io;
14
+
15
+ /**
16
+ * Initializes base installer.
17
+ *
18
+ * @param PackageInterface $package
19
+ * @param Composer $composer
20
+ * @param IOInterface $io
21
+ */
22
+ public function __construct(PackageInterface $package = null, Composer $composer = null, IOInterface $io = null)
23
+ {
24
+ $this->composer = $composer;
25
+ $this->package = $package;
26
+ $this->io = $io;
27
+ }
28
+
29
+ /**
30
+ * Return the install path based on package type.
31
+ *
32
+ * @param PackageInterface $package
33
+ * @param string $frameworkType
34
+ * @return string
35
+ */
36
+ public function getInstallPath(PackageInterface $package, $frameworkType = '')
37
+ {
38
+ $type = $this->package->getType();
39
+
40
+ $prettyName = $this->package->getPrettyName();
41
+ if (strpos($prettyName, '/') !== false) {
42
+ list($vendor, $name) = explode('/', $prettyName);
43
+ } else {
44
+ $vendor = '';
45
+ $name = $prettyName;
46
+ }
47
+
48
+ $availableVars = $this->inflectPackageVars(compact('name', 'vendor', 'type'));
49
+
50
+ $extra = $package->getExtra();
51
+ if (!empty($extra['installer-name'])) {
52
+ $availableVars['name'] = $extra['installer-name'];
53
+ }
54
+
55
+ if ($this->composer->getPackage()) {
56
+ $extra = $this->composer->getPackage()->getExtra();
57
+ if (!empty($extra['installer-paths'])) {
58
+ $customPath = $this->mapCustomInstallPaths($extra['installer-paths'], $prettyName, $type, $vendor);
59
+ if ($customPath !== false) {
60
+ return $this->templatePath($customPath, $availableVars);
61
+ }
62
+ }
63
+ }
64
+
65
+ $packageType = substr($type, strlen($frameworkType) + 1);
66
+ $locations = $this->getLocations();
67
+ if (!isset($locations[$packageType])) {
68
+ throw new \InvalidArgumentException(sprintf('Package type "%s" is not supported', $type));
69
+ }
70
+
71
+ return $this->templatePath($locations[$packageType], $availableVars);
72
+ }
73
+
74
+ /**
75
+ * For an installer to override to modify the vars per installer.
76
+ *
77
+ * @param array $vars
78
+ * @return array
79
+ */
80
+ public function inflectPackageVars($vars)
81
+ {
82
+ return $vars;
83
+ }
84
+
85
+ /**
86
+ * Gets the installer's locations
87
+ *
88
+ * @return array
89
+ */
90
+ public function getLocations()
91
+ {
92
+ return $this->locations;
93
+ }
94
+
95
+ /**
96
+ * Replace vars in a path
97
+ *
98
+ * @param string $path
99
+ * @param array $vars
100
+ * @return string
101
+ */
102
+ protected function templatePath($path, array $vars = array())
103
+ {
104
+ if (strpos($path, '{') !== false) {
105
+ extract($vars);
106
+ preg_match_all('@\{\$([A-Za-z0-9_]*)\}@i', $path, $matches);
107
+ if (!empty($matches[1])) {
108
+ foreach ($matches[1] as $var) {
109
+ $path = str_replace('{$' . $var . '}', $$var, $path);
110
+ }
111
+ }
112
+ }
113
+
114
+ return $path;
115
+ }
116
+
117
+ /**
118
+ * Search through a passed paths array for a custom install path.
119
+ *
120
+ * @param array $paths
121
+ * @param string $name
122
+ * @param string $type
123
+ * @param string $vendor = NULL
124
+ * @return string
125
+ */
126
+ protected function mapCustomInstallPaths(array $paths, $name, $type, $vendor = NULL)
127
+ {
128
+ foreach ($paths as $path => $names) {
129
+ if (in_array($name, $names) || in_array('type:' . $type, $names) || in_array('vendor:' . $vendor, $names)) {
130
+ return $path;
131
+ }
132
+ }
133
+
134
+ return false;
135
+ }
136
+ }
vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Composer\Installers;
4
+
5
+ use Composer\Util\Filesystem;
6
+
7
+ /**
8
+ * Installer for Bitrix Framework. Supported types of extensions:
9
+ * - `bitrix-d7-module` — copy the module to directory `bitrix/modules/<vendor>.<name>`.
10
+ * - `bitrix-d7-component` — copy the component to directory `bitrix/components/<vendor>/<name>`.
11
+ * - `bitrix-d7-template` — copy the template to directory `bitrix/templates/<vendor>_<name>`.
12
+ *
13
+ * You can set custom path to directory with Bitrix kernel in `composer.json`:
14
+ *
15
+ * ```json
16
+ * {
17
+ * "extra": {
18
+ * "bitrix-dir": "s1/bitrix"
19
+ * }
20
+ * }
21
+ * ```
22
+ *
23
+ * @author Nik Samokhvalov <nik@samokhvalov.info>
24
+ * @author Denis Kulichkin <onexhovia@gmail.com>
25
+ */
26
+ class BitrixInstaller extends BaseInstaller
27
+ {
28
+ protected $locations = array(
29
+ 'module' => '{$bitrix_dir}/modules/{$name}/', // deprecated, remove on the major release (Backward compatibility will be broken)
30
+ 'component' => '{$bitrix_dir}/components/{$name}/', // deprecated, remove on the major release (Backward compatibility will be broken)
31
+ 'theme' => '{$bitrix_dir}/templates/{$name}/', // deprecated, remove on the major release (Backward compatibility will be broken)
32
+ 'd7-module' => '{$bitrix_dir}/modules/{$vendor}.{$name}/',
33
+ 'd7-component' => '{$bitrix_dir}/components/{$vendor}/{$name}/',
34
+ 'd7-template' => '{$bitrix_dir}/templates/{$vendor}_{$name}/',
35
+ );
36
+
37
+ /**
38
+ * @var array Storage for informations about duplicates at all the time of installation packages.
39
+ */
40
+ private static $checkedDuplicates = array();
41
+
42
+ /**
43
+ * {@inheritdoc}
44
+ */
45
+ public function inflectPackageVars($vars)
46
+ {
47
+ if ($this->composer->getPackage()) {
48
+ $extra = $this->composer->getPackage()->getExtra();
49
+
50
+ if (isset($extra['bitrix-dir'])) {
51
+ $vars['bitrix_dir'] = $extra['bitrix-dir'];
52
+ }
53
+ }
54
+
55
+ if (!isset($vars['bitrix_dir'])) {
56
+ $vars['bitrix_dir'] = 'bitrix';
57
+ }
58
+
59
+ return parent::inflectPackageVars($vars);
60
+ }
61
+
62
+ /**
63
+ * {@inheritdoc}
64
+ */
65
+ protected function templatePath($path, array $vars = array())
66
+ {
67
+ $templatePath = parent::templatePath($path, $vars);
68
+ $this->checkDuplicates($templatePath, $vars);
69
+
70
+ return $templatePath;
71
+ }
72
+
73
+ /**
74
+ * Duplicates search packages.
75
+ *
76
+ * @param string $path
77
+ * @param array $vars
78
+ */
79
+ protected function checkDuplicates($path, array $vars = array())
80
+ {
81
+ $packageType = substr($vars['type'], strlen('bitrix') + 1);
82
+ $localDir = explode('/', $vars['bitrix_dir']);
83
+ array_pop($localDir);
84
+ $localDir[] = 'local';
85
+ $localDir = implode('/', $localDir);
86
+
87
+ $oldPath = str_replace(
88
+ array('{$bitrix_dir}', '{$name}'),
89
+ array($localDir, $vars['name']),
90
+ $this->locations[$packageType]
91
+ );
92
+
93
+ if (in_array($oldPath, static::$checkedDuplicates)) {
94
+ return;
95
+ }
96
+
97
+ if ($oldPath !== $path && file_exists($oldPath) && $this->io && $this->io->isInteractive()) {
98
+
99
+ $this->io->writeError(' <error>Duplication of packages:</error>');
100
+ $this->io->writeError(' <info>Package ' . $oldPath . ' will be called instead package ' . $path . '</info>');
101
+
102
+ while (true) {
103
+ switch ($this->io->ask(' <info>Delete ' . $oldPath . ' [y,n,?]?</info> ', '?')) {
104
+ case 'y':
105
+ $fs = new Filesystem();
106
+ $fs->removeDirectory($oldPath);
107
+ break 2;
108
+
109
+ case 'n':
110
+ break 2;
111
+
112
+ case '?':
113
+ default:
114
+ $this->io->writeError(array(
115
+ ' y - delete package ' . $oldPath . ' and to continue with the installation',
116
+ ' n - don\'t delete and to continue with the installation',
117
+ ));
118
+ $this->io->writeError(' ? - print help');
119
+ break;
120
+ }
121
+ }
122
+ }
123
+
124
+ static::$checkedDuplicates[] = $oldPath;
125
+ }
126
+ }
vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class BonefishInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'package' => 'Packages/{$vendor}/{$name}/'
8
+ );
9
+ }
vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ use Composer\DependencyResolver\Pool;
5
+
6
+ class CakePHPInstaller extends BaseInstaller
7
+ {
8
+ protected $locations = array(
9
+ 'plugin' => 'Plugin/{$name}/',
10
+ );
11
+
12
+ /**
13
+ * Format package name to CamelCase
14
+ */
15
+ public function inflectPackageVars($vars)
16
+ {
17
+ if ($this->matchesCakeVersion('>=', '3.0.0')) {
18
+ return $vars;
19
+ }
20
+
21
+ $nameParts = explode('/', $vars['name']);
22
+ foreach ($nameParts as &$value) {
23
+ $value = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $value));
24
+ $value = str_replace(array('-', '_'), ' ', $value);
25
+ $value = str_replace(' ', '', ucwords($value));
26
+ }
27
+ $vars['name'] = implode('/', $nameParts);
28
+
29
+ return $vars;
30
+ }
31
+
32
+ /**
33
+ * Change the default plugin location when cakephp >= 3.0
34
+ */
35
+ public function getLocations()
36
+ {
37
+ if ($this->matchesCakeVersion('>=', '3.0.0')) {
38
+ $this->locations['plugin'] = $this->composer->getConfig()->get('vendor-dir') . '/{$vendor}/{$name}/';
39
+ }
40
+ return $this->locations;
41
+ }
42
+
43
+ /**
44
+ * Check if CakePHP version matches against a version
45
+ *
46
+ * @param string $matcher
47
+ * @param string $version
48
+ * @return bool
49
+ */
50
+ protected function matchesCakeVersion($matcher, $version)
51
+ {
52
+ if (class_exists('Composer\Semver\Constraint\MultiConstraint')) {
53
+ $multiClass = 'Composer\Semver\Constraint\MultiConstraint';
54
+ $constraintClass = 'Composer\Semver\Constraint\Constraint';
55
+ } else {
56
+ $multiClass = 'Composer\Package\LinkConstraint\MultiConstraint';
57
+ $constraintClass = 'Composer\Package\LinkConstraint\VersionConstraint';
58
+ }
59
+
60
+ $repositoryManager = $this->composer->getRepositoryManager();
61
+ if ($repositoryManager) {
62
+ $repos = $repositoryManager->getLocalRepository();
63
+ if (!$repos) {
64
+ return false;
65
+ }
66
+ $cake3 = new $multiClass(array(
67
+ new $constraintClass($matcher, $version),
68
+ new $constraintClass('!=', '9999999-dev'),
69
+ ));
70
+ $pool = new Pool('dev');
71
+ $pool->addRepository($repos);
72
+ $packages = $pool->whatProvides('cakephp/cakephp');
73
+ foreach ($packages as $package) {
74
+ $installed = new $constraintClass('=', $package->getVersion());
75
+ if ($cake3->matches($installed)) {
76
+ return true;
77
+ }
78
+ }
79
+ }
80
+ return false;
81
+ }
82
+ }
vendor/composer/installers/src/Composer/Installers/ChefInstaller.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class ChefInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'cookbook' => 'Chef/{$vendor}/{$name}/',
8
+ 'role' => 'Chef/roles/{$name}/',
9
+ );
10
+ }
11
+
vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class ClanCatsFrameworkInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'ship' => 'CCF/orbit/{$name}/',
8
+ 'theme' => 'CCF/app/themes/{$name}/',
9
+ );
10
+ }
vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class CockpitInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'cockpit/modules/addons/{$name}/',
8
+ );
9
+
10
+ /**
11
+ * Format module name.
12
+ *
13
+ * Strip `module-` prefix from package name.
14
+ *
15
+ * @param array @vars
16
+ *
17
+ * @return array
18
+ */
19
+ public function inflectPackageVars($vars)
20
+ {
21
+ if ($vars['type'] == 'cockpit-module') {
22
+ return $this->inflectModuleVars($vars);
23
+ }
24
+
25
+ return $vars;
26
+ }
27
+
28
+ public function inflectModuleVars($vars)
29
+ {
30
+ $vars['name'] = ucfirst(preg_replace('/cockpit-/i', '', $vars['name']));
31
+
32
+ return $vars;
33
+ }
34
+ }
vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class CodeIgniterInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'library' => 'application/libraries/{$name}/',
8
+ 'third-party' => 'application/third_party/{$name}/',
9
+ 'module' => 'application/modules/{$name}/',
10
+ );
11
+ }
vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class Concrete5Installer extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'core' => 'concrete/',
8
+ 'block' => 'application/blocks/{$name}/',
9
+ 'package' => 'packages/{$name}/',
10
+ 'theme' => 'application/themes/{$name}/',
11
+ 'update' => 'updates/{$name}/',
12
+ );
13
+ }
vendor/composer/installers/src/Composer/Installers/CraftInstaller.php ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ /**
5
+ * Installer for Craft Plugins
6
+ */
7
+ class CraftInstaller extends BaseInstaller
8
+ {
9
+ const NAME_PREFIX = 'craft';
10
+ const NAME_SUFFIX = 'plugin';
11
+
12
+ protected $locations = array(
13
+ 'plugin' => 'craft/plugins/{$name}/',
14
+ );
15
+
16
+ /**
17
+ * Strip `craft-` prefix and/or `-plugin` suffix from package names
18
+ *
19
+ * @param array $vars
20
+ *
21
+ * @return array
22
+ */
23
+ final public function inflectPackageVars($vars)
24
+ {
25
+ return $this->inflectPluginVars($vars);
26
+ }
27
+
28
+ private function inflectPluginVars($vars)
29
+ {
30
+ $vars['name'] = preg_replace('/-' . self::NAME_SUFFIX . '$/i', '', $vars['name']);
31
+ $vars['name'] = preg_replace('/^' . self::NAME_PREFIX . '-/i', '', $vars['name']);
32
+
33
+ return $vars;
34
+ }
35
+ }
vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class CroogoInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'plugin' => 'Plugin/{$name}/',
8
+ 'theme' => 'View/Themed/{$name}/',
9
+ );
10
+
11
+ /**
12
+ * Format package name to CamelCase
13
+ */
14
+ public function inflectPackageVars($vars)
15
+ {
16
+ $vars['name'] = strtolower(str_replace(array('-', '_'), ' ', $vars['name']));
17
+ $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
18
+
19
+ return $vars;
20
+ }
21
+ }
vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class DecibelInstaller extends BaseInstaller
5
+ {
6
+ /** @var array */
7
+ protected $locations = array(
8
+ 'app' => 'app/{$name}/',
9
+ );
10
+ }
vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class DokuWikiInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'plugin' => 'lib/plugins/{$name}/',
8
+ 'template' => 'lib/tpl/{$name}/',
9
+ );
10
+
11
+ /**
12
+ * Format package name.
13
+ *
14
+ * For package type dokuwiki-plugin, cut off a trailing '-plugin',
15
+ * or leading dokuwiki_ if present.
16
+ *
17
+ * For package type dokuwiki-template, cut off a trailing '-template' if present.
18
+ *
19
+ */
20
+ public function inflectPackageVars($vars)
21
+ {
22
+
23
+ if ($vars['type'] === 'dokuwiki-plugin') {
24
+ return $this->inflectPluginVars($vars);
25
+ }
26
+
27
+ if ($vars['type'] === 'dokuwiki-template') {
28
+ return $this->inflectTemplateVars($vars);
29
+ }
30
+
31
+ return $vars;
32
+ }
33
+
34
+ protected function inflectPluginVars($vars)
35
+ {
36
+ $vars['name'] = preg_replace('/-plugin$/', '', $vars['name']);
37
+ $vars['name'] = preg_replace('/^dokuwiki_?-?/', '', $vars['name']);
38
+
39
+ return $vars;
40
+ }
41
+
42
+ protected function inflectTemplateVars($vars)
43
+ {
44
+ $vars['name'] = preg_replace('/-template$/', '', $vars['name']);
45
+ $vars['name'] = preg_replace('/^dokuwiki_?-?/', '', $vars['name']);
46
+
47
+ return $vars;
48
+ }
49
+
50
+ }
vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ /**
5
+ * Class DolibarrInstaller
6
+ *
7
+ * @package Composer\Installers
8
+ * @author Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
9
+ */
10
+ class DolibarrInstaller extends BaseInstaller
11
+ {
12
+ //TODO: Add support for scripts and themes
13
+ protected $locations = array(
14
+ 'module' => 'htdocs/custom/{$name}/',
15
+ );
16
+ }
vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class DrupalInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'core' => 'core/',
8
+ 'module' => 'modules/{$name}/',
9
+ 'theme' => 'themes/{$name}/',
10
+ 'library' => 'libraries/{$name}/',
11
+ 'profile' => 'profiles/{$name}/',
12
+ 'drush' => 'drush/{$name}/',
13
+ 'custom-theme' => 'themes/custom/{$name}/',
14
+ 'custom-module' => 'modules/custom/{$name}',
15
+ );
16
+ }
vendor/composer/installers/src/Composer/Installers/ElggInstaller.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class ElggInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'plugin' => 'mod/{$name}/',
8
+ );
9
+ }
vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class EliasisInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'component' => 'components/{$name}/',
8
+ 'module' => 'modules/{$name}/',
9
+ 'plugin' => 'plugins/{$name}/',
10
+ 'template' => 'templates/{$name}/',
11
+ );
12
+ }
vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ use Composer\Package\PackageInterface;
5
+
6
+ class ExpressionEngineInstaller extends BaseInstaller
7
+ {
8
+
9
+ protected $locations = array();
10
+
11
+ private $ee2Locations = array(
12
+ 'addon' => 'system/expressionengine/third_party/{$name}/',
13
+ 'theme' => 'themes/third_party/{$name}/',
14
+ );
15
+
16
+ private $ee3Locations = array(
17
+ 'addon' => 'system/user/addons/{$name}/',
18
+ 'theme' => 'themes/user/{$name}/',
19
+ );
20
+
21
+ public function getInstallPath(PackageInterface $package, $frameworkType = '')
22
+ {
23
+
24
+ $version = "{$frameworkType}Locations";
25
+ $this->locations = $this->$version;
26
+
27
+ return parent::getInstallPath($package, $frameworkType);
28
+ }
29
+ }
vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class EzPlatformInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'meta-assets' => 'web/assets/ezplatform/',
8
+ 'assets' => 'web/assets/ezplatform/{$name}/',
9
+ );
10
+ }
vendor/composer/installers/src/Composer/Installers/FuelInstaller.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class FuelInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'fuel/app/modules/{$name}/',
8
+ 'package' => 'fuel/packages/{$name}/',
9
+ 'theme' => 'fuel/app/themes/{$name}/',
10
+ );
11
+ }
vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class FuelphpInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'component' => 'components/{$name}/',
8
+ );
9
+ }
vendor/composer/installers/src/Composer/Installers/GravInstaller.php ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class GravInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'plugin' => 'user/plugins/{$name}/',
8
+ 'theme' => 'user/themes/{$name}/',
9
+ );
10
+
11
+ /**
12
+ * Format package name
13
+ *
14
+ * @param array $vars
15
+ *
16
+ * @return array
17
+ */
18
+ public function inflectPackageVars($vars)
19
+ {
20
+ $restrictedWords = implode('|', array_keys($this->locations));
21
+
22
+ $vars['name'] = strtolower($vars['name']);
23
+ $vars['name'] = preg_replace('/^(?:grav-)?(?:(?:'.$restrictedWords.')-)?(.*?)(?:-(?:'.$restrictedWords.'))?$/ui',
24
+ '$1',
25
+ $vars['name']
26
+ );
27
+
28
+ return $vars;
29
+ }
30
+ }
vendor/composer/installers/src/Composer/Installers/HuradInstaller.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class HuradInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'plugin' => 'plugins/{$name}/',
8
+ 'theme' => 'plugins/{$name}/',
9
+ );
10
+
11
+ /**
12
+ * Format package name to CamelCase
13
+ */
14
+ public function inflectPackageVars($vars)
15
+ {
16
+ $nameParts = explode('/', $vars['name']);
17
+ foreach ($nameParts as &$value) {
18
+ $value = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $value));
19
+ $value = str_replace(array('-', '_'), ' ', $value);
20
+ $value = str_replace(' ', '', ucwords($value));
21
+ }
22
+ $vars['name'] = implode('/', $nameParts);
23
+ return $vars;
24
+ }
25
+ }
vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class ImageCMSInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'template' => 'templates/{$name}/',
8
+ 'module' => 'application/modules/{$name}/',
9
+ 'library' => 'application/libraries/{$name}/',
10
+ );
11
+ }
vendor/composer/installers/src/Composer/Installers/Installer.php ADDED
@@ -0,0 +1,200 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ use Composer\IO\IOInterface;
5
+ use Composer\Installer\LibraryInstaller;
6
+ use Composer\Package\PackageInterface;
7
+ use Composer\Repository\InstalledRepositoryInterface;
8
+
9
+ class Installer extends LibraryInstaller
10
+ {
11
+ /**
12
+ * Package types to installer class map
13
+ *
14
+ * @var array
15
+ */
16
+ private $supportedTypes = array(
17
+ 'aimeos' => 'AimeosInstaller',
18
+ 'asgard' => 'AsgardInstaller',
19
+ 'attogram' => 'AttogramInstaller',
20
+ 'agl' => 'AglInstaller',
21
+ 'annotatecms' => 'AnnotateCmsInstaller',
22
+ 'bitrix' => 'BitrixInstaller',
23
+ 'bonefish' => 'BonefishInstaller',
24
+ 'cakephp' => 'CakePHPInstaller',
25
+ 'chef' => 'ChefInstaller',
26
+ 'ccframework' => 'ClanCatsFrameworkInstaller',
27
+ 'cockpit' => 'CockpitInstaller',
28
+ 'codeigniter' => 'CodeIgniterInstaller',
29
+ 'concrete5' => 'Concrete5Installer',
30
+ 'craft' => 'CraftInstaller',
31
+ 'croogo' => 'CroogoInstaller',
32
+ 'dokuwiki' => 'DokuWikiInstaller',
33
+ 'dolibarr' => 'DolibarrInstaller',
34
+ 'decibel' => 'DecibelInstaller',
35
+ 'drupal' => 'DrupalInstaller',
36
+ 'elgg' => 'ElggInstaller',
37
+ 'eliasis' => 'EliasisInstaller',
38
+ 'ee3' => 'ExpressionEngineInstaller',
39
+ 'ee2' => 'ExpressionEngineInstaller',
40
+ 'ezplatform' => 'EzPlatformInstaller',
41
+ 'fuel' => 'FuelInstaller',
42
+ 'fuelphp' => 'FuelphpInstaller',
43
+ 'grav' => 'GravInstaller',
44
+ 'hurad' => 'HuradInstaller',
45
+ 'imagecms' => 'ImageCMSInstaller',
46
+ 'itop' => 'ItopInstaller',
47
+ 'joomla' => 'JoomlaInstaller',
48
+ 'kanboard' => 'KanboardInstaller',
49
+ 'kirby' => 'KirbyInstaller',
50
+ 'kodicms' => 'KodiCMSInstaller',
51
+ 'kohana' => 'KohanaInstaller',
52
+ 'lms' => 'LanManagementSystemInstaller',
53
+ 'laravel' => 'LaravelInstaller',
54
+ 'lavalite' => 'LavaLiteInstaller',
55
+ 'lithium' => 'LithiumInstaller',
56
+ 'magento' => 'MagentoInstaller',
57
+ 'majima' => 'MajimaInstaller',
58
+ 'mako' => 'MakoInstaller',
59
+ 'maya' => 'MayaInstaller',
60
+ 'mautic' => 'MauticInstaller',
61
+ 'mediawiki' => 'MediaWikiInstaller',
62
+ 'microweber' => 'MicroweberInstaller',
63
+ 'modulework' => 'MODULEWorkInstaller',
64
+ 'modx' => 'ModxInstaller',
65
+ 'modxevo' => 'MODXEvoInstaller',
66
+ 'moodle' => 'MoodleInstaller',
67
+ 'october' => 'OctoberInstaller',
68
+ 'ontowiki' => 'OntoWikiInstaller',
69
+ 'oxid' => 'OxidInstaller',
70
+ 'osclass' => 'OsclassInstaller',
71
+ 'pxcms' => 'PxcmsInstaller',
72
+ 'phpbb' => 'PhpBBInstaller',
73
+ 'pimcore' => 'PimcoreInstaller',
74
+ 'piwik' => 'PiwikInstaller',
75
+ 'plentymarkets'=> 'PlentymarketsInstaller',
76
+ 'ppi' => 'PPIInstaller',
77
+ 'puppet' => 'PuppetInstaller',
78
+ 'radphp' => 'RadPHPInstaller',
79
+ 'phifty' => 'PhiftyInstaller',
80
+ 'porto' => 'PortoInstaller',
81
+ 'redaxo' => 'RedaxoInstaller',
82
+ 'reindex' => 'ReIndexInstaller',
83
+ 'roundcube' => 'RoundcubeInstaller',
84
+ 'shopware' => 'ShopwareInstaller',
85
+ 'sitedirect' => 'SiteDirectInstaller',
86
+ 'silverstripe' => 'SilverStripeInstaller',
87
+ 'smf' => 'SMFInstaller',
88
+ 'sydes' => 'SyDESInstaller',
89
+ 'symfony1' => 'Symfony1Installer',
90
+ 'thelia' => 'TheliaInstaller',
91
+ 'tusk' => 'TuskInstaller',
92
+ 'typo3-cms' => 'TYPO3CmsInstaller',
93
+ 'typo3-flow' => 'TYPO3FlowInstaller',
94
+ 'userfrosting' => 'UserFrostingInstaller',
95
+ 'vanilla' => 'VanillaInstaller',
96
+ 'whmcs' => 'WHMCSInstaller',
97
+ 'wolfcms' => 'WolfCMSInstaller',
98
+ 'wordpress' => 'WordPressInstaller',
99
+ 'yawik' => 'YawikInstaller',
100
+ 'zend' => 'ZendInstaller',
101
+ 'zikula' => 'ZikulaInstaller',
102
+ 'prestashop' => 'PrestashopInstaller'
103
+ );
104
+
105
+ /**
106
+ * {@inheritDoc}
107
+ */
108
+ public function getInstallPath(PackageInterface $package)
109
+ {
110
+ $type = $package->getType();
111
+ $frameworkType = $this->findFrameworkType($type);
112
+
113
+ if ($frameworkType === false) {
114
+ throw new \InvalidArgumentException(
115
+ 'Sorry the package type of this package is not yet supported.'
116
+ );
117
+ }
118
+
119
+ $class = 'Composer\\Installers\\' . $this->supportedTypes[$frameworkType];
120
+ $installer = new $class($package, $this->composer, $this->getIO());
121
+
122
+ return $installer->getInstallPath($package, $frameworkType);
123
+ }
124
+
125
+ public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package)
126
+ {
127
+ parent::uninstall($repo, $package);
128
+ $installPath = $this->getPackageBasePath($package);
129
+ $this->io->write(sprintf('Deleting %s - %s', $installPath, !file_exists($installPath) ? '<comment>deleted</comment>' : '<error>not deleted</error>'));
130
+ }
131
+
132
+ /**
133
+ * {@inheritDoc}
134
+ */
135
+ public function supports($packageType)
136
+ {
137
+ $frameworkType = $this->findFrameworkType($packageType);
138
+
139
+ if ($frameworkType === false) {
140
+ return false;
141
+ }
142
+
143
+ $locationPattern = $this->getLocationPattern($frameworkType);
144
+
145
+ return preg_match('#' . $frameworkType . '-' . $locationPattern . '#', $packageType, $matches) === 1;
146
+ }
147
+
148
+ /**
149
+ * Finds a supported framework type if it exists and returns it
150
+ *
151
+ * @param string $type
152
+ * @return string
153
+ */
154
+ protected function findFrameworkType($type)
155
+ {
156
+ $frameworkType = false;
157
+
158
+ krsort($this->supportedTypes);
159
+
160
+ foreach ($this->supportedTypes as $key => $val) {
161
+ if ($key === substr($type, 0, strlen($key))) {
162
+ $frameworkType = substr($type, 0, strlen($key));
163
+ break;
164
+ }
165
+ }
166
+
167
+ return $frameworkType;
168
+ }
169
+
170
+ /**
171
+ * Get the second part of the regular expression to check for support of a
172
+ * package type
173
+ *
174
+ * @param string $frameworkType
175
+ * @return string
176
+ */
177
+ protected function getLocationPattern($frameworkType)
178
+ {
179
+ $pattern = false;
180
+ if (!empty($this->supportedTypes[$frameworkType])) {
181
+ $frameworkClass = 'Composer\\Installers\\' . $this->supportedTypes[$frameworkType];
182
+ /** @var BaseInstaller $framework */
183
+ $framework = new $frameworkClass(null, $this->composer, $this->getIO());
184
+ $locations = array_keys($framework->getLocations());
185
+ $pattern = $locations ? '(' . implode('|', $locations) . ')' : false;
186
+ }
187
+
188
+ return $pattern ? : '(\w+)';
189
+ }
190
+
191
+ /**
192
+ * Get I/O object
193
+ *
194
+ * @return IOInterface
195
+ */
196
+ private function getIO()
197
+ {
198
+ return $this->io;
199
+ }
200
+ }
vendor/composer/installers/src/Composer/Installers/ItopInstaller.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class ItopInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'extension' => 'extensions/{$name}/',
8
+ );
9
+ }
vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class JoomlaInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'component' => 'components/{$name}/',
8
+ 'module' => 'modules/{$name}/',
9
+ 'template' => 'templates/{$name}/',
10
+ 'plugin' => 'plugins/{$name}/',
11
+ 'library' => 'libraries/{$name}/',
12
+ );
13
+
14
+ // TODO: Add inflector for mod_ and com_ names
15
+ }
vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ /**
5
+ *
6
+ * Installer for kanboard plugins
7
+ *
8
+ * kanboard.net
9
+ *
10
+ * Class KanboardInstaller
11
+ * @package Composer\Installers
12
+ */
13
+ class KanboardInstaller extends BaseInstaller
14
+ {
15
+ protected $locations = array(
16
+ 'plugin' => 'plugins/{$name}/',
17
+ );
18
+ }
vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class KirbyInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'plugin' => 'site/plugins/{$name}/',
8
+ 'field' => 'site/fields/{$name}/',
9
+ 'tag' => 'site/tags/{$name}/'
10
+ );
11
+ }
vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class KodiCMSInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'plugin' => 'cms/plugins/{$name}/',
8
+ 'media' => 'cms/media/vendor/{$name}/'
9
+ );
10
+ }
vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class KohanaInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'modules/{$name}/',
8
+ );
9
+ }
vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Composer\Installers;
4
+
5
+ class LanManagementSystemInstaller extends BaseInstaller
6
+ {
7
+
8
+ protected $locations = array(
9
+ 'plugin' => 'plugins/{$name}/',
10
+ 'template' => 'templates/{$name}/',
11
+ 'document-template' => 'documents/templates/{$name}/',
12
+ 'userpanel-module' => 'userpanel/modules/{$name}/',
13
+ );
14
+
15
+ /**
16
+ * Format package name to CamelCase
17
+ */
18
+ public function inflectPackageVars($vars)
19
+ {
20
+ $vars['name'] = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $vars['name']));
21
+ $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
22
+ $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
23
+
24
+ return $vars;
25
+ }
26
+
27
+ }
vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class LaravelInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'library' => 'libraries/{$name}/',
8
+ );
9
+ }
vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class LavaLiteInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'package' => 'packages/{$vendor}/{$name}/',
8
+ 'theme' => 'public/themes/{$name}/',
9
+ );
10
+ }
vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class LithiumInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'library' => 'libraries/{$name}/',
8
+ 'source' => 'libraries/_source/{$name}/',
9
+ );
10
+ }
vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class MODULEWorkInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'modules/{$name}/',
8
+ );
9
+ }
vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ /**
5
+ * An installer to handle MODX Evolution specifics when installing packages.
6
+ */
7
+ class MODXEvoInstaller extends BaseInstaller
8
+ {
9
+ protected $locations = array(
10
+ 'snippet' => 'assets/snippets/{$name}/',
11
+ 'plugin' => 'assets/plugins/{$name}/',
12
+ 'module' => 'assets/modules/{$name}/',
13
+ 'template' => 'assets/templates/{$name}/',
14
+ 'lib' => 'assets/lib/{$name}/'
15
+ );
16
+ }
vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class MagentoInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'theme' => 'app/design/frontend/{$name}/',
8
+ 'skin' => 'skin/frontend/default/{$name}/',
9
+ 'library' => 'lib/{$name}/',
10
+ );
11
+ }
vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ /**
5
+ * Plugin/theme installer for majima
6
+ * @author David Neustadt
7
+ */
8
+ class MajimaInstaller extends BaseInstaller
9
+ {
10
+ protected $locations = array(
11
+ 'plugin' => 'plugins/{$name}/',
12
+ );
13
+
14
+ /**
15
+ * Transforms the names
16
+ * @param array $vars
17
+ * @return array
18
+ */
19
+ public function inflectPackageVars($vars)
20
+ {
21
+ return $this->correctPluginName($vars);
22
+ }
23
+
24
+ /**
25
+ * Change hyphenated names to camelcase
26
+ * @param array $vars
27
+ * @return array
28
+ */
29
+ private function correctPluginName($vars)
30
+ {
31
+ $camelCasedName = preg_replace_callback('/(-[a-z])/', function ($matches) {
32
+ return strtoupper($matches[0][1]);
33
+ }, $vars['name']);
34
+ $vars['name'] = ucfirst($camelCasedName);
35
+ return $vars;
36
+ }
37
+ }
vendor/composer/installers/src/Composer/Installers/MakoInstaller.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class MakoInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'package' => 'app/packages/{$name}/',
8
+ );
9
+ }
vendor/composer/installers/src/Composer/Installers/MauticInstaller.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class MauticInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'plugin' => 'plugins/{$name}/',
8
+ 'theme' => 'themes/{$name}/',
9
+ );
10
+
11
+ /**
12
+ * Format package name of mautic-plugins to CamelCase
13
+ */
14
+ public function inflectPackageVars($vars)
15
+ {
16
+ if ($vars['type'] == 'mautic-plugin') {
17
+ $vars['name'] = preg_replace_callback('/(-[a-z])/', function ($matches) {
18
+ return strtoupper($matches[0][1]);
19
+ }, ucfirst($vars['name']));
20
+ }
21
+
22
+ return $vars;
23
+ }
24
+
25
+ }
vendor/composer/installers/src/Composer/Installers/MayaInstaller.php ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class MayaInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'modules/{$name}/',
8
+ );
9
+
10
+ /**
11
+ * Format package name.
12
+ *
13
+ * For package type maya-module, cut off a trailing '-module' if present.
14
+ *
15
+ */
16
+ public function inflectPackageVars($vars)
17
+ {
18
+ if ($vars['type'] === 'maya-module') {
19
+ return $this->inflectModuleVars($vars);
20
+ }
21
+
22
+ return $vars;
23
+ }
24
+
25
+ protected function inflectModuleVars($vars)
26
+ {
27
+ $vars['name'] = preg_replace('/-module$/', '', $vars['name']);
28
+ $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
29
+ $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
30
+
31
+ return $vars;
32
+ }
33
+ }
vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class MediaWikiInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'extension' => 'extensions/{$name}/',
8
+ 'skin' => 'skins/{$name}/',
9
+ );
10
+
11
+ /**
12
+ * Format package name.
13
+ *
14
+ * For package type mediawiki-extension, cut off a trailing '-extension' if present and transform
15
+ * to CamelCase keeping existing uppercase chars.
16
+ *
17
+ * For package type mediawiki-skin, cut off a trailing '-skin' if present.
18
+ *
19
+ */
20
+ public function inflectPackageVars($vars)
21
+ {
22
+
23
+ if ($vars['type'] === 'mediawiki-extension') {
24
+ return $this->inflectExtensionVars($vars);
25
+ }
26
+
27
+ if ($vars['type'] === 'mediawiki-skin') {
28
+ return $this->inflectSkinVars($vars);
29
+ }
30
+
31
+ return $vars;
32
+ }
33
+
34
+ protected function inflectExtensionVars($vars)
35
+ {
36
+ $vars['name'] = preg_replace('/-extension$/', '', $vars['name']);
37
+ $vars['name'] = str_replace('-', ' ', $vars['name']);
38
+ $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
39
+
40
+ return $vars;
41
+ }
42
+
43
+ protected function inflectSkinVars($vars)
44
+ {
45
+ $vars['name'] = preg_replace('/-skin$/', '', $vars['name']);
46
+
47
+ return $vars;
48
+ }
49
+
50
+ }
vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class MicroweberInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'userfiles/modules/{$name}/',
8
+ 'module-skin' => 'userfiles/modules/{$name}/templates/',
9
+ 'template' => 'userfiles/templates/{$name}/',
10
+ 'element' => 'userfiles/elements/{$name}/',
11
+ 'vendor' => 'vendor/{$name}/',
12
+ 'components' => 'components/{$name}/'
13
+ );
14
+
15
+ /**
16
+ * Format package name.
17
+ *
18
+ * For package type microweber-module, cut off a trailing '-module' if present
19
+ *
20
+ * For package type microweber-template, cut off a trailing '-template' if present.
21
+ *
22
+ */
23
+ public function inflectPackageVars($vars)
24
+ {
25
+ if ($vars['type'] === 'microweber-template') {
26
+ return $this->inflectTemplateVars($vars);
27
+ }
28
+ if ($vars['type'] === 'microweber-templates') {
29
+ return $this->inflectTemplatesVars($vars);
30
+ }
31
+ if ($vars['type'] === 'microweber-core') {
32
+ return $this->inflectCoreVars($vars);
33
+ }
34
+ if ($vars['type'] === 'microweber-adapter') {
35
+ return $this->inflectCoreVars($vars);
36
+ }
37
+ if ($vars['type'] === 'microweber-module') {
38
+ return $this->inflectModuleVars($vars);
39
+ }
40
+ if ($vars['type'] === 'microweber-modules') {
41
+ return $this->inflectModulesVars($vars);
42
+ }
43
+ if ($vars['type'] === 'microweber-skin') {
44
+ return $this->inflectSkinVars($vars);
45
+ }
46
+ if ($vars['type'] === 'microweber-element' or $vars['type'] === 'microweber-elements') {
47
+ return $this->inflectElementVars($vars);
48
+ }
49
+
50
+ return $vars;
51
+ }
52
+
53
+ protected function inflectTemplateVars($vars)
54
+ {
55
+ $vars['name'] = preg_replace('/-template$/', '', $vars['name']);
56
+ $vars['name'] = preg_replace('/template-$/', '', $vars['name']);
57
+
58
+ return $vars;
59
+ }
60
+
61
+ protected function inflectTemplatesVars($vars)
62
+ {
63
+ $vars['name'] = preg_replace('/-templates$/', '', $vars['name']);
64
+ $vars['name'] = preg_replace('/templates-$/', '', $vars['name']);
65
+
66
+ return $vars;
67
+ }
68
+
69
+ protected function inflectCoreVars($vars)
70
+ {
71
+ $vars['name'] = preg_replace('/-providers$/', '', $vars['name']);
72
+ $vars['name'] = preg_replace('/-provider$/', '', $vars['name']);
73
+ $vars['name'] = preg_replace('/-adapter$/', '', $vars['name']);
74
+
75
+ return $vars;
76
+ }
77
+
78
+ protected function inflectModuleVars($vars)
79
+ {
80
+ $vars['name'] = preg_replace('/-module$/', '', $vars['name']);
81
+ $vars['name'] = preg_replace('/module-$/', '', $vars['name']);
82
+
83
+ return $vars;
84
+ }
85
+
86
+ protected function inflectModulesVars($vars)
87
+ {
88
+ $vars['name'] = preg_replace('/-modules$/', '', $vars['name']);
89
+ $vars['name'] = preg_replace('/modules-$/', '', $vars['name']);
90
+
91
+ return $vars;
92
+ }
93
+
94
+ protected function inflectSkinVars($vars)
95
+ {
96
+ $vars['name'] = preg_replace('/-skin$/', '', $vars['name']);
97
+ $vars['name'] = preg_replace('/skin-$/', '', $vars['name']);
98
+
99
+ return $vars;
100
+ }
101
+
102
+ protected function inflectElementVars($vars)
103
+ {
104
+ $vars['name'] = preg_replace('/-elements$/', '', $vars['name']);
105
+ $vars['name'] = preg_replace('/elements-$/', '', $vars['name']);
106
+ $vars['name'] = preg_replace('/-element$/', '', $vars['name']);
107
+ $vars['name'] = preg_replace('/element-$/', '', $vars['name']);
108
+
109
+ return $vars;
110
+ }
111
+ }
vendor/composer/installers/src/Composer/Installers/ModxInstaller.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ /**
5
+ * An installer to handle MODX specifics when installing packages.
6
+ */
7
+ class ModxInstaller extends BaseInstaller
8
+ {
9
+ protected $locations = array(
10
+ 'extra' => 'core/packages/{$name}/'
11
+ );
12
+ }
vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class MoodleInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'mod' => 'mod/{$name}/',
8
+ 'admin_report' => 'admin/report/{$name}/',
9
+ 'atto' => 'lib/editor/atto/plugins/{$name}/',
10
+ 'tool' => 'admin/tool/{$name}/',
11
+ 'assignment' => 'mod/assignment/type/{$name}/',
12
+ 'assignsubmission' => 'mod/assign/submission/{$name}/',
13
+ 'assignfeedback' => 'mod/assign/feedback/{$name}/',
14
+ 'auth' => 'auth/{$name}/',
15
+ 'availability' => 'availability/condition/{$name}/',
16
+ 'block' => 'blocks/{$name}/',
17
+ 'booktool' => 'mod/book/tool/{$name}/',
18
+ 'cachestore' => 'cache/stores/{$name}/',
19
+ 'cachelock' => 'cache/locks/{$name}/',
20
+ 'calendartype' => 'calendar/type/{$name}/',
21
+ 'format' => 'course/format/{$name}/',
22
+ 'coursereport' => 'course/report/{$name}/',
23
+ 'datafield' => 'mod/data/field/{$name}/',
24
+ 'datapreset' => 'mod/data/preset/{$name}/',
25
+ 'editor' => 'lib/editor/{$name}/',
26
+ 'enrol' => 'enrol/{$name}/',
27
+ 'filter' => 'filter/{$name}/',
28
+ 'gradeexport' => 'grade/export/{$name}/',
29
+ 'gradeimport' => 'grade/import/{$name}/',
30
+ 'gradereport' => 'grade/report/{$name}/',
31
+ 'gradingform' => 'grade/grading/form/{$name}/',
32
+ 'local' => 'local/{$name}/',
33
+ 'logstore' => 'admin/tool/log/store/{$name}/',
34
+ 'ltisource' => 'mod/lti/source/{$name}/',
35
+ 'ltiservice' => 'mod/lti/service/{$name}/',
36
+ 'message' => 'message/output/{$name}/',
37
+ 'mnetservice' => 'mnet/service/{$name}/',
38
+ 'plagiarism' => 'plagiarism/{$name}/',
39
+ 'portfolio' => 'portfolio/{$name}/',
40
+ 'qbehaviour' => 'question/behaviour/{$name}/',
41
+ 'qformat' => 'question/format/{$name}/',
42
+ 'qtype' => 'question/type/{$name}/',
43
+ 'quizaccess' => 'mod/quiz/accessrule/{$name}/',
44
+ 'quiz' => 'mod/quiz/report/{$name}/',
45
+ 'report' => 'report/{$name}/',
46
+ 'repository' => 'repository/{$name}/',
47
+ 'scormreport' => 'mod/scorm/report/{$name}/',
48
+ 'search' => 'search/engine/{$name}/',
49
+ 'theme' => 'theme/{$name}/',
50
+ 'tinymce' => 'lib/editor/tinymce/plugins/{$name}/',
51
+ 'profilefield' => 'user/profile/field/{$name}/',
52
+ 'webservice' => 'webservice/{$name}/',
53
+ 'workshopallocation' => 'mod/workshop/allocation/{$name}/',
54
+ 'workshopeval' => 'mod/workshop/eval/{$name}/',
55
+ 'workshopform' => 'mod/workshop/form/{$name}/'
56
+ );
57
+ }
vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class OctoberInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'modules/{$name}/',
8
+ 'plugin' => 'plugins/{$vendor}/{$name}/',
9
+ 'theme' => 'themes/{$name}/'
10
+ );
11
+
12
+ /**
13
+ * Format package name.
14
+ *
15
+ * For package type october-plugin, cut off a trailing '-plugin' if present.
16
+ *
17
+ * For package type october-theme, cut off a trailing '-theme' if present.
18
+ *
19
+ */
20
+ public function inflectPackageVars($vars)
21
+ {
22
+ if ($vars['type'] === 'october-plugin') {
23
+ return $this->inflectPluginVars($vars);
24
+ }
25
+
26
+ if ($vars['type'] === 'october-theme') {
27
+ return $this->inflectThemeVars($vars);
28
+ }
29
+
30
+ return $vars;
31
+ }
32
+
33
+ protected function inflectPluginVars($vars)
34
+ {
35
+ $vars['name'] = preg_replace('/^oc-|-plugin$/', '', $vars['name']);
36
+
37
+ return $vars;
38
+ }
39
+
40
+ protected function inflectThemeVars($vars)
41
+ {
42
+ $vars['name'] = preg_replace('/^oc-|-theme$/', '', $vars['name']);
43
+
44
+ return $vars;
45
+ }
46
+ }
vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class OntoWikiInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'extension' => 'extensions/{$name}/',
8
+ 'theme' => 'extensions/themes/{$name}/',
9
+ 'translation' => 'extensions/translations/{$name}/',
10
+ );
11
+
12
+ /**
13
+ * Format package name to lower case and remove ".ontowiki" suffix
14
+ */
15
+ public function inflectPackageVars($vars)
16
+ {
17
+ $vars['name'] = strtolower($vars['name']);
18
+ $vars['name'] = preg_replace('/.ontowiki$/', '', $vars['name']);
19
+ $vars['name'] = preg_replace('/-theme$/', '', $vars['name']);
20
+ $vars['name'] = preg_replace('/-translation$/', '', $vars['name']);
21
+
22
+ return $vars;
23
+ }
24
+ }
vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+
5
+ class OsclassInstaller extends BaseInstaller
6
+ {
7
+
8
+ protected $locations = array(
9
+ 'plugin' => 'oc-content/plugins/{$name}/',
10
+ 'theme' => 'oc-content/themes/{$name}/',
11
+ 'language' => 'oc-content/languages/{$name}/',
12
+ );
13
+
14
+ }
vendor/composer/installers/src/Composer/Installers/OxidInstaller.php ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ use Composer\Package\PackageInterface;
5
+
6
+ class OxidInstaller extends BaseInstaller
7
+ {
8
+ const VENDOR_PATTERN = '/^modules\/(?P<vendor>.+)\/.+/';
9
+
10
+ protected $locations = array(
11
+ 'module' => 'modules/{$name}/',
12
+ 'theme' => 'application/views/{$name}/',
13
+ 'out' => 'out/{$name}/',
14
+ );
15
+
16
+ /**
17
+ * getInstallPath
18
+ *
19
+ * @param PackageInterface $package
20
+ * @param string $frameworkType
21
+ * @return void
22
+ */
23
+ public function getInstallPath(PackageInterface $package, $frameworkType = '')
24
+ {
25
+ $installPath = parent::getInstallPath($package, $frameworkType);
26
+ $type = $this->package->getType();
27
+ if ($type === 'oxid-module') {
28
+ $this->prepareVendorDirectory($installPath);
29
+ }
30
+ return $installPath;
31
+ }
32
+
33
+ /**
34
+ * prepareVendorDirectory
35
+ *
36
+ * Makes sure there is a vendormetadata.php file inside
37
+ * the vendor folder if there is a vendor folder.
38
+ *
39
+ * @param string $installPath
40
+ * @return void
41
+ */
42
+ protected function prepareVendorDirectory($installPath)
43
+ {
44
+ $matches = '';
45
+ $hasVendorDirectory = preg_match(self::VENDOR_PATTERN, $installPath, $matches);
46
+ if (!$hasVendorDirectory) {
47
+ return;
48
+ }
49
+
50
+ $vendorDirectory = $matches['vendor'];
51
+ $vendorPath = getcwd() . '/modules/' . $vendorDirectory;
52
+ if (!file_exists($vendorPath)) {
53
+ mkdir($vendorPath, 0755, true);
54
+ }
55
+
56
+ $vendorMetaDataPath = $vendorPath . '/vendormetadata.php';
57
+ touch($vendorMetaDataPath);
58
+ }
59
+ }
vendor/composer/installers/src/Composer/Installers/PPIInstaller.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class PPIInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'modules/{$name}/',
8
+ );
9
+ }
vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class PhiftyInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'bundle' => 'bundles/{$name}/',
8
+ 'library' => 'libraries/{$name}/',
9
+ 'framework' => 'frameworks/{$name}/',
10
+ );
11
+ }
vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class PhpBBInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'extension' => 'ext/{$vendor}/{$name}/',
8
+ 'language' => 'language/{$name}/',
9
+ 'style' => 'styles/{$name}/',
10
+ );
11
+ }
vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class PimcoreInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'plugin' => 'plugins/{$name}/',
8
+ );
9
+
10
+ /**
11
+ * Format package name to CamelCase
12
+ */
13
+ public function inflectPackageVars($vars)
14
+ {
15
+ $vars['name'] = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $vars['name']));
16
+ $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
17
+ $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
18
+
19
+ return $vars;
20
+ }
21
+ }
vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ /**
5
+ * Class PiwikInstaller
6
+ *
7
+ * @package Composer\Installers
8
+ */
9
+ class PiwikInstaller extends BaseInstaller
10
+ {
11
+ /**
12
+ * @var array
13
+ */
14
+ protected $locations = array(
15
+ 'plugin' => 'plugins/{$name}/',
16
+ );
17
+
18
+ /**
19
+ * Format package name to CamelCase
20
+ * @param array $vars
21
+ *
22
+ * @return array
23
+ */
24
+ public function inflectPackageVars($vars)
25
+ {
26
+ $vars['name'] = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $vars['name']));
27
+ $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
28
+ $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
29
+
30
+ return $vars;
31
+ }
32
+ }
vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class PlentymarketsInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'plugin' => '{$name}/'
8
+ );
9
+
10
+ /**
11
+ * Remove hyphen, "plugin" and format to camelcase
12
+ * @param array $vars
13
+ *
14
+ * @return array
15
+ */
16
+ public function inflectPackageVars($vars)
17
+ {
18
+ $vars['name'] = explode("-", $vars['name']);
19
+ foreach ($vars['name'] as $key => $name) {
20
+ $vars['name'][$key] = ucfirst($vars['name'][$key]);
21
+ if (strcasecmp($name, "Plugin") == 0) {
22
+ unset($vars['name'][$key]);
23
+ }
24
+ }
25
+ $vars['name'] = implode("",$vars['name']);
26
+
27
+ return $vars;
28
+ }
29
+ }
vendor/composer/installers/src/Composer/Installers/Plugin.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Composer\Installers;
4
+
5
+ use Composer\Composer;
6
+ use Composer\IO\IOInterface;
7
+ use Composer\Plugin\PluginInterface;
8
+
9
+ class Plugin implements PluginInterface
10
+ {
11
+
12
+ public function activate(Composer $composer, IOInterface $io)
13
+ {
14
+ $installer = new Installer($io, $composer);
15
+ $composer->getInstallationManager()->addInstaller($installer);
16
+ }
17
+ }
vendor/composer/installers/src/Composer/Installers/PortoInstaller.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class PortoInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'container' => 'app/Containers/{$name}/',
8
+ );
9
+ }
vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class PrestashopInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'modules/{$name}/',
8
+ 'theme' => 'themes/{$name}/',
9
+ );
10
+ }
vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Composer\Installers;
4
+
5
+ class PuppetInstaller extends BaseInstaller
6
+ {
7
+
8
+ protected $locations = array(
9
+ 'module' => 'modules/{$name}/',
10
+ );
11
+ }
vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class PxcmsInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'app/Modules/{$name}/',
8
+ 'theme' => 'themes/{$name}/',
9
+ );
10
+
11
+ /**
12
+ * Format package name.
13
+ *
14
+ * @param array $vars
15
+ *
16
+ * @return array
17
+ */
18
+ public function inflectPackageVars($vars)
19
+ {
20
+ if ($vars['type'] === 'pxcms-module') {
21
+ return $this->inflectModuleVars($vars);
22
+ }
23
+
24
+ if ($vars['type'] === 'pxcms-theme') {
25
+ return $this->inflectThemeVars($vars);
26
+ }
27
+
28
+ return $vars;
29
+ }
30
+
31
+ /**
32
+ * For package type pxcms-module, cut off a trailing '-plugin' if present.
33
+ *
34
+ * return string
35
+ */
36
+ protected function inflectModuleVars($vars)
37
+ {
38
+ $vars['name'] = str_replace('pxcms-', '', $vars['name']); // strip out pxcms- just incase (legacy)
39
+ $vars['name'] = str_replace('module-', '', $vars['name']); // strip out module-
40
+ $vars['name'] = preg_replace('/-module$/', '', $vars['name']); // strip out -module
41
+ $vars['name'] = str_replace('-', '_', $vars['name']); // make -'s be _'s
42
+ $vars['name'] = ucwords($vars['name']); // make module name camelcased
43
+
44
+ return $vars;
45
+ }
46
+
47
+
48
+ /**
49
+ * For package type pxcms-module, cut off a trailing '-plugin' if present.
50
+ *
51
+ * return string
52
+ */
53
+ protected function inflectThemeVars($vars)
54
+ {
55
+ $vars['name'] = str_replace('pxcms-', '', $vars['name']); // strip out pxcms- just incase (legacy)
56
+ $vars['name'] = str_replace('theme-', '', $vars['name']); // strip out theme-
57
+ $vars['name'] = preg_replace('/-theme$/', '', $vars['name']); // strip out -theme
58
+ $vars['name'] = str_replace('-', '_', $vars['name']); // make -'s be _'s
59
+ $vars['name'] = ucwords($vars['name']); // make module name camelcased
60
+
61
+ return $vars;
62
+ }
63
+ }
vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class RadPHPInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'bundle' => 'src/{$name}/'
8
+ );
9
+
10
+ /**
11
+ * Format package name to CamelCase
12
+ */
13
+ public function inflectPackageVars($vars)
14
+ {
15
+ $nameParts = explode('/', $vars['name']);
16
+ foreach ($nameParts as &$value) {
17
+ $value = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $value));
18
+ $value = str_replace(array('-', '_'), ' ', $value);
19
+ $value = str_replace(' ', '', ucwords($value));
20
+ }
21
+ $vars['name'] = implode('/', $nameParts);
22
+ return $vars;
23
+ }
24
+ }
vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class ReIndexInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'theme' => 'themes/{$name}/',
8
+ 'plugin' => 'plugins/{$name}/'
9
+ );
10
+ }
vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class RedaxoInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'addon' => 'redaxo/include/addons/{$name}/',
8
+ 'bestyle-plugin' => 'redaxo/include/addons/be_style/plugins/{$name}/'
9
+ );
10
+ }
vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class RoundcubeInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'plugin' => 'plugins/{$name}/',
8
+ );
9
+
10
+ /**
11
+ * Lowercase name and changes the name to a underscores
12
+ *
13
+ * @param array $vars
14
+ * @return array
15
+ */
16
+ public function inflectPackageVars($vars)
17
+ {
18
+ $vars['name'] = strtolower(str_replace('-', '_', $vars['name']));
19
+
20
+ return $vars;
21
+ }
22
+ }
vendor/composer/installers/src/Composer/Installers/SMFInstaller.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class SMFInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'Sources/{$name}/',
8
+ 'theme' => 'Themes/{$name}/',
9
+ );
10
+ }
vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ /**
5
+ * Plugin/theme installer for shopware
6
+ * @author Benjamin Boit
7
+ */
8
+ class ShopwareInstaller extends BaseInstaller
9
+ {
10
+ protected $locations = array(
11
+ 'backend-plugin' => 'engine/Shopware/Plugins/Local/Backend/{$name}/',
12
+ 'core-plugin' => 'engine/Shopware/Plugins/Local/Core/{$name}/',
13
+ 'frontend-plugin' => 'engine/Shopware/Plugins/Local/Frontend/{$name}/',
14
+ 'theme' => 'templates/{$name}/',
15
+ 'plugin' => 'custom/plugins/{$name}/',
16
+ 'frontend-theme' => 'themes/Frontend/{$name}/',
17
+ );
18
+
19
+ /**
20
+ * Transforms the names
21
+ * @param array $vars
22
+ * @return array
23
+ */
24
+ public function inflectPackageVars($vars)
25
+ {
26
+ if ($vars['type'] === 'shopware-theme') {
27
+ return $this->correctThemeName($vars);
28
+ }
29
+
30
+ return $this->correctPluginName($vars);
31
+ }
32
+
33
+ /**
34
+ * Changes the name to a camelcased combination of vendor and name
35
+ * @param array $vars
36
+ * @return array
37
+ */
38
+ private function correctPluginName($vars)
39
+ {
40
+ $camelCasedName = preg_replace_callback('/(-[a-z])/', function ($matches) {
41
+ return strtoupper($matches[0][1]);
42
+ }, $vars['name']);
43
+
44
+ $vars['name'] = ucfirst($vars['vendor']) . ucfirst($camelCasedName);
45
+
46
+ return $vars;
47
+ }
48
+
49
+ /**
50
+ * Changes the name to a underscore separated name
51
+ * @param array $vars
52
+ * @return array
53
+ */
54
+ private function correctThemeName($vars)
55
+ {
56
+ $vars['name'] = str_replace('-', '_', $vars['name']);
57
+
58
+ return $vars;
59
+ }
60
+ }
vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ use Composer\Package\PackageInterface;
5
+
6
+ class SilverStripeInstaller extends BaseInstaller
7
+ {
8
+ protected $locations = array(
9
+ 'module' => '{$name}/',
10
+ 'theme' => 'themes/{$name}/',
11
+ );
12
+
13
+ /**
14
+ * Return the install path based on package type.
15
+ *
16
+ * Relies on built-in BaseInstaller behaviour with one exception: silverstripe/framework
17
+ * must be installed to 'sapphire' and not 'framework' if the version is <3.0.0
18
+ *
19
+ * @param PackageInterface $package
20
+ * @param string $frameworkType
21
+ * @return string
22
+ */
23
+ public function getInstallPath(PackageInterface $package, $frameworkType = '')
24
+ {
25
+ if (
26
+ $package->getName() == 'silverstripe/framework'
27
+ && preg_match('/^\d+\.\d+\.\d+/', $package->getVersion())
28
+ && version_compare($package->getVersion(), '2.999.999') < 0
29
+ ) {
30
+ return $this->templatePath($this->locations['module'], array('name' => 'sapphire'));
31
+ }
32
+
33
+ return parent::getInstallPath($package, $frameworkType);
34
+ }
35
+ }
vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Composer\Installers;
4
+
5
+ class SiteDirectInstaller extends BaseInstaller
6
+ {
7
+ protected $locations = array(
8
+ 'module' => 'modules/{$vendor}/{$name}/',
9
+ 'plugin' => 'plugins/{$vendor}/{$name}/'
10
+ );
11
+
12
+ public function inflectPackageVars($vars)
13
+ {
14
+ return $this->parseVars($vars);
15
+ }
16
+
17
+ protected function parseVars($vars)
18
+ {
19
+ $vars['vendor'] = strtolower($vars['vendor']) == 'sitedirect' ? 'SiteDirect' : $vars['vendor'];
20
+ $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
21
+ $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
22
+
23
+ return $vars;
24
+ }
25
+ }
vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class SyDESInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'app/modules/{$name}/',
8
+ 'theme' => 'themes/{$name}/',
9
+ );
10
+
11
+ /**
12
+ * Format module name.
13
+ *
14
+ * Strip `sydes-` prefix and a trailing '-theme' or '-module' from package name if present.
15
+ *
16
+ * @param array @vars
17
+ *
18
+ * @return array
19
+ */
20
+ public function inflectPackageVars($vars)
21
+ {
22
+ if ($vars['type'] == 'sydes-module') {
23
+ return $this->inflectModuleVars($vars);
24
+ }
25
+
26
+ if ($vars['type'] === 'sydes-theme') {
27
+ return $this->inflectThemeVars($vars);
28
+ }
29
+
30
+ return $vars;
31
+ }
32
+
33
+ public function inflectModuleVars($vars)
34
+ {
35
+ $vars['name'] = preg_replace('/(^sydes-|-module$)/i', '', $vars['name']);
36
+ $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
37
+ $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
38
+
39
+ return $vars;
40
+ }
41
+
42
+ protected function inflectThemeVars($vars)
43
+ {
44
+ $vars['name'] = preg_replace('/(^sydes-|-theme$)/', '', $vars['name']);
45
+ $vars['name'] = strtolower($vars['name']);
46
+
47
+ return $vars;
48
+ }
49
+ }
vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ /**
5
+ * Plugin installer for symfony 1.x
6
+ *
7
+ * @author Jérôme Tamarelle <jerome@tamarelle.net>
8
+ */
9
+ class Symfony1Installer extends BaseInstaller
10
+ {
11
+ protected $locations = array(
12
+ 'plugin' => 'plugins/{$name}/',
13
+ );
14
+
15
+ /**
16
+ * Format package name to CamelCase
17
+ */
18
+ public function inflectPackageVars($vars)
19
+ {
20
+ $vars['name'] = preg_replace_callback('/(-[a-z])/', function ($matches) {
21
+ return strtoupper($matches[0][1]);
22
+ }, $vars['name']);
23
+
24
+ return $vars;
25
+ }
26
+ }
vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ /**
5
+ * Extension installer for TYPO3 CMS
6
+ *
7
+ * @deprecated since 1.0.25, use https://packagist.org/packages/typo3/cms-composer-installers instead
8
+ *
9
+ * @author Sascha Egerer <sascha.egerer@dkd.de>
10
+ */
11
+ class TYPO3CmsInstaller extends BaseInstaller
12
+ {
13
+ protected $locations = array(
14
+ 'extension' => 'typo3conf/ext/{$name}/',
15
+ );
16
+ }
vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ /**
5
+ * An installer to handle TYPO3 Flow specifics when installing packages.
6
+ */
7
+ class TYPO3FlowInstaller extends BaseInstaller
8
+ {
9
+ protected $locations = array(
10
+ 'package' => 'Packages/Application/{$name}/',
11
+ 'framework' => 'Packages/Framework/{$name}/',
12
+ 'plugin' => 'Packages/Plugins/{$name}/',
13
+ 'site' => 'Packages/Sites/{$name}/',
14
+ 'boilerplate' => 'Packages/Boilerplates/{$name}/',
15
+ 'build' => 'Build/{$name}/',
16
+ );
17
+
18
+ /**
19
+ * Modify the package name to be a TYPO3 Flow style key.
20
+ *
21
+ * @param array $vars
22
+ * @return array
23
+ */
24
+ public function inflectPackageVars($vars)
25
+ {
26
+ $autoload = $this->package->getAutoload();
27
+ if (isset($autoload['psr-0']) && is_array($autoload['psr-0'])) {
28
+ $namespace = key($autoload['psr-0']);
29
+ $vars['name'] = str_replace('\\', '.', $namespace);
30
+ }
31
+ if (isset($autoload['psr-4']) && is_array($autoload['psr-4'])) {
32
+ $namespace = key($autoload['psr-4']);
33
+ $vars['name'] = rtrim(str_replace('\\', '.', $namespace), '.');
34
+ }
35
+
36
+ return $vars;
37
+ }
38
+ }
vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class TheliaInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'local/modules/{$name}/',
8
+ 'frontoffice-template' => 'templates/frontOffice/{$name}/',
9
+ 'backoffice-template' => 'templates/backOffice/{$name}/',
10
+ 'email-template' => 'templates/email/{$name}/',
11
+ );
12
+ }
vendor/composer/installers/src/Composer/Installers/TuskInstaller.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+ /**
4
+ * Composer installer for 3rd party Tusk utilities
5
+ * @author Drew Ewing <drew@phenocode.com>
6
+ */
7
+ class TuskInstaller extends BaseInstaller
8
+ {
9
+ protected $locations = array(
10
+ 'task' => '.tusk/tasks/{$name}/',
11
+ 'command' => '.tusk/commands/{$name}/',
12
+ 'asset' => 'assets/tusk/{$name}/',
13
+ );
14
+ }
vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class UserFrostingInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'sprinkle' => 'app/sprinkles/{$name}/',
8
+ );
9
+ }
vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class VanillaInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'plugin' => 'plugins/{$name}/',
8
+ 'theme' => 'themes/{$name}/',
9
+ );
10
+ }
vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class VgmcpInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'bundle' => 'src/{$vendor}/{$name}/',
8
+ 'theme' => 'themes/{$name}/'
9
+ );
10
+
11
+ /**
12
+ * Format package name.
13
+ *
14
+ * For package type vgmcp-bundle, cut off a trailing '-bundle' if present.
15
+ *
16
+ * For package type vgmcp-theme, cut off a trailing '-theme' if present.
17
+ *
18
+ */
19
+ public function inflectPackageVars($vars)
20
+ {
21
+ if ($vars['type'] === 'vgmcp-bundle') {
22
+ return $this->inflectPluginVars($vars);
23
+ }
24
+
25
+ if ($vars['type'] === 'vgmcp-theme') {
26
+ return $this->inflectThemeVars($vars);
27
+ }
28
+
29
+ return $vars;
30
+ }
31
+
32
+ protected function inflectPluginVars($vars)
33
+ {
34
+ $vars['name'] = preg_replace('/-bundle$/', '', $vars['name']);
35
+ $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
36
+ $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
37
+
38
+ return $vars;
39
+ }
40
+
41
+ protected function inflectThemeVars($vars)
42
+ {
43
+ $vars['name'] = preg_replace('/-theme$/', '', $vars['name']);
44
+ $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
45
+ $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
46
+
47
+ return $vars;
48
+ }
49
+ }
vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Composer\Installers;
4
+
5
+ class WHMCSInstaller extends BaseInstaller
6
+ {
7
+ protected $locations = array(
8
+ 'gateway' => 'modules/gateways/{$name}/',
9
+ );
10
+ }
vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class WolfCMSInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'plugin' => 'wolf/plugins/{$name}/',
8
+ );
9
+ }
vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class WordPressInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'plugin' => 'wp-content/plugins/{$name}/',
8
+ 'theme' => 'wp-content/themes/{$name}/',
9
+ 'muplugin' => 'wp-content/mu-plugins/{$name}/',
10
+ 'dropin' => 'wp-content/{$name}/',
11
+ );
12
+ }
vendor/composer/installers/src/Composer/Installers/YawikInstaller.php ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Created by PhpStorm.
4
+ * User: cbleek
5
+ * Date: 25.03.16
6
+ * Time: 20:55
7
+ */
8
+
9
+ namespace Composer\Installers;
10
+
11
+
12
+ class YawikInstaller extends BaseInstaller
13
+ {
14
+ protected $locations = array(
15
+ 'module' => 'module/{$name}/',
16
+ );
17
+
18
+ /**
19
+ * Format package name to CamelCase
20
+ * @param array $vars
21
+ *
22
+ * @return array
23
+ */
24
+ public function inflectPackageVars($vars)
25
+ {
26
+ $vars['name'] = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $vars['name']));
27
+ $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
28
+ $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
29
+
30
+ return $vars;
31
+ }
32
+ }
vendor/composer/installers/src/Composer/Installers/ZendInstaller.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class ZendInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'library' => 'library/{$name}/',
8
+ 'extra' => 'extras/library/{$name}/',
9
+ 'module' => 'module/{$name}/',
10
+ );
11
+ }
vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers;
3
+
4
+ class ZikulaInstaller extends BaseInstaller
5
+ {
6
+ protected $locations = array(
7
+ 'module' => 'modules/{$vendor}-{$name}/',
8
+ 'theme' => 'themes/{$vendor}-{$name}/'
9
+ );
10
+ }
vendor/composer/installers/src/bootstrap.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ function includeIfExists($file)
3
+ {
4
+ if (file_exists($file)) {
5
+ return include $file;
6
+ }
7
+ }
8
+ if ((!$loader = includeIfExists(__DIR__ . '/../vendor/autoload.php')) && (!$loader = includeIfExists(__DIR__ . '/../../../autoload.php'))) {
9
+ die('You must set up the project dependencies, run the following commands:'.PHP_EOL.
10
+ 'curl -s http://getcomposer.org/installer | php'.PHP_EOL.
11
+ 'php composer.phar install'.PHP_EOL);
12
+ }
13
+ return $loader;
vendor/composer/installers/tests/Composer/Installers/Test/AsgardInstallerTest.php ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers\Test;
3
+
4
+ use Composer\Installers\AsgardInstaller;
5
+ use Composer\Package\Package;
6
+ use Composer\Composer;
7
+ use PHPUnit\Framework\TestCase;
8
+
9
+ class AsgardInstallerTest extends TestCase
10
+ {
11
+ /**
12
+ * @var AsgardInstaller
13
+ */
14
+ private $installer;
15
+
16
+ public function setUp()
17
+ {
18
+ $this->installer = new AsgardInstaller(
19
+ new Package('NyanCat', '4.2', '4.2'),
20
+ new Composer()
21
+ );
22
+ }
23
+
24
+ /**
25
+ * @dataProvider packageNameInflectionProvider
26
+ */
27
+ public function testInflectPackageVars($type, $name, $expected)
28
+ {
29
+ $this->assertEquals(
30
+ array('name' => $expected, 'type' => $type),
31
+ $this->installer->inflectPackageVars(array('name' => $name, 'type' => $type))
32
+ );
33
+ }
34
+
35
+ public function packageNameInflectionProvider()
36
+ {
37
+ return array(
38
+ // Should keep module name StudlyCase
39
+ array(
40
+ 'asgard-module',
41
+ 'user-profile',
42
+ 'UserProfile'
43
+ ),
44
+ array(
45
+ 'asgard-module',
46
+ 'asgard-module',
47
+ 'Asgard'
48
+ ),
49
+ array(
50
+ 'asgard-module',
51
+ 'blog',
52
+ 'Blog'
53
+ ),
54
+ // tests that exactly one '-module' is cut off
55
+ array(
56
+ 'asgard-module',
57
+ 'some-module-module',
58
+ 'SomeModule',
59
+ ),
60
+ // tests that exactly one '-theme' is cut off
61
+ array(
62
+ 'asgard-theme',
63
+ 'some-theme-theme',
64
+ 'SomeTheme',
65
+ ),
66
+ // tests that names without '-theme' suffix stay valid
67
+ array(
68
+ 'asgard-theme',
69
+ 'someothertheme',
70
+ 'Someothertheme',
71
+ ),
72
+ // Should keep theme name StudlyCase
73
+ array(
74
+ 'asgard-theme',
75
+ 'adminlte-advanced',
76
+ 'AdminlteAdvanced'
77
+ ),
78
+ );
79
+ }
80
+ }
vendor/composer/installers/tests/Composer/Installers/Test/BitrixInstallerTest.php ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Composer\Installers\Test;
4
+
5
+ use Composer\Installers\BitrixInstaller;
6
+ use Composer\Package\Package;
7
+ use Composer\Composer;
8
+
9
+ /**
10
+ * Tests for the BitrixInstaller Class
11
+ *
12
+ * @coversDefaultClass Composer\Installers\BitrixInstaller
13
+ */
14
+ class BitrixInstallerTest extends TestCase
15
+ {
16
+ /** @var BitrixInstaller */
17
+ private $installer;
18
+
19
+ /** @var Composer */
20
+ private $composer;
21
+
22
+
23
+ /**
24
+ * Sets up the fixture, for example, instantiate the class-under-test.
25
+ *
26
+ * This method is called before a test is executed.
27
+ */
28
+ final function setUp()
29
+ {
30
+ $this->composer = new Composer();
31
+ }
32
+
33
+ /**
34
+ * @param string $vars
35
+ * @param string $expectedVars
36
+ *
37
+ * @covers ::inflectPackageVars
38
+ *
39
+ * @dataProvider provideExpectedInflectionResults
40
+ */
41
+ final public function testInflectPackageVars($vars, $expectedVars)
42
+ {
43
+
44
+ $this->installer = new BitrixInstaller(
45
+ new Package($vars['name'], '4.2', '4.2'),
46
+ $this->composer
47
+ );
48
+ $actual = $this->installer->inflectPackageVars($vars);
49
+ $this->assertEquals($actual, $expectedVars);
50
+ }
51
+
52
+ /**
53
+ * Provides various parameters for packages and the expected result after inflection
54
+ *
55
+ * @return array
56
+ */
57
+ final public function provideExpectedInflectionResults()
58
+ {
59
+ return array(
60
+ //check bitrix-dir is correct
61
+ array(
62
+ array('name' => 'Nyan/Cat'),
63
+ array('name' => 'Nyan/Cat', 'bitrix_dir' => 'bitrix')
64
+ ),
65
+ array(
66
+ array('name' => 'Nyan/Cat', 'bitrix_dir' => 'bitrix'),
67
+ array('name' => 'Nyan/Cat', 'bitrix_dir' => 'bitrix')
68
+ ),
69
+ array(
70
+ array('name' => 'Nyan/Cat', 'bitrix_dir' => 'local'),
71
+ array('name' => 'Nyan/Cat', 'bitrix_dir' => 'local')
72
+ ),
73
+ );
74
+ }
75
+ }
vendor/composer/installers/tests/Composer/Installers/Test/CakePHPInstallerTest.php ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers\Test;
3
+
4
+ use Composer\Installers\CakePHPInstaller;
5
+ use Composer\Repository\RepositoryManager;
6
+ use Composer\Repository\InstalledArrayRepository;
7
+ use Composer\Package\Package;
8
+ use Composer\Package\RootPackage;
9
+ use Composer\Package\Version\VersionParser;
10
+ use Composer\Composer;
11
+ use Composer\Config;
12
+
13
+ class CakePHPInstallerTest extends TestCase
14
+ {
15
+ private $composer;
16
+ private $io;
17
+
18
+ /**
19
+ * setUp
20
+ *
21
+ * @return void
22
+ */
23
+ public function setUp()
24
+ {
25
+ $this->package = new Package('CamelCased', '1.0', '1.0');
26
+ $this->io = $this->getMock('Composer\IO\PackageInterface');
27
+ $this->composer = new Composer();
28
+ $this->composer->setConfig(new Config(false));
29
+ }
30
+
31
+ /**
32
+ * testInflectPackageVars
33
+ *
34
+ * @return void
35
+ */
36
+ public function testInflectPackageVars()
37
+ {
38
+ $installer = new CakePHPInstaller($this->package, $this->composer);
39
+ $result = $installer->inflectPackageVars(array('name' => 'CamelCased'));
40
+ $this->assertEquals($result, array('name' => 'CamelCased'));
41
+
42
+ $installer = new CakePHPInstaller($this->package, $this->composer);
43
+ $result = $installer->inflectPackageVars(array('name' => 'with-dash'));
44
+ $this->assertEquals($result, array('name' => 'WithDash'));
45
+
46
+ $installer = new CakePHPInstaller($this->package, $this->composer);
47
+ $result = $installer->inflectPackageVars(array('name' => 'with_underscore'));
48
+ $this->assertEquals($result, array('name' => 'WithUnderscore'));
49
+
50
+ $installer = new CakePHPInstaller($this->package, $this->composer);
51
+ $result = $installer->inflectPackageVars(array('name' => 'cake/acl'));
52
+ $this->assertEquals($result, array('name' => 'Cake/Acl'));
53
+
54
+ $installer = new CakePHPInstaller($this->package, $this->composer);
55
+ $result = $installer->inflectPackageVars(array('name' => 'cake/debug-kit'));
56
+ $this->assertEquals($result, array('name' => 'Cake/DebugKit'));
57
+ }
58
+
59
+ /**
60
+ * Test getLocations returning appropriate values based on CakePHP version
61
+ *
62
+ */
63
+ public function testGetLocations() {
64
+ $package = new RootPackage('CamelCased', '1.0', '1.0');
65
+ $composer = $this->composer;
66
+ $rm = new RepositoryManager(
67
+ $this->getMock('Composer\IO\IOInterface'),
68
+ $this->getMock('Composer\Config')
69
+ );
70
+ $composer->setRepositoryManager($rm);
71
+ $installer = new CakePHPInstaller($package, $composer);
72
+
73
+ // 2.0 < cakephp < 3.0
74
+ $this->setCakephpVersion($rm, '2.0.0');
75
+ $result = $installer->getLocations();
76
+ $this->assertContains('Plugin/', $result['plugin']);
77
+
78
+ $this->setCakephpVersion($rm, '2.5.9');
79
+ $result = $installer->getLocations();
80
+ $this->assertContains('Plugin/', $result['plugin']);
81
+
82
+ $this->setCakephpVersion($rm, '~2.5');
83
+ $result = $installer->getLocations();
84
+ $this->assertContains('Plugin/', $result['plugin']);
85
+
86
+ // special handling for 2.x versions when 3.x is still in development
87
+ $this->setCakephpVersion($rm, 'dev-master');
88
+ $result = $installer->getLocations();
89
+ $this->assertContains('Plugin/', $result['plugin']);
90
+
91
+ $this->setCakephpVersion($rm, '>=2.5');
92
+ $result = $installer->getLocations();
93
+ $this->assertContains('Plugin/', $result['plugin']);
94
+
95
+ // cakephp >= 3.0
96
+ $this->setCakephpVersion($rm, '3.0.*-dev');
97
+ $result = $installer->getLocations();
98
+ $this->assertContains('vendor/{$vendor}/{$name}/', $result['plugin']);
99
+
100
+ $this->setCakephpVersion($rm, '~8.8');
101
+ $result = $installer->getLocations();
102
+ $this->assertContains('vendor/{$vendor}/{$name}/', $result['plugin']);
103
+ }
104
+
105
+ protected function setCakephpVersion($rm, $version) {
106
+ $parser = new VersionParser();
107
+ list(, $version) = explode(' ', $parser->parseConstraints($version));
108
+ $installed = new InstalledArrayRepository();
109
+ $package = new Package('cakephp/cakephp', $version, $version);
110
+ $installed->addPackage($package);
111
+ $rm->setLocalRepository($installed);
112
+ }
113
+
114
+ }
vendor/composer/installers/tests/Composer/Installers/Test/CraftInstallerTest.php ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Composer\Installers\Test;
4
+
5
+ use Composer\Installers\CraftInstaller;
6
+
7
+ /**
8
+ * Tests for the CraftInstaller Class
9
+ *
10
+ * @coversDefaultClass Composer\Installers\CraftInstaller
11
+ */
12
+ class CraftInstallerTest extends TestCase
13
+ {
14
+ /** @var CraftInstaller */
15
+ private $installer;
16
+
17
+ /**
18
+ * Sets up the fixture, for example, instantiate the class-under-test.
19
+ *
20
+ * This method is called before a test is executed.
21
+ */
22
+ final public function setup()
23
+ {
24
+ $this->installer = new CraftInstaller();
25
+ }
26
+
27
+ /**
28
+ * @param string $packageName
29
+ * @param string $expectedName
30
+ *
31
+ * @covers ::inflectPackageVars
32
+ *
33
+ * @dataProvider provideExpectedInflectionResults
34
+ */
35
+ final public function testInflectPackageVars($packageName, $expectedName)
36
+ {
37
+ $installer = $this->installer;
38
+
39
+ $vars = array('name' => $packageName);
40
+ $expected = array('name' => $expectedName);
41
+
42
+ $actual = $installer->inflectPackageVars($vars);
43
+
44
+ $this->assertEquals($actual, $expected);
45
+ }
46
+
47
+ /**
48
+ * Provides various names for packages and the expected result after inflection
49
+ *
50
+ * @return array
51
+ */
52
+ final public function provideExpectedInflectionResults()
53
+ {
54
+ return array(
55
+ // lowercase
56
+ array('foo', 'foo'),
57
+ array('craftfoo', 'craftfoo'),
58
+ array('fooplugin', 'fooplugin'),
59
+ array('craftfooplugin', 'craftfooplugin'),
60
+ // lowercase - dash
61
+ array('craft-foo', 'foo'),
62
+ array('foo-plugin', 'foo'),
63
+ array('craft-foo-plugin', 'foo'),
64
+ // lowercase - underscore
65
+ array('craft_foo', 'craft_foo'),
66
+ array('foo_plugin', 'foo_plugin'),
67
+ array('craft_foo_plugin', 'craft_foo_plugin'),
68
+ // CamelCase
69
+ array('Foo', 'Foo'),
70
+ array('CraftFoo', 'CraftFoo'),
71
+ array('FooPlugin', 'FooPlugin'),
72
+ array('CraftFooPlugin', 'CraftFooPlugin'),
73
+ // CamelCase - Dash
74
+ array('Craft-Foo', 'Foo'),
75
+ array('Foo-Plugin', 'Foo'),
76
+ array('Craft-Foo-Plugin', 'Foo'),
77
+ // CamelCase - underscore
78
+ array('Craft_Foo', 'Craft_Foo'),
79
+ array('Foo_Plugin', 'Foo_Plugin'),
80
+ array('Craft_Foo_Plugin', 'Craft_Foo_Plugin'),
81
+ );
82
+ }
83
+ }
vendor/composer/installers/tests/Composer/Installers/Test/DokuWikiInstallerTest.php ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers\Test;
3
+
4
+ use Composer\Installers\DokuWikiInstaller;
5
+ use Composer\Package\Package;
6
+ use Composer\Composer;
7
+ use PHPUnit\Framework\TestCase as BaseTestCase;
8
+
9
+ class DokuWikiInstallerTest extends BaseTestCase
10
+ {
11
+ /**
12
+ * @var DokuWikiInstaller
13
+ */
14
+ private $installer;
15
+
16
+ public function setUp()
17
+ {
18
+ $this->installer = new DokuWikiInstaller(
19
+ new Package('NyanCat', '4.2', '4.2'),
20
+ new Composer()
21
+ );
22
+ }
23
+
24
+ /**
25
+ * @dataProvider packageNameInflectionProvider
26
+ */
27
+ public function testInflectPackageVars($type, $name, $expected)
28
+ {
29
+ $this->assertEquals(
30
+ $this->installer->inflectPackageVars(array('name' => $name, 'type'=>$type)),
31
+ array('name' => $expected, 'type'=>$type)
32
+ );
33
+ }
34
+
35
+ public function packageNameInflectionProvider()
36
+ {
37
+ return array(
38
+ array(
39
+ 'dokuwiki-plugin',
40
+ 'dokuwiki-test-plugin',
41
+ 'test',
42
+ ),
43
+ array(
44
+ 'dokuwiki-plugin',
45
+ 'test-plugin',
46
+ 'test',
47
+ ),
48
+ array(
49
+ 'dokuwiki-plugin',
50
+ 'dokuwiki_test',
51
+ 'test',
52
+ ),
53
+ array(
54
+ 'dokuwiki-plugin',
55
+ 'test',
56
+ 'test',
57
+ ),
58
+ array(
59
+ 'dokuwiki-plugin',
60
+ 'test-template',
61
+ 'test-template',
62
+ ),
63
+ array(
64
+ 'dokuwiki-template',
65
+ 'dokuwiki-test-template',
66
+ 'test',
67
+ ),
68
+ array(
69
+ 'dokuwiki-template',
70
+ 'test-template',
71
+ 'test',
72
+ ),
73
+ array(
74
+ 'dokuwiki-template',
75
+ 'dokuwiki_test',
76
+ 'test',
77
+ ),
78
+ array(
79
+ 'dokuwiki-template',
80
+ 'test',
81
+ 'test',
82
+ ),
83
+ array(
84
+ 'dokuwiki-template',
85
+ 'test-plugin',
86
+ 'test-plugin',
87
+ ),
88
+ );
89
+ }
90
+ }
vendor/composer/installers/tests/Composer/Installers/Test/GravInstallerTest.php ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers\Test;
3
+
4
+ use Composer\Composer;
5
+ use Composer\Installers\GravInstaller;
6
+
7
+ class GravInstallerTest extends TestCase
8
+ {
9
+ /* @var \Composer\Composer */
10
+ protected $composer;
11
+
12
+ public function setUp()
13
+ {
14
+ $this->composer = new Composer();
15
+ }
16
+
17
+ public function testInflectPackageVars()
18
+ {
19
+ $package = $this->getPackage('vendor/name', '0.0.0');
20
+ $installer = new GravInstaller($package, $this->composer);
21
+ $packageVars = $this->getPackageVars($package);
22
+
23
+ $result = $installer->inflectPackageVars(array_merge($packageVars, array('name' => 'test')));
24
+ $this->assertEquals('test', $result['name']);
25
+
26
+ foreach ($installer->getLocations() as $name => $location) {
27
+ $result = $installer->inflectPackageVars(array_merge($packageVars, array('name' => "$name-test")));
28
+ $this->assertEquals('test', $result['name']);
29
+ $result = $installer->inflectPackageVars(array_merge($packageVars, array('name' => "test-$name")));
30
+ $this->assertEquals('test', $result['name']);
31
+ $result = $installer->inflectPackageVars(array_merge($packageVars, array('name' => "$name-test-test")));
32
+ $this->assertEquals('test-test', $result['name']);
33
+ $result = $installer->inflectPackageVars(array_merge($packageVars, array('name' => "test-test-$name")));
34
+ $this->assertEquals('test-test', $result['name']);
35
+ $result = $installer->inflectPackageVars(array_merge($packageVars, array('name' => "grav-$name-test")));
36
+ $this->assertEquals('test', $result['name']);
37
+ $result = $installer->inflectPackageVars(array_merge($packageVars, array('name' => "grav-test-$name")));
38
+ $this->assertEquals('test', $result['name']);
39
+ $result = $installer->inflectPackageVars(array_merge($packageVars, array('name' => "grav-$name-test-test")));
40
+ $this->assertEquals('test-test', $result['name']);
41
+ $result = $installer->inflectPackageVars(array_merge($packageVars, array('name' => "grav-test-test-$name")));
42
+ $this->assertEquals('test-test', $result['name']);
43
+ }
44
+ }
45
+
46
+ /**
47
+ * @param $package \Composer\Package\PackageInterface
48
+ */
49
+ public function getPackageVars($package)
50
+ {
51
+ $type = $package->getType();
52
+
53
+ $prettyName = $package->getPrettyName();
54
+ if (strpos($prettyName, '/') !== false) {
55
+ list($vendor, $name) = explode('/', $prettyName);
56
+ } else {
57
+ $vendor = '';
58
+ $name = $prettyName;
59
+ }
60
+
61
+ return compact('name', 'vendor', 'type');
62
+ }
63
+ }
vendor/composer/installers/tests/Composer/Installers/Test/InstallerTest.php ADDED
@@ -0,0 +1,552 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers\Test;
3
+
4
+ use Composer\Installers\Installer;
5
+ use Composer\Util\Filesystem;
6
+ use Composer\Package\Package;
7
+ use Composer\Package\RootPackage;
8
+ use Composer\Composer;
9
+ use Composer\Config;
10
+
11
+ class InstallerTest extends TestCase
12
+ {
13
+ private $composer;
14
+ private $config;
15
+ private $vendorDir;
16
+ private $binDir;
17
+ private $dm;
18
+ private $repository;
19
+ private $io;
20
+ private $fs;
21
+
22
+ /**
23
+ * setUp
24
+ *
25
+ * @return void
26
+ */
27
+ public function setUp()
28
+ {
29
+ $this->fs = new Filesystem;
30
+
31
+ $this->composer = new Composer();
32
+ $this->config = new Config();
33
+ $this->composer->setConfig($this->config);
34
+
35
+ $this->vendorDir = realpath(sys_get_temp_dir()) . DIRECTORY_SEPARATOR . 'baton-test-vendor';
36
+ $this->ensureDirectoryExistsAndClear($this->vendorDir);
37
+
38
+ $this->binDir = realpath(sys_get_temp_dir()) . DIRECTORY_SEPARATOR . 'baton-test-bin';
39
+ $this->ensureDirectoryExistsAndClear($this->binDir);
40
+
41
+ $this->config->merge(array(
42
+ 'config' => array(
43
+ 'vendor-dir' => $this->vendorDir,
44
+ 'bin-dir' => $this->binDir,
45
+ ),
46
+ ));
47
+
48
+ $this->dm = $this->getMockBuilder('Composer\Downloader\DownloadManager')
49
+ ->disableOriginalConstructor()
50
+ ->getMock();
51
+ $this->composer->setDownloadManager($this->dm);
52
+
53
+ $this->repository = $this->getMock('Composer\Repository\InstalledRepositoryInterface');
54
+ $this->io = $this->getMock('Composer\IO\IOInterface');
55
+ }
56
+
57
+ /**
58
+ * tearDown
59
+ *
60
+ * @return void
61
+ */
62
+ public function tearDown()
63
+ {
64
+ $this->fs->removeDirectory($this->vendorDir);
65
+ $this->fs->removeDirectory($this->binDir);
66
+ }
67
+
68
+ /**
69
+ * testSupports
70
+ *
71
+ * @return void
72
+ *
73
+ * @dataProvider dataForTestSupport
74
+ */
75
+ public function testSupports($type, $expected)
76
+ {
77
+ $installer = new Installer($this->io, $this->composer);
78
+ $this->assertSame($expected, $installer->supports($type), sprintf('Failed to show support for %s', $type));
79
+ }
80
+
81
+ /**
82
+ * dataForTestSupport
83
+ */
84
+ public function dataForTestSupport()
85
+ {
86
+ return array(
87
+ array('agl-module', true),
88
+ array('aimeos-extension', true),
89
+ array('annotatecms-module', true),
90
+ array('annotatecms-component', true),
91
+ array('annotatecms-service', true),
92
+ array('attogram-module', true),
93
+ array('bitrix-module', true),
94
+ array('bitrix-component', true),
95
+ array('bitrix-theme', true),
96
+ array('bonefish-package', true),
97
+ array('cakephp', false),
98
+ array('cakephp-', false),
99
+ array('cakephp-app', false),
100
+ array('cakephp-plugin', true),
101
+ array('chef-cookbook', true),
102
+ array('chef-role', true),
103
+ array('cockpit-module', true),
104
+ array('codeigniter-app', false),
105
+ array('codeigniter-library', true),
106
+ array('codeigniter-third-party', true),
107
+ array('codeigniter-module', true),
108
+ array('concrete5-block', true),
109
+ array('concrete5-package', true),
110
+ array('concrete5-theme', true),
111
+ array('concrete5-core', true),
112
+ array('concrete5-update', true),
113
+ array('craft-plugin', true),
114
+ array('croogo-plugin', true),
115
+ array('croogo-theme', true),
116
+ array('decibel-app', true),
117
+ array('dokuwiki-plugin', true),
118
+ array('dokuwiki-template', true),
119
+ array('drupal-module', true),
120
+ array('dolibarr-module', true),
121
+ array('ee3-theme', true),
122
+ array('ee3-addon', true),
123
+ array('ee2-theme', true),
124
+ array('ee2-addon', true),
125
+ array('elgg-plugin', true),
126
+ array('eliasis-component', true),
127
+ array('eliasis-module', true),
128
+ array('eliasis-plugin', true),
129
+ array('eliasis-template', true),
130
+ array('ezplatform-assets', true),
131
+ array('ezplatform-meta-assets', true),
132
+ array('fuel-module', true),
133
+ array('fuel-package', true),
134
+ array('fuel-theme', true),
135
+ array('fuelphp-component', true),
136
+ array('hurad-plugin', true),
137
+ array('hurad-theme', true),
138
+ array('imagecms-template', true),
139
+ array('imagecms-module', true),
140
+ array('imagecms-library', true),
141
+ array('itop-extension', true),
142
+ array('joomla-library', true),
143
+ array('kanboard-plugin', true),
144
+ array('kirby-plugin', true),
145
+ array('kohana-module', true),
146
+ array('lms-plugin', true),
147
+ array('lms-template', true),
148
+ array('lms-document-template', true),
149
+ array('lms-userpanel-module', true),
150
+ array('laravel-library', true),
151
+ array('lavalite-theme', true),
152
+ array('lavalite-package', true),
153
+ array('lithium-library', true),
154
+ array('magento-library', true),
155
+ array('majima-plugin', true),
156
+ array('mako-package', true),
157
+ array('modx-extra', true),
158
+ array('modxevo-snippet', true),
159
+ array('modxevo-plugin', true),
160
+ array('modxevo-module', true),
161
+ array('modxevo-template', true),
162
+ array('modxevo-lib', true),
163
+ array('mediawiki-extension', true),
164
+ array('mediawiki-skin', true),
165
+ array('microweber-module', true),
166
+ array('modulework-module', true),
167
+ array('moodle-mod', true),
168
+ array('october-module', true),
169
+ array('october-plugin', true),
170
+ array('piwik-plugin', true),
171
+ array('pxcms-module', true),
172
+ array('pxcms-theme', true),
173
+ array('phpbb-extension', true),
174
+ array('pimcore-plugin', true),
175
+ array('plentymarkets-plugin', true),
176
+ array('ppi-module', true),
177
+ array('prestashop-module', true),
178
+ array('prestashop-theme', true),
179
+ array('puppet-module', true),
180
+ array('porto-container', true),
181
+ array('radphp-bundle', true),
182
+ array('redaxo-addon', true),
183
+ array('redaxo-bestyle-plugin', true),
184
+ array('reindex-theme', true),
185
+ array('reindex-plugin', true),
186
+ array('roundcube-plugin', true),
187
+ array('shopware-backend-plugin', true),
188
+ array('shopware-core-plugin', true),
189
+ array('shopware-frontend-plugin', true),
190
+ array('shopware-theme', true),
191
+ array('shopware-plugin', true),
192
+ array('shopware-frontend-theme', true),
193
+ array('silverstripe-module', true),
194
+ array('silverstripe-theme', true),
195
+ array('smf-module', true),
196
+ array('smf-theme', true),
197
+ array('sydes-module', true),
198
+ array('sydes-theme', true),
199
+ array('symfony1-plugin', true),
200
+ array('thelia-module', true),
201
+ array('thelia-frontoffice-template', true),
202
+ array('thelia-backoffice-template', true),
203
+ array('thelia-email-template', true),
204
+ array('tusk-task', true),
205
+ array('tusk-asset', true),
206
+ array('typo3-flow-plugin', true),
207
+ array('typo3-cms-extension', true),
208
+ array('userfrosting-sprinkle', true),
209
+ array('vanilla-plugin', true),
210
+ array('vanilla-theme', true),
211
+ array('whmcs-gateway', true),
212
+ array('wolfcms-plugin', true),
213
+ array('wordpress-plugin', true),
214
+ array('wordpress-core', false),
215
+ array('yawik-module', true),
216
+ array('zend-library', true),
217
+ array('zikula-module', true),
218
+ array('zikula-theme', true),
219
+ array('kodicms-plugin', true),
220
+ array('kodicms-media', true),
221
+ array('phifty-bundle', true),
222
+ array('phifty-library', true),
223
+ array('phifty-framework', true),
224
+ array('osclass-plugin', true),
225
+ array('osclass-theme', true),
226
+ array('osclass-language', true),
227
+ );
228
+ }
229
+
230
+ /**
231
+ * testInstallPath
232
+ *
233
+ * @dataProvider dataForTestInstallPath
234
+ */
235
+ public function testInstallPath($type, $path, $name, $version = '1.0.0')
236
+ {
237
+ $installer = new Installer($this->io, $this->composer);
238
+ $package = new Package($name, $version, $version);
239
+
240
+ $package->setType($type);
241
+ $result = $installer->getInstallPath($package);
242
+ $this->assertEquals($path, $result);
243
+ }
244
+
245
+ /**
246
+ * dataFormTestInstallPath
247
+ */
248
+ public function dataForTestInstallPath()
249
+ {
250
+ return array(
251
+ array('agl-module', 'More/MyTestPackage/', 'agl/my_test-package'),
252
+ array('aimeos-extension', 'ext/ai-test/', 'author/ai-test'),
253
+ array('annotatecms-module', 'addons/modules/my_module/', 'vysinsky/my_module'),
254
+ array('annotatecms-component', 'addons/components/my_component/', 'vysinsky/my_component'),
255
+ array('annotatecms-service', 'addons/services/my_service/', 'vysinsky/my_service'),
256
+ array('attogram-module', 'modules/my_module/', 'author/my_module'),
257
+ array('bitrix-module', 'bitrix/modules/my_module/', 'author/my_module'),
258
+ array('bitrix-component', 'bitrix/components/my_component/', 'author/my_component'),
259
+ array('bitrix-theme', 'bitrix/templates/my_theme/', 'author/my_theme'),
260
+ array('bitrix-d7-module', 'bitrix/modules/author.my_module/', 'author/my_module'),
261
+ array('bitrix-d7-component', 'bitrix/components/author/my_component/', 'author/my_component'),
262
+ array('bitrix-d7-template', 'bitrix/templates/author_my_template/', 'author/my_template'),
263
+ array('bonefish-package', 'Packages/bonefish/package/', 'bonefish/package'),
264
+ array('cakephp-plugin', 'Plugin/Ftp/', 'shama/ftp'),
265
+ array('chef-cookbook', 'Chef/mre/my_cookbook/', 'mre/my_cookbook'),
266
+ array('chef-role', 'Chef/roles/my_role/', 'mre/my_role'),
267
+ array('cockpit-module', 'cockpit/modules/addons/My_module/', 'piotr-cz/cockpit-my_module'),
268
+ array('codeigniter-library', 'application/libraries/my_package/', 'shama/my_package'),
269
+ array('codeigniter-module', 'application/modules/my_package/', 'shama/my_package'),
270
+ array('concrete5-block', 'application/blocks/concrete5_block/', 'remo/concrete5_block'),
271
+ array('concrete5-package', 'packages/concrete5_package/', 'remo/concrete5_package'),
272
+ array('concrete5-theme', 'application/themes/concrete5_theme/', 'remo/concrete5_theme'),
273
+ array('concrete5-core', 'concrete/', 'concrete5/core'),
274
+ array('concrete5-update', 'updates/concrete5/', 'concrete5/concrete5'),
275
+ array('craft-plugin', 'craft/plugins/my_plugin/', 'mdcpepper/my_plugin'),
276
+ array('croogo-plugin', 'Plugin/Sitemaps/', 'fahad19/sitemaps'),
277
+ array('croogo-theme', 'View/Themed/Readable/', 'rchavik/readable'),
278
+ array('decibel-app', 'app/someapp/', 'author/someapp'),
279
+ array('dokuwiki-plugin', 'lib/plugins/someplugin/', 'author/someplugin'),
280
+ array('dokuwiki-template', 'lib/tpl/sometemplate/', 'author/sometemplate'),
281
+ array('dolibarr-module', 'htdocs/custom/my_module/', 'shama/my_module'),
282
+ array('drupal-module', 'modules/my_module/', 'shama/my_module'),
283
+ array('drupal-theme', 'themes/my_module/', 'shama/my_module'),
284
+ array('drupal-profile', 'profiles/my_module/', 'shama/my_module'),
285
+ array('drupal-drush', 'drush/my_module/', 'shama/my_module'),
286
+ array('elgg-plugin', 'mod/sample_plugin/', 'test/sample_plugin'),
287
+ array('eliasis-component', 'components/my_component/', 'shama/my_component'),
288
+ array('eliasis-module', 'modules/my_module/', 'shama/my_module'),
289
+ array('eliasis-plugin', 'plugins/my_plugin/', 'shama/my_plugin'),
290
+ array('eliasis-template', 'templates/my_template/', 'shama/my_template'),
291
+ array('ee3-addon', 'system/user/addons/ee_theme/', 'author/ee_theme'),
292
+ array('ee3-theme', 'themes/user/ee_package/', 'author/ee_package'),
293
+ array('ee2-addon', 'system/expressionengine/third_party/ee_theme/', 'author/ee_theme'),
294
+ array('ee2-theme', 'themes/third_party/ee_package/', 'author/ee_package'),
295
+ array('ezplatform-assets', 'web/assets/ezplatform/ezplatform_comp/', 'author/ezplatform_comp'),
296
+ array('ezplatform-meta-assets', 'web/assets/ezplatform/', 'author/ezplatform_comp'),
297
+ array('fuel-module', 'fuel/app/modules/module/', 'fuel/module'),
298
+ array('fuel-package', 'fuel/packages/orm/', 'fuel/orm'),
299
+ array('fuel-theme', 'fuel/app/themes/theme/', 'fuel/theme'),
300
+ array('fuelphp-component', 'components/demo/', 'fuelphp/demo'),
301
+ array('hurad-plugin', 'plugins/Akismet/', 'atkrad/akismet'),
302
+ array('hurad-theme', 'plugins/Hurad2013/', 'atkrad/Hurad2013'),
303
+ array('imagecms-template', 'templates/my_template/', 'shama/my_template'),
304
+ array('imagecms-module', 'application/modules/my_module/', 'shama/my_module'),
305
+ array('imagecms-library', 'application/libraries/my_library/', 'shama/my_library'),
306
+ array('itop-extension', 'extensions/my_extension/', 'shama/my_extension'),
307
+ array('joomla-plugin', 'plugins/my_plugin/', 'shama/my_plugin'),
308
+ array('kanboard-plugin', 'plugins/my_plugin/', 'shama/my_plugin'),
309
+ array('kirby-plugin', 'site/plugins/my_plugin/', 'shama/my_plugin'),
310
+ array('kohana-module', 'modules/my_package/', 'shama/my_package'),
311
+ array('lms-plugin', 'plugins/MyPackage/', 'shama/MyPackage'),
312
+ array('lms-plugin', 'plugins/MyPackage/', 'shama/my_package'),
313
+ array('lms-template', 'templates/MyPackage/', 'shama/MyPackage'),
314
+ array('lms-template', 'templates/MyPackage/', 'shama/my_package'),
315
+ array('lms-document-template', 'documents/templates/MyPackage/', 'shama/MyPackage'),
316
+ array('lms-document-template', 'documents/templates/MyPackage/', 'shama/my_package'),
317
+ array('lms-userpanel-module', 'userpanel/modules/MyPackage/', 'shama/MyPackage'),
318
+ array('lms-userpanel-module', 'userpanel/modules/MyPackage/', 'shama/my_package'),
319
+ array('laravel-library', 'libraries/my_package/', 'shama/my_package'),
320
+ array('lavalite-theme', 'public/themes/my_theme/', 'shama/my_theme'),
321
+ array('lavalite-package', 'packages/my_group/my_package/', 'my_group/my_package'),
322
+ array('lithium-library', 'libraries/li3_test/', 'user/li3_test'),
323
+ array('magento-library', 'lib/foo/', 'test/foo'),
324
+ array('majima-plugin', 'plugins/MyPlugin/', 'shama/my-plugin'),
325
+ array('modx-extra', 'core/packages/extra/', 'vendor/extra'),
326
+ array('modxevo-snippet', 'assets/snippets/my_snippet/', 'shama/my_snippet'),
327
+ array('modxevo-plugin', 'assets/plugins/my_plugin/', 'shama/my_plugin'),
328
+ array('modxevo-module', 'assets/modules/my_module/', 'shama/my_module'),
329
+ array('modxevo-template', 'assets/templates/my_template/', 'shama/my_template'),
330
+ array('modxevo-lib', 'assets/lib/my_lib/', 'shama/my_lib'),
331
+ array('mako-package', 'app/packages/my_package/', 'shama/my_package'),
332
+ array('mediawiki-extension', 'extensions/APC/', 'author/APC'),
333
+ array('mediawiki-extension', 'extensions/APC/', 'author/APC-extension'),
334
+ array('mediawiki-extension', 'extensions/UploadWizard/', 'author/upload-wizard'),
335
+ array('mediawiki-extension', 'extensions/SyntaxHighlight_GeSHi/', 'author/syntax-highlight_GeSHi'),
336
+ array('mediawiki-skin', 'skins/someskin/', 'author/someskin-skin'),
337
+ array('mediawiki-skin', 'skins/someskin/', 'author/someskin'),
338
+ array('microweber-module', 'userfiles/modules/my-thing/', 'author/my-thing-module'),
339
+ array('modulework-module', 'modules/my_package/', 'shama/my_package'),
340
+ array('moodle-mod', 'mod/my_package/', 'shama/my_package'),
341
+ array('october-module', 'modules/my_plugin/', 'shama/my_plugin'),
342
+ array('october-plugin', 'plugins/shama/my_plugin/', 'shama/my_plugin'),
343
+ array('october-theme', 'themes/my_theme/', 'shama/my_theme'),
344
+ array('piwik-plugin', 'plugins/VisitSummary/', 'shama/visit-summary'),
345
+ array('prestashop-module', 'modules/a-module/', 'vendor/a-module'),
346
+ array('prestashop-theme', 'themes/a-theme/', 'vendor/a-theme'),
347
+ array('pxcms-module', 'app/Modules/Foo/', 'vendor/module-foo'),
348
+ array('pxcms-module', 'app/Modules/Foo/', 'vendor/pxcms-foo'),
349
+ array('pxcms-theme', 'themes/Foo/', 'vendor/theme-foo'),
350
+ array('pxcms-theme', 'themes/Foo/', 'vendor/pxcms-foo'),
351
+ array('phpbb-extension', 'ext/test/foo/', 'test/foo'),
352
+ array('phpbb-style', 'styles/foo/', 'test/foo'),
353
+ array('phpbb-language', 'language/foo/', 'test/foo'),
354
+ array('pimcore-plugin', 'plugins/MyPlugin/', 'ubikz/my_plugin'),
355
+ array('plentymarkets-plugin', 'HelloWorld/', 'plugin-hello-world'),
356
+ array('ppi-module', 'modules/foo/', 'test/foo'),
357
+ array('puppet-module', 'modules/puppet-name/', 'puppet/puppet-name'),
358
+ array('porto-container', 'app/Containers/container-name/', 'test/container-name'),
359
+ array('radphp-bundle', 'src/Migration/', 'atkrad/migration'),
360
+ array('redaxo-addon', 'redaxo/include/addons/my_plugin/', 'shama/my_plugin'),
361
+ array('redaxo-bestyle-plugin', 'redaxo/include/addons/be_style/plugins/my_plugin/', 'shama/my_plugin'),
362
+ array('reindex-theme', 'themes/my_module/', 'author/my_module'),
363
+ array('reindex-plugin', 'plugins/my_module/', 'author/my_module'),
364
+ array('roundcube-plugin', 'plugins/base/', 'test/base'),
365
+ array('roundcube-plugin', 'plugins/replace_dash/', 'test/replace-dash'),
366
+ array('shopware-backend-plugin', 'engine/Shopware/Plugins/Local/Backend/ShamaMyBackendPlugin/', 'shama/my-backend-plugin'),
367
+ array('shopware-core-plugin', 'engine/Shopware/Plugins/Local/Core/ShamaMyCorePlugin/', 'shama/my-core-plugin'),
368
+ array('shopware-frontend-plugin', 'engine/Shopware/Plugins/Local/Frontend/ShamaMyFrontendPlugin/', 'shama/my-frontend-plugin'),
369
+ array('shopware-theme', 'templates/my_theme/', 'shama/my-theme'),
370
+ array('shopware-frontend-theme', 'themes/Frontend/ShamaMyFrontendTheme/', 'shama/my-frontend-theme'),
371
+ array('shopware-plugin', 'custom/plugins/ShamaMyPlugin/', 'shama/my-plugin'),
372
+ array('silverstripe-module', 'my_module/', 'shama/my_module'),
373
+ array('silverstripe-module', 'sapphire/', 'silverstripe/framework', '2.4.0'),
374
+ array('silverstripe-module', 'framework/', 'silverstripe/framework', '3.0.0'),
375
+ array('silverstripe-module', 'framework/', 'silverstripe/framework', '3.0.0-rc1'),
376
+ array('silverstripe-module', 'framework/', 'silverstripe/framework', 'my/branch'),
377
+ array('silverstripe-theme', 'themes/my_theme/', 'shama/my_theme'),
378
+ array('smf-module', 'Sources/my_module/', 'shama/my_module'),
379
+ array('smf-theme', 'Themes/my_theme/', 'shama/my_theme'),
380
+ array('symfony1-plugin', 'plugins/sfShamaPlugin/', 'shama/sfShamaPlugin'),
381
+ array('symfony1-plugin', 'plugins/sfShamaPlugin/', 'shama/sf-shama-plugin'),
382
+ array('thelia-module', 'local/modules/my_module/', 'shama/my_module'),
383
+ array('thelia-frontoffice-template', 'templates/frontOffice/my_template_fo/', 'shama/my_template_fo'),
384
+ array('thelia-backoffice-template', 'templates/backOffice/my_template_bo/', 'shama/my_template_bo'),
385
+ array('thelia-email-template', 'templates/email/my_template_email/', 'shama/my_template_email'),
386
+ array('tusk-task', '.tusk/tasks/my_task/', 'shama/my_task'),
387
+ array('typo3-flow-package', 'Packages/Application/my_package/', 'shama/my_package'),
388
+ array('typo3-flow-build', 'Build/my_package/', 'shama/my_package'),
389
+ array('typo3-cms-extension', 'typo3conf/ext/my_extension/', 'shama/my_extension'),
390
+ array('userfrosting-sprinkle', 'app/sprinkles/my_sprinkle/', 'shama/my_sprinkle'),
391
+ array('vanilla-plugin', 'plugins/my_plugin/', 'shama/my_plugin'),
392
+ array('vanilla-theme', 'themes/my_theme/', 'shama/my_theme'),
393
+ array('whmcs-gateway', 'modules/gateways/gateway_name/', 'vendor/gateway_name'),
394
+ array('wolfcms-plugin', 'wolf/plugins/my_plugin/', 'shama/my_plugin'),
395
+ array('wordpress-plugin', 'wp-content/plugins/my_plugin/', 'shama/my_plugin'),
396
+ array('wordpress-muplugin', 'wp-content/mu-plugins/my_plugin/', 'shama/my_plugin'),
397
+ array('zend-extra', 'extras/library/zend_test/', 'shama/zend_test'),
398
+ array('zikula-module', 'modules/my-test_module/', 'my/test_module'),
399
+ array('zikula-theme', 'themes/my-test_theme/', 'my/test_theme'),
400
+ array('kodicms-media', 'cms/media/vendor/my_media/', 'shama/my_media'),
401
+ array('kodicms-plugin', 'cms/plugins/my_plugin/', 'shama/my_plugin'),
402
+ array('phifty-bundle', 'bundles/core/', 'shama/core'),
403
+ array('phifty-library', 'libraries/my-lib/', 'shama/my-lib'),
404
+ array('phifty-framework', 'frameworks/my-framework/', 'shama/my-framework'),
405
+ array('yawik-module', 'module/MyModule/', 'shama/my_module'),
406
+ array('osclass-plugin', 'oc-content/plugins/sample_plugin/', 'test/sample_plugin'),
407
+ array('osclass-theme', 'oc-content/themes/sample_theme/', 'test/sample_theme'),
408
+ array('osclass-language', 'oc-content/languages/sample_lang/', 'test/sample_lang'),
409
+ );
410
+ }
411
+
412
+ /**
413
+ * testGetCakePHPInstallPathException
414
+ *
415
+ * @return void
416
+ *
417
+ * @expectedException \InvalidArgumentException
418
+ */
419
+ public function testGetCakePHPInstallPathException()
420
+ {
421
+ $installer = new Installer($this->io, $this->composer);
422
+ $package = new Package('shama/ftp', '1.0.0', '1.0.0');
423
+
424
+ $package->setType('cakephp-whoops');
425
+ $result = $installer->getInstallPath($package);
426
+ }
427
+
428
+ /**
429
+ * testCustomInstallPath
430
+ */
431
+ public function testCustomInstallPath()
432
+ {
433
+ $installer = new Installer($this->io, $this->composer);
434
+ $package = new Package('shama/ftp', '1.0.0', '1.0.0');
435
+ $package->setType('cakephp-plugin');
436
+ $consumerPackage = new RootPackage('foo/bar', '1.0.0', '1.0.0');
437
+ $this->composer->setPackage($consumerPackage);
438
+ $consumerPackage->setExtra(array(
439
+ 'installer-paths' => array(
440
+ 'my/custom/path/{$name}/' => array(
441
+ 'shama/ftp',
442
+ 'foo/bar',
443
+ ),
444
+ ),
445
+ ));
446
+ $result = $installer->getInstallPath($package);
447
+ $this->assertEquals('my/custom/path/Ftp/', $result);
448
+ }
449
+
450
+ /**
451
+ * testCustomInstallerName
452
+ */
453
+ public function testCustomInstallerName()
454
+ {
455
+ $installer = new Installer($this->io, $this->composer);
456
+ $package = new Package('shama/cakephp-ftp-plugin', '1.0.0', '1.0.0');
457
+ $package->setType('cakephp-plugin');
458
+ $package->setExtra(array(
459
+ 'installer-name' => 'FTP',
460
+ ));
461
+ $result = $installer->getInstallPath($package);
462
+ $this->assertEquals('Plugin/FTP/', $result);
463
+ }
464
+
465
+ /**
466
+ * testCustomTypePath
467
+ */
468
+ public function testCustomTypePath()
469
+ {
470
+ $installer = new Installer($this->io, $this->composer);
471
+ $package = new Package('slbmeh/my_plugin', '1.0.0', '1.0.0');
472
+ $package->setType('wordpress-plugin');
473
+ $consumerPackage = new RootPackage('foo/bar', '1.0.0', '1.0.0');
474
+ $this->composer->setPackage($consumerPackage);
475
+ $consumerPackage->setExtra(array(
476
+ 'installer-paths' => array(
477
+ 'my/custom/path/{$name}/' => array(
478
+ 'type:wordpress-plugin'
479
+ ),
480
+ ),
481
+ ));
482
+ $result = $installer->getInstallPath($package);
483
+ $this->assertEquals('my/custom/path/my_plugin/', $result);
484
+ }
485
+
486
+ /**
487
+ * testVendorPath
488
+ */
489
+ public function testVendorPath()
490
+ {
491
+ $installer = new Installer($this->io, $this->composer);
492
+ $package = new Package('penyaskito/my_module', '1.0.0', '1.0.0');
493
+ $package->setType('drupal-module');
494
+ $consumerPackage = new RootPackage('drupal/drupal', '1.0.0', '1.0.0');
495
+ $this->composer->setPackage($consumerPackage);
496
+ $consumerPackage->setExtra(array(
497
+ 'installer-paths' => array(
498
+ 'modules/custom/{$name}/' => array(
499
+ 'vendor:penyaskito'
500
+ ),
501
+ ),
502
+ ));
503
+ $result = $installer->getInstallPath($package);
504
+ $this->assertEquals('modules/custom/my_module/', $result);
505
+ }
506
+
507
+ /**
508
+ * testNoVendorName
509
+ */
510
+ public function testNoVendorName()
511
+ {
512
+ $installer = new Installer($this->io, $this->composer);
513
+ $package = new Package('sfPhpunitPlugin', '1.0.0', '1.0.0');
514
+
515
+ $package->setType('symfony1-plugin');
516
+ $result = $installer->getInstallPath($package);
517
+ $this->assertEquals('plugins/sfPhpunitPlugin/', $result);
518
+ }
519
+
520
+ /**
521
+ * testTypo3Inflection
522
+ */
523
+ public function testTypo3Inflection()
524
+ {
525
+ $installer = new Installer($this->io, $this->composer);
526
+ $package = new Package('typo3/fluid', '1.0.0', '1.0.0');
527
+
528
+ $package->setAutoload(array(
529
+ 'psr-0' => array(
530
+ 'TYPO3\\Fluid' => 'Classes',
531
+ ),
532
+ ));
533
+
534
+ $package->setType('typo3-flow-package');
535
+ $result = $installer->getInstallPath($package);
536
+ $this->assertEquals('Packages/Application/TYPO3.Fluid/', $result);
537
+ }
538
+
539
+ public function testUninstallAndDeletePackageFromLocalRepo()
540
+ {
541
+ $package = new Package('foo', '1.0.0', '1.0.0');
542
+
543
+ $installer = $this->getMock('Composer\Installers\Installer', array('getInstallPath'), array($this->io, $this->composer));
544
+ $installer->expects($this->atLeastOnce())->method('getInstallPath')->with($package)->will($this->returnValue(sys_get_temp_dir().'/foo'));
545
+
546
+ $repo = $this->getMock('Composer\Repository\InstalledRepositoryInterface');
547
+ $repo->expects($this->once())->method('hasPackage')->with($package)->will($this->returnValue(true));
548
+ $repo->expects($this->once())->method('removePackage')->with($package);
549
+
550
+ $installer->uninstall($repo, $package);
551
+ }
552
+ }
vendor/composer/installers/tests/Composer/Installers/Test/MayaInstallerTest.php ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers\Test;
3
+
4
+ use Composer\Installers\MayaInstaller;
5
+ use Composer\Package\Package;
6
+ use Composer\Composer;
7
+ use PHPUnit\Framework\TestCase as BaseTestCase;
8
+
9
+ class MayaInstallerTest extends BaseTestCase
10
+ {
11
+ /**
12
+ * @var MayaInstaller
13
+ */
14
+ private $installer;
15
+
16
+ public function setUp()
17
+ {
18
+ $this->installer = new MayaInstaller(
19
+ new Package('NyanCat', '4.2', '4.2'),
20
+ new Composer()
21
+ );
22
+ }
23
+
24
+ /**
25
+ * @dataProvider packageNameInflectionProvider
26
+ */
27
+ public function testInflectPackageVars($type, $name, $expected)
28
+ {
29
+ $this->assertEquals(
30
+ array('name' => $expected, 'type' => $type),
31
+ $this->installer->inflectPackageVars(array('name' => $name, 'type' => $type))
32
+ );
33
+ }
34
+
35
+ public function packageNameInflectionProvider()
36
+ {
37
+ return array(
38
+ // Should keep module name StudlyCase
39
+ array(
40
+ 'maya-module',
41
+ 'user-profile',
42
+ 'UserProfile'
43
+ ),
44
+ array(
45
+ 'maya-module',
46
+ 'maya-module',
47
+ 'Maya'
48
+ ),
49
+ array(
50
+ 'maya-module',
51
+ 'blog',
52
+ 'Blog'
53
+ ),
54
+ // tests that exactly one '-module' is cut off
55
+ array(
56
+ 'maya-module',
57
+ 'some-module-module',
58
+ 'SomeModule',
59
+ ),
60
+ );
61
+ }
62
+ }
vendor/composer/installers/tests/Composer/Installers/Test/MediaWikiInstallerTest.php ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers\Test;
3
+
4
+ use Composer\Installers\MediaWikiInstaller;
5
+ use Composer\Package\Package;
6
+ use Composer\Composer;
7
+ use PHPUnit\Framework\TestCase as BaseTestCase;
8
+
9
+ class MediaWikiInstallerTest extends BaseTestCase
10
+ {
11
+ /**
12
+ * @var MediaWikiInstaller
13
+ */
14
+ private $installer;
15
+
16
+ public function setUp()
17
+ {
18
+ $this->installer = new MediaWikiInstaller(
19
+ new Package('NyanCat', '4.2', '4.2'),
20
+ new Composer()
21
+ );
22
+ }
23
+
24
+ /**
25
+ * @dataProvider packageNameInflectionProvider
26
+ */
27
+ public function testInflectPackageVars($type, $name, $expected)
28
+ {
29
+ $this->assertEquals(
30
+ $this->installer->inflectPackageVars(array('name' => $name, 'type'=>$type)),
31
+ array('name' => $expected, 'type'=>$type)
32
+ );
33
+ }
34
+
35
+ public function packageNameInflectionProvider()
36
+ {
37
+ return array(
38
+ array(
39
+ 'mediawiki-extension',
40
+ 'sub-page-list',
41
+ 'SubPageList',
42
+ ),
43
+ array(
44
+ 'mediawiki-extension',
45
+ 'sub-page-list-extension',
46
+ 'SubPageList',
47
+ ),
48
+ array(
49
+ 'mediawiki-extension',
50
+ 'semantic-mediawiki',
51
+ 'SemanticMediawiki',
52
+ ),
53
+ // tests that exactly one '-skin' is cut off, and that skins do not get ucwords treatment like extensions
54
+ array(
55
+ 'mediawiki-skin',
56
+ 'some-skin-skin',
57
+ 'some-skin',
58
+ ),
59
+ // tests that names without '-skin' suffix stay valid
60
+ array(
61
+ 'mediawiki-skin',
62
+ 'someotherskin',
63
+ 'someotherskin',
64
+ ),
65
+ );
66
+ }
67
+ }
vendor/composer/installers/tests/Composer/Installers/Test/OctoberInstallerTest.php ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers\Test;
3
+
4
+ use Composer\Installers\OctoberInstaller;
5
+ use Composer\Package\Package;
6
+ use Composer\Composer;
7
+ use PHPUnit\Framework\TestCase as BaseTestCase;
8
+
9
+ class OctoberInstallerTest extends BaseTestCase
10
+ {
11
+ /**
12
+ * @var OctoberInstaller
13
+ */
14
+ private $installer;
15
+
16
+ public function setUp()
17
+ {
18
+ $this->installer = new OctoberInstaller(
19
+ new Package('NyanCat', '4.2', '4.2'),
20
+ new Composer()
21
+ );
22
+ }
23
+
24
+ /**
25
+ * @dataProvider packageNameInflectionProvider
26
+ */
27
+ public function testInflectPackageVars($type, $name, $expected)
28
+ {
29
+ $this->assertEquals(
30
+ $this->installer->inflectPackageVars(array('name' => $name, 'type' => $type)),
31
+ array('name' => $expected, 'type' => $type)
32
+ );
33
+ }
34
+
35
+ public function packageNameInflectionProvider()
36
+ {
37
+ return array(
38
+ array(
39
+ 'october-plugin',
40
+ 'subpagelist',
41
+ 'subpagelist',
42
+ ),
43
+ array(
44
+ 'october-plugin',
45
+ 'subpagelist-plugin',
46
+ 'subpagelist',
47
+ ),
48
+ array(
49
+ 'october-plugin',
50
+ 'semanticoctober',
51
+ 'semanticoctober',
52
+ ),
53
+ // tests that exactly one '-theme' is cut off
54
+ array(
55
+ 'october-theme',
56
+ 'some-theme-theme',
57
+ 'some-theme',
58
+ ),
59
+ // tests that names without '-theme' suffix stay valid
60
+ array(
61
+ 'october-theme',
62
+ 'someothertheme',
63
+ 'someothertheme',
64
+ ),
65
+ );
66
+ }
67
+ }
vendor/composer/installers/tests/Composer/Installers/Test/OntoWikiInstallerTest.php ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers\Test;
3
+
4
+ use Composer\Installers\OntoWikiInstaller;
5
+ use PHPUnit\Framework\TestCase as BaseTestCase;
6
+
7
+ /**
8
+ * Test for the OntoWikiInstaller
9
+ * code was taken from DokuWikiInstaller
10
+ */
11
+ class OntoWikiInstallerTest extends BaseTestCase
12
+ {
13
+ /**
14
+ * @var OntoWikiInstaller
15
+ */
16
+ private $installer;
17
+
18
+ public function setUp()
19
+ {
20
+ $this->installer = new OntoWikiInstaller();
21
+ }
22
+
23
+ /**
24
+ * @dataProvider packageNameInflectionProvider
25
+ */
26
+ public function testInflectPackageVars($type, $name, $expected)
27
+ {
28
+ $this->assertEquals(
29
+ $this->installer->inflectPackageVars(array('name' => $name, 'type'=>$type)),
30
+ array('name' => $expected, 'type'=>$type)
31
+ );
32
+ }
33
+
34
+ public function packageNameInflectionProvider()
35
+ {
36
+ return array(
37
+ array(
38
+ 'ontowiki-extension',
39
+ 'CSVImport.ontowiki',
40
+ 'csvimport',
41
+ ),
42
+ array(
43
+ 'ontowiki-extension',
44
+ 'csvimport',
45
+ 'csvimport',
46
+ ),
47
+ array(
48
+ 'ontowiki-extension',
49
+ 'some_ontowiki_extension',
50
+ 'some_ontowiki_extension',
51
+ ),
52
+ array(
53
+ 'ontowiki-extension',
54
+ 'some_ontowiki_extension.ontowiki',
55
+ 'some_ontowiki_extension',
56
+ ),
57
+ array(
58
+ 'ontowiki-translation',
59
+ 'de-translation.ontowiki',
60
+ 'de',
61
+ ),
62
+ array(
63
+ 'ontowiki-translation',
64
+ 'en-US-translation.ontowiki',
65
+ 'en-us',
66
+ ),
67
+ array(
68
+ 'ontowiki-translation',
69
+ 'en-US-translation',
70
+ 'en-us',
71
+ ),
72
+ array(
73
+ 'ontowiki-theme',
74
+ 'blue-theme.ontowiki',
75
+ 'blue',
76
+ ),
77
+ array(
78
+ 'ontowiki-theme',
79
+ 'blue-theme',
80
+ 'blue',
81
+ ),
82
+ );
83
+ }
84
+ }
vendor/composer/installers/tests/Composer/Installers/Test/PimcoreInstallerTest.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers\Test;
3
+
4
+ use Composer\Installers\PimcoreInstaller;
5
+ use Composer\Package\Package;
6
+ use Composer\Composer;
7
+
8
+ class PimcoreInstallerTest extends TestCase
9
+ {
10
+ private $composer;
11
+ private $io;
12
+
13
+ /**
14
+ * setUp
15
+ *
16
+ * @return void
17
+ */
18
+ public function setUp()
19
+ {
20
+ $this->package = new Package('CamelCased', '1.0', '1.0');
21
+ $this->io = $this->getMock('Composer\IO\PackageInterface');
22
+ $this->composer = new Composer();
23
+ }
24
+
25
+ /**
26
+ * testInflectPackageVars
27
+ *
28
+ * @return void
29
+ */
30
+ public function testInflectPackageVars()
31
+ {
32
+ $installer = new PimcoreInstaller($this->package, $this->composer);
33
+ $result = $installer->inflectPackageVars(array('name' => 'CamelCased'));
34
+ $this->assertEquals($result, array('name' => 'CamelCased'));
35
+
36
+ $installer = new PimcoreInstaller($this->package, $this->composer);
37
+ $result = $installer->inflectPackageVars(array('name' => 'with-dash'));
38
+ $this->assertEquals($result, array('name' => 'WithDash'));
39
+
40
+ $installer = new PimcoreInstaller($this->package, $this->composer);
41
+ $result = $installer->inflectPackageVars(array('name' => 'with_underscore'));
42
+ $this->assertEquals($result, array('name' => 'WithUnderscore'));
43
+ }
44
+ }
vendor/composer/installers/tests/Composer/Installers/Test/PiwikInstallerTest.php ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers\Test;
3
+
4
+ use Composer\Composer;
5
+ use Composer\Installers\PiwikInstaller;
6
+ use Composer\Package\Package;
7
+ use Composer\Package\PackageInterface;
8
+
9
+ /**
10
+ * Class PiwikInstallerTest
11
+ *
12
+ * @package Composer\Installers\Test
13
+ */
14
+ class PiwikInstallerTest extends TestCase
15
+ {
16
+ /**
17
+ * @varComposer
18
+ */
19
+ private $composer;
20
+
21
+ /**
22
+ * @var PackageInterface
23
+ */
24
+ private $io;
25
+
26
+ /**
27
+ * @var Package
28
+ */
29
+ private $package;
30
+
31
+ /**
32
+ * setUp
33
+ *
34
+ * @return void
35
+ */
36
+ public function setUp()
37
+ {
38
+ $this->package = new Package('VisitSummary', '1.0', '1.0');
39
+ $this->io = $this->getMock('Composer\IO\PackageInterface');
40
+ $this->composer = new Composer();
41
+ }
42
+
43
+ /**
44
+ * testInflectPackageVars
45
+ *
46
+ * @return void
47
+ */
48
+ public function testInflectPackageVars()
49
+ {
50
+ $installer = new PiwikInstaller($this->package, $this->composer);
51
+ $result = $installer->inflectPackageVars(array('name' => 'VisitSummary'));
52
+ $this->assertEquals($result, array('name' => 'VisitSummary'));
53
+
54
+ $installer = new PiwikInstaller($this->package, $this->composer);
55
+ $result = $installer->inflectPackageVars(array('name' => 'visit-summary'));
56
+ $this->assertEquals($result, array('name' => 'VisitSummary'));
57
+
58
+ $installer = new PiwikInstaller($this->package, $this->composer);
59
+ $result = $installer->inflectPackageVars(array('name' => 'visit_summary'));
60
+ $this->assertEquals($result, array('name' => 'VisitSummary'));
61
+ }
62
+
63
+ }
vendor/composer/installers/tests/Composer/Installers/Test/SiteDirectInstallerTest.php ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Composer\Installers\Test;
4
+
5
+ use Composer\Composer;
6
+ use Composer\Installers\SiteDirectInstaller;
7
+ use Composer\Package\Package;
8
+
9
+ class SiteDirectInstallerTest extends TestCase
10
+ {
11
+ /** @var SiteDirectInstaller $installer */
12
+ protected $installer;
13
+
14
+ /** @var Package */
15
+ private $package;
16
+
17
+ public function SetUp()
18
+ {
19
+ $this->package = new Package('sitedirect/some_name', '1.0.9', '1.0');
20
+ $this->installer = new SiteDirectInstaller(
21
+ $this->package,
22
+ new Composer()
23
+ );
24
+
25
+ }
26
+
27
+ /**
28
+ * @dataProvider dataProvider
29
+ */
30
+ public function testInflectPackageVars($data, $expected)
31
+ {
32
+ $result = $this->installer->inflectPackageVars($data);
33
+ $this->assertEquals($result, $expected);
34
+ }
35
+
36
+ /**
37
+ * @dataProvider dataProvider
38
+ */
39
+ public function testInstallPath($data, $expected)
40
+ {
41
+ $result = $this->installer->inflectPackageVars($data);
42
+ $path = $this->createPackage($data);
43
+
44
+ // use $result to get the proper capitalization for the vendor path
45
+ $expectedPath = "modules/{$result['vendor']}/{$result['name']}/";
46
+ $notExpectedPath = "modules/{$data['vendor']}/{$data['name']}/";
47
+ $this->assertEquals($expectedPath, $path);
48
+ $this->assertNotEquals($notExpectedPath, $path);
49
+ }
50
+
51
+ /**
52
+ * @param $data
53
+ * @return string
54
+ */
55
+ private function createPackage($data)
56
+ {
57
+ $fullName = "{$data['vendor']}/{$data['name']}";
58
+
59
+ $package = new Package($fullName, '1.0', '1.0');
60
+ $package->setType('sitedirect-module');
61
+ $installer = new SiteDirectInstaller($package, new Composer());
62
+
63
+ $path = $installer->getInstallPath($package, 'sitedirect');
64
+ return $path;
65
+ }
66
+
67
+ public function dataProvider()
68
+ {
69
+ return array(
70
+ array(
71
+ 'data' => array(
72
+ 'name' => 'kernel',
73
+ 'vendor' => 'sitedirect',
74
+ 'type' => 'sitedirect-module',
75
+ ),
76
+ 'expected' => array(
77
+ 'name' => 'Kernel',
78
+ 'vendor' => 'SiteDirect',
79
+ 'type' => 'sitedirect-module',
80
+ )
81
+ ),
82
+ array(
83
+ 'data' => array(
84
+ 'name' => 'that_guy',
85
+ 'vendor' => 'whatGuy',
86
+ 'type' => 'sitedirect-module',
87
+ ),
88
+ 'expected' => array(
89
+ 'name' => 'ThatGuy',
90
+ 'vendor' => 'whatGuy',
91
+ 'type' => 'sitedirect-module',
92
+ )
93
+ ),
94
+ array(
95
+ 'data' => array(
96
+ 'name' => 'checkout',
97
+ 'vendor' => 'someVendor',
98
+ 'type' => 'sitedirect-plugin',
99
+ ),
100
+ 'expected' => array(
101
+ 'name' => 'Checkout',
102
+ 'vendor' => 'someVendor',
103
+ 'type' => 'sitedirect-plugin',
104
+ )
105
+ ),
106
+ array(
107
+ 'data' => array(
108
+ 'name' => 'checkout',
109
+ 'vendor' => 'siteDirect',
110
+ 'type' => 'sitedirect-plugin',
111
+ ),
112
+ 'expected' => array(
113
+ 'name' => 'Checkout',
114
+ 'vendor' => 'SiteDirect',
115
+ 'type' => 'sitedirect-plugin',
116
+ )
117
+ ),
118
+ );
119
+ }
120
+ }
vendor/composer/installers/tests/Composer/Installers/Test/SyDESInstallerTest.php ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers\Test;
3
+
4
+ use Composer\Installers\SyDESInstaller;
5
+ use Composer\Package\Package;
6
+ use Composer\Composer;
7
+ use PHPUnit\Framework\TestCase as BaseTestCase;
8
+
9
+ class SyDESInstallerTest extends BaseTestCase
10
+ {
11
+ /**
12
+ * @var SyDESInstaller
13
+ */
14
+ private $installer;
15
+
16
+ public function setUp()
17
+ {
18
+ $this->installer = new SyDESInstaller(
19
+ new Package('NyanCat', '4.2', '4.2'),
20
+ new Composer()
21
+ );
22
+ }
23
+
24
+ /**
25
+ * @dataProvider packageNameInflectionProvider
26
+ */
27
+ public function testInflectPackageVars($type, $name, $expected)
28
+ {
29
+ $this->assertEquals(
30
+ array('name' => $expected, 'type' => $type),
31
+ $this->installer->inflectPackageVars(array('name' => $name, 'type' => $type))
32
+ );
33
+ }
34
+
35
+ public function packageNameInflectionProvider()
36
+ {
37
+ return array(
38
+ // modules
39
+ array(
40
+ 'sydes-module',
41
+ 'name',
42
+ 'Name'
43
+ ),
44
+ array(
45
+ 'sydes-module',
46
+ 'sample-name',
47
+ 'SampleName'
48
+ ),
49
+ array(
50
+ 'sydes-module',
51
+ 'sydes-name',
52
+ 'Name'
53
+ ),
54
+ array(
55
+ 'sydes-module',
56
+ 'sample-name-module',
57
+ 'SampleName',
58
+ ),
59
+ array(
60
+ 'sydes-module',
61
+ 'sydes-sample-name-module',
62
+ 'SampleName'
63
+ ),
64
+ // themes
65
+ array(
66
+ 'sydes-theme',
67
+ 'some-theme-theme',
68
+ 'some-theme',
69
+ ),
70
+ array(
71
+ 'sydes-theme',
72
+ 'sydes-sometheme',
73
+ 'sometheme',
74
+ ),
75
+ array(
76
+ 'sydes-theme',
77
+ 'Sample-Name',
78
+ 'sample-name'
79
+ ),
80
+ );
81
+ }
82
+ }
vendor/composer/installers/tests/Composer/Installers/Test/TestCase.php ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of Composer.
5
+ *
6
+ * (c) Nils Adermann <naderman@naderman.de>
7
+ * Jordi Boggiano <j.boggiano@seld.be>
8
+ *
9
+ * For the full copyright and license information, please view the LICENSE
10
+ * file that was distributed with this source code.
11
+ */
12
+
13
+ namespace Composer\Installers\Test;
14
+
15
+ use Composer\Package\Version\VersionParser;
16
+ use Composer\Package\Package;
17
+ use Composer\Package\AliasPackage;
18
+ use Composer\Package\LinkConstraint\VersionConstraint;
19
+ use Composer\Util\Filesystem;
20
+ use PHPUnit\Framework\TestCase as BaseTestCase;
21
+
22
+ abstract class TestCase extends BaseTestCase
23
+ {
24
+ private static $parser;
25
+
26
+ protected static function getVersionParser()
27
+ {
28
+ if (!self::$parser) {
29
+ self::$parser = new VersionParser();
30
+ }
31
+
32
+ return self::$parser;
33
+ }
34
+
35
+ protected function getVersionConstraint($operator, $version)
36
+ {
37
+ return new VersionConstraint(
38
+ $operator,
39
+ self::getVersionParser()->normalize($version)
40
+ );
41
+ }
42
+
43
+ protected function getPackage($name, $version)
44
+ {
45
+ $normVersion = self::getVersionParser()->normalize($version);
46
+
47
+ return new Package($name, $normVersion, $version);
48
+ }
49
+
50
+ protected function getAliasPackage($package, $version)
51
+ {
52
+ $normVersion = self::getVersionParser()->normalize($version);
53
+
54
+ return new AliasPackage($package, $normVersion, $version);
55
+ }
56
+
57
+ protected function ensureDirectoryExistsAndClear($directory)
58
+ {
59
+ $fs = new Filesystem();
60
+ if (is_dir($directory)) {
61
+ $fs->removeDirectory($directory);
62
+ }
63
+ mkdir($directory, 0777, true);
64
+ }
65
+ }
vendor/composer/installers/tests/Composer/Installers/Test/VgmcpInstallerTest.php ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers\Test;
3
+
4
+ use Composer\Installers\VgmcpInstaller;
5
+ use Composer\Package\Package;
6
+ use Composer\Composer;
7
+ use PHPUnit\Framework\TestCase as BaseTestCase;
8
+
9
+ class VgmcpInstallerTest extends BaseTestCase
10
+ {
11
+ /**
12
+ * @var VgmcpInstaller
13
+ */
14
+ private $installer;
15
+
16
+ public function setUp()
17
+ {
18
+ $this->installer = new VgmcpInstaller(
19
+ new Package('NyanCat', '4.2', '4.2'),
20
+ new Composer()
21
+ );
22
+ }
23
+
24
+ /**
25
+ * @dataProvider packageNameInflectionProvider
26
+ */
27
+ public function testInflectPackageVars($type, $name, $expected)
28
+ {
29
+ $this->assertEquals(
30
+ array('name' => $expected, 'type' => $type),
31
+ $this->installer->inflectPackageVars(array('name' => $name, 'type' => $type))
32
+ );
33
+ }
34
+
35
+ public function packageNameInflectionProvider()
36
+ {
37
+ return array(
38
+ // Should keep bundle name StudlyCase
39
+ array(
40
+ 'vgmcp-bundle',
41
+ 'user-profile',
42
+ 'UserProfile'
43
+ ),
44
+ array(
45
+ 'vgmcp-bundle',
46
+ 'vgmcp-bundle',
47
+ 'Vgmcp'
48
+ ),
49
+ array(
50
+ 'vgmcp-bundle',
51
+ 'blog',
52
+ 'Blog'
53
+ ),
54
+ // tests that exactly one '-bundle' is cut off
55
+ array(
56
+ 'vgmcp-bundle',
57
+ 'some-bundle-bundle',
58
+ 'SomeBundle',
59
+ ),
60
+ // tests that exactly one '-theme' is cut off
61
+ array(
62
+ 'vgmcp-theme',
63
+ 'some-theme-theme',
64
+ 'SomeTheme',
65
+ ),
66
+ // tests that names without '-theme' suffix stay valid
67
+ array(
68
+ 'vgmcp-theme',
69
+ 'someothertheme',
70
+ 'Someothertheme',
71
+ ),
72
+ // Should keep theme name StudlyCase
73
+ array(
74
+ 'vgmcp-theme',
75
+ 'adminlte-advanced',
76
+ 'AdminlteAdvanced'
77
+ ),
78
+ );
79
+ }
80
+ }
vendor/composer/installers/tests/Composer/Installers/Test/YawikInstallerTest.php ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Composer\Installers\Test;
3
+
4
+ use Composer\Composer;
5
+ use Composer\Installers\YawikInstaller;
6
+ use Composer\Package\Package;
7
+ use Composer\Package\PackageInterface;
8
+
9
+ /**
10
+ * Class YawikInstallerTest
11
+ *
12
+ * @package Composer\Installers\Test
13
+ */
14
+ class YawikInstallerTest extends TestCase
15
+ {
16
+ /**
17
+ * @varComposer
18
+ */
19
+ private $composer;
20
+
21
+ /**
22
+ * @var PackageInterface
23
+ */
24
+ private $io;
25
+
26
+ /**
27
+ * @var Package
28
+ */
29
+ private $package;
30
+
31
+ /**
32
+ * setUp
33
+ *
34
+ * @return void
35
+ */
36
+ public function setUp()
37
+ {
38
+ $this->package = new Package('YawikCompanyRegistration', '1.0', '1.0');
39
+ $this->io = $this->getMock('Composer\IO\PackageInterface');
40
+ $this->composer = new Composer();
41
+ }
42
+
43
+ /**
44
+ * testInflectPackageVars
45
+ *
46
+ * @dataProvider packageNameProvider
47
+ * @return void
48
+ */
49
+ public function testInflectPackageVars($input)
50
+ {
51
+ $installer = new YawikInstaller($this->package, $this->composer);
52
+ $result = $installer->inflectPackageVars(array('name' => $input));
53
+ $this->assertEquals($result, array('name' => 'YawikCompanyRegistration'));
54
+ }
55
+
56
+ public function packageNameProvider()
57
+ {
58
+ return array(
59
+ array('yawik-company-registration'),
60
+ array('yawik_company_registration'),
61
+ array('YawikCompanyRegistration')
62
+ );
63
+ }
64
+ }
vendor/composer/installers/tests/bootstrap.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+
3
+ $loader = require __DIR__ . '/../src/bootstrap.php';
4
+ $loader->add('Composer\Installers\Test', __DIR__);
vendor/vimeo/vimeo-api/.gitattributes ADDED
@@ -0,0 +1 @@
 
1
+ /example export-ignore
vendor/vimeo/vimeo-api/.gitignore ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ composer.lock
2
+ reports/
3
+ vendor/
vendor/vimeo/vimeo-api/.styleci.yml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ preset: psr2
2
+
3
+ enabled:
4
+ - combine_consecutive_unsets
5
+ - newline_after_open_tag
6
+ - no_php4_constructor
7
+ - no_useless_else
8
+ - ordered_class_elements
9
+ - ordered_use
10
+ - strict
11
+ - strict_param
12
+ - php_unit_construct
13
+ - php_unit_strict
14
+
15
+ finder:
16
+ exclude:
17
+ - 'example'
18
+ name:
19
+ - '*.php'
vendor/vimeo/vimeo-api/.travis.yml ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ language: php
2
+
3
+ dist: 'precise'
4
+
5
+ php:
6
+ - '5.3'
7
+ - '5.4'
8
+ - '5.5'
9
+ - '5.6'
10
+ - '7.0'
11
+ - '7.1'
12
+
13
+ cache:
14
+ directories:
15
+ - ./vendor
16
+
17
+ install:
18
+ - composer install
19
+
20
+ script:
21
+ - vendor/bin/phpunit
vendor/vimeo/vimeo-api/CHANGELOG.md ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CHANGELOG
2
+
3
+ ## 1.2.1 (released 2015-05-07)
4
+
5
+ - Move from pem to cer
6
+
7
+ ## 1.2.0 (released 2015-05-01)
8
+
9
+ - Better error messages when uploading (#66)
10
+ - Better error messages when curl errors (#68)
11
+ - Root cert is included to help with curl errors (#69)
12
+
13
+ ## 1.1.0 (released 2014-10-23)
14
+
15
+ - Added composer support (#6)
16
+
17
+ ## 1.0.0 (released 2014-09-26)
18
+
19
+ - This is the Vimeo library for version 3 of the Vimeo API.
vendor/vimeo/vimeo-api/LICENSE ADDED
@@ -0,0 +1,177 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
vendor/vimeo/vimeo-api/README.md ADDED
@@ -0,0 +1,254 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # <img src="https://user-images.githubusercontent.com/33762/33720344-abc20bb8-db31-11e7-8362-59a4985aeff0.png" width="250" />
2
+
3
+ [![Packagist](https://img.shields.io/packagist/v/vimeo/vimeo-api.svg?style=flat-square)](https://packagist.org/packages/vimeo/vimeo-api)
4
+ [![License](https://img.shields.io/packagist/l/vimeo/vimeo-api.svg?style=flat-square)](https://packagist.org/packages/vimeo/vimeo-api)
5
+ [![Travis CI](https://img.shields.io/travis/vimeo/vimeo.php.svg?style=flat-square)](https://travis-ci.org/vimeo/vimeo.php)
6
+ [![StyleCI](https://styleci.io/repos/9654006/shield?style=flat-square)](https://styleci.io/repos/9654006/)
7
+
8
+ This is a simple PHP library for interacting with the [Vimeo API](https://developers.vimeo.com).
9
+
10
+ - [Get Started](#get-started-with-the-vimeo-api)
11
+ - [Help](#direct-help)
12
+ - [Troubleshooting](#troubleshooting)
13
+ - [Installation](#installation)
14
+ - [Usage](#usage)
15
+ - [Authentication / Access Tokens](#generate-your-access-token)
16
+ - [Unauthenticated tokens](#unauthenticated)
17
+ - [Authenticated tokens](#authenticated)
18
+ - [Make requests](#make-requests)
19
+ - [Uploading videos](#uploading-videos)
20
+ - [Upload videos from a server](#upload-videos-from-the-server)
21
+ - [Replace videos from a server](#replace-videos-from-the-server)
22
+ - [Client side uploads](#upload-or-replace-videos-from-the-client)
23
+ - [Upload videos from a URL](#upload-videos-from-a-url)
24
+ - [Upload images](#upload-images)
25
+ - [Framework integrations](#framework-integrations)
26
+
27
+ ## Get started with the Vimeo API
28
+
29
+ There is a lot of information about the Vimeo API at <https://developer.vimeo.com/api/start>. Most of your questions will be answered there!
30
+
31
+ ## Direct Help
32
+
33
+ * [Stack Overflow](http://stackoverflow.com/questions/tagged/vimeo-api)
34
+ * [Google Group](https://groups.google.com/forum/#!forum/vimeo-api)
35
+ * [Vimeo Support](https://vimeo.com/help/contact)
36
+
37
+ #### NOTE: How to use the PHP library with Vimeo dot notation documentation.
38
+
39
+ The API docs often uses dot notation to represent a hierarchy of data (eg. privacy.view). Because this library sends all data using JSON, you must use nested associative arrays, not dot notation.
40
+
41
+ ```php
42
+ // The documentation refers to the following as `privacy.view`
43
+ $params = ['privacy' => ['view' => 'disable']];
44
+ ```
45
+
46
+ ## Installation
47
+ ### Composer
48
+
49
+ 1. Require this package, with [Composer](https://getcomposer.org/), in the root directory of your project.
50
+
51
+ ```bash
52
+ composer require vimeo/vimeo-api
53
+ ```
54
+
55
+ 2. Use the library `$lib = new \Vimeo\Vimeo($client_id, $client_secret)`
56
+
57
+ ### Manual
58
+
59
+ 1. Download the latest release : [v2.0.0](https://github.com/vimeo/vimeo.php/archive/2.0.0.zip)
60
+ 2. Include the autoloader `require("/path/to/vimeo.php/autoload.php");`
61
+ 3. Use the library `$lib = new \Vimeo\Vimeo($client_id, $client_secret)`
62
+
63
+ ## Usage
64
+ ### Generate your access token
65
+
66
+ All requests require access tokens. There are two types of access tokens.
67
+
68
+ - [Unauthenticated](#unauthenticated) - Access tokens without a user. These tokens can only view public data
69
+ - [Authenticated](#authenticated) - Access tokens with a user. These tokens interact on behalf of the authenticated user.
70
+
71
+ #### Unauthenticated
72
+
73
+ Unauthenticated API requests must generate an access token. You should not generate a new access token for each request, you should request an access token once and use it forever.
74
+
75
+ ```php
76
+ // `scope` is an array of permissions your token needs to access.
77
+ // You can read more at https://developer.vimeo.com/api/authentication#supported-scopes
78
+ $token = $lib->clientCredentials(scope);
79
+
80
+ // usable access token
81
+ var_dump($token['body']['access_token']);
82
+
83
+ // accepted scopes
84
+ var_dump($token['body']['scope']);
85
+
86
+ // use the token
87
+ $lib->setToken($token['body']['access_token']);
88
+ ```
89
+
90
+ #### Authenticated
91
+
92
+ 1. Build a link to Vimeo so your users can authorize your app.
93
+
94
+ ```php
95
+ $url = $lib->buildAuthorizationEndpoint($redirect_uri, $scopes, $state)
96
+ ```
97
+
98
+ Name | Type | Description
99
+ ---------------|----------|------------
100
+ `redirect_uri` | string | The uri the user is redirected to in step 3. This value must be provided to every step of the authorization process including creating your app, building your authorization endpoint and exchanging your authorization code for an access token.
101
+ `scope` | array | An array of permissions your token needs to access. You can read more at https://developer.vimeo.com/api/authentication#supported-scopes.
102
+ `state` | string | A value unique to this authorization request. You should generate it randomly, and validate it in step 3.
103
+
104
+ 2. Your user will need to access the authorization endpoint (either by clicking the link or through a redirect). On the authorization endpoint the user will have the option to deny your app any scopes you have requested. If they deny your app, they will be redirected back to your `redirect_url` with an `error` parameter.
105
+
106
+ 3. If the user accepts your app, they will be redirected back to your `redirect_uri` with a `code` and `state` query parameter (eg. http://yourredirect.com?code=abc&state=xyz).
107
+ 1. You must validate that the `state` matches your state from step 1.
108
+ 2. If the state is valid, you can exchange your code and `redirect_uri` for an access token.
109
+
110
+ ```php
111
+ // `redirect_uri` must be provided, and must match your configured URI
112
+ $token = $lib->accessToken(code, redirect_uri);
113
+
114
+ // Usable access token
115
+ var_dump($token['body']['access_token']);
116
+
117
+ // Accepted scopes
118
+ var_dump($token['body']['scope']);
119
+
120
+ // Set the token
121
+ $lib->setToken($token['body']['access_token']);
122
+ ```
123
+
124
+ For additional information, check out the [example](https://github.com/vimeo/vimeo.php/blob/master/example/auth.php)
125
+
126
+ ### Make requests
127
+
128
+ The API library has a `request` method which takes three parameters. It returns an associative array containing all of the relvant request information.
129
+
130
+ #### Usage
131
+
132
+ Name | Type | Description
133
+ ----------|----------|------------
134
+ `url` | string | The URL path (e.g.: `/users/dashron`).
135
+ `params` | string | An object containing all of your parameters (e.g.: `{ "per_page": 5, "filter" : "featured"}` ).
136
+ `method` | string | The HTTP method (e.g.: `GET`).
137
+
138
+ ```php
139
+ $response = $lib->request('/me/videos', ['per_page' => 2], 'GET');
140
+ ```
141
+
142
+ #### Response
143
+
144
+ The response array will contain three keys.
145
+
146
+ Name | Type | Description
147
+ -----------|--------|------------
148
+ `body` | array | The parsed request body. All responses are JSON so we parse this for you, and give you the result.
149
+ `status` | number | The HTTP status code of the response. This partially informs you about the success of your API request.
150
+ `headers` | array | An associative array containing all of the response headers.
151
+
152
+ ```php
153
+ $response = $lib->request('/me/videos', ['per_page' => 2], 'GET');
154
+ var_dump($response['body']);
155
+ ```
156
+
157
+ ### Uploading videos
158
+ #### Upload videos from the server
159
+
160
+ To upload videos you must call the `upload` method. It accepts two parameters. It will return the URI of the new video.
161
+
162
+ Internally, this library will execute a `tus` upload approach and send a file to the server with the [tus](https://tus.io/) upload protocol.
163
+
164
+ For more information check out the [example](https://github.com/vimeo/vimeo.php/blob/master/example/upload.php)
165
+
166
+ Name | Type | Description
167
+ ---------|---------|------------
168
+ `file` | string | Full path to the upload file on the local system.
169
+ `params` | array | Parameters to send when creating a new video (name, privacy restrictions, etc.). See the [`/me/videos` documentation](https://developer.vimeo.com/api/endpoints/videos#POST/users/{user_id}/videos) for supported parameters.
170
+
171
+ ```php
172
+ $response = $lib->upload('/home/aaron/Downloads/ada.mp4')
173
+
174
+ // With parameters.
175
+ $response = $lib->upload('/home/aaron/Downloads/ada.mp4', [
176
+ 'name' => 'Ada',
177
+ 'privacy' => [
178
+ 'view' => 'anybody'
179
+ ]
180
+ ])
181
+ ```
182
+
183
+ #### Replace videos from the server
184
+
185
+ To replace the source file of a video, you must call the `replace` method. It accepts two parameters. It will return the URI of the replaced video.
186
+
187
+ Name | Type | Description
188
+ ------------|----------|------------
189
+ `video_uri` | string | The URI of the original video. Once uploaded and successfully transcoded your source video file will be swapped with this new video file.
190
+ `file` | string | Full path to the upload file on the local system.
191
+
192
+ ```php
193
+ $response = $lib->replace('/videos/12345', '/home/aaron/Downloads/ada-v2.mp4')
194
+ ```
195
+
196
+ #### Upload or replace videos from the client
197
+
198
+ To upload from the client, you will have to mix some server side, and client side API requests. We support two workflows, the first of which is much easier than the second.
199
+
200
+ ##### Simple POST uploads
201
+
202
+ This workflow is well documented on Vimeo's developer site. You can read more here: <https://developer.vimeo.com/api/upload/videos#simple-upload>
203
+
204
+ ##### Streaming uploads
205
+
206
+ Streaming uploads support progress bars, and resumable uploading. If you want to perform these uploads client side you will need to start with some server side requests.
207
+
208
+ Read through the [Vimeo documentation](https://developer.vimeo.com/api/upload/videos#resumable-upload) first. Step 1 and 4 should be performed on the server, while step 2 and 3 can be performed on the client. With this workflow the video will never be transferred to your servers.
209
+
210
+ #### Upload videos from a url
211
+
212
+ Uploading videos from a public url (also called "pull uploads") uses a single, simple API call.
213
+
214
+ ```php
215
+ $video_response = $lib->request(
216
+ '/me/videos',
217
+ [
218
+ 'upload' => ['approach' => 'pull'],
219
+ 'link' => $url
220
+ ],
221
+ 'POST'
222
+ );
223
+ ```
224
+
225
+ ### Upload images
226
+
227
+ To upload an image, call the `uploadImage` method. It takes three parameters.
228
+
229
+ For more information check out the [example](https://github.com/vimeo/vimeo.php/blob/master/example/upload_image.php)
230
+
231
+ Name | Type | Description
232
+ ---------------|----------|------------
233
+ `pictures_uri` | string | The URI to the pictures collection for a single resource. eg. `/videos/12345/pictures`. You can always find this in the resource representation.
234
+ `file` | string | Full path to the upload file on the local system.
235
+ `activate` | boolean | (Optional) Defaults to `false`. If true this picture will become the default picture for the associated resource.
236
+
237
+ ```php
238
+ $response = $lib->uploadImage('/videos/12345/pictures', '/home/aaron/Downloads/ada.png', true)
239
+ ```
240
+
241
+ ## Troubleshooting
242
+
243
+ If you have any questions or problems, create a [ticket](https://github.com/vimeo/vimeo.php/issues) or [contact us](https://vimeo.com/help/contact)
244
+
245
+ ## Framework integrations
246
+
247
+ - **WordPress** - <http://vimeography.com/>
248
+ - **Laravel** - <https://github.com/vinkla/vimeo>
249
+
250
+ If you have integrated Vimeo into a popular PHP framework let us know!
251
+
252
+ ## Contributors
253
+
254
+ To see the contributors please visit the [contributors graph](https://github.com/vimeo/vimeo.php/graphs/contributors).
vendor/vimeo/vimeo-api/autoload.php ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Copyright 2014 Vimeo
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+
18
+ spl_autoload_register(function ($class) {
19
+ // Make sure that the class being loaded is in the vimeo namespace
20
+ if (substr(strtolower($class), 0, 6) !== 'vimeo\\') {
21
+ return;
22
+ }
23
+
24
+ // Locate and load the file that contains the class
25
+ $path = __DIR__ . '/src/' . str_replace('\\', '/', $class) . '.php';
26
+ if (file_exists($path)) {
27
+ require($path);
28
+ }
29
+ });
vendor/vimeo/vimeo-api/certificates/vimeo-api.pem ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ -----BEGIN CERTIFICATE-----
2
+ MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBh
3
+ MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
4
+ d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD
5
+ QTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVT
6
+ MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIg
7
+ U2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB
8
+ ANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83
9
+ nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bd
10
+ KpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f
11
+ /ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGX
12
+ kujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0
13
+ /RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8C
14
+ AQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYY
15
+ aHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6
16
+ Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1
17
+ oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RD
18
+ QS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8v
19
+ d3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzh
20
+ xtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEB
21
+ CwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl
22
+ 5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA
23
+ 8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC
24
+ 2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPit
25
+ c+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0
26
+ j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz
27
+ -----END CERTIFICATE-----
28
+
29
+ -----BEGIN CERTIFICATE-----
30
+ MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG
31
+ EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw
32
+ HgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw
33
+ MDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3
34
+ dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq
35
+ hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn
36
+ TjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5
37
+ BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H
38
+ 4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y
39
+ 7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB
40
+ o2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm
41
+ 8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF
42
+ BQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr
43
+ EbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt
44
+ tep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886
45
+ UAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk
46
+ CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=
47
+ -----END CERTIFICATE-----
vendor/vimeo/vimeo-api/composer.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "vimeo/vimeo-api",
3
+ "description": "Official PHP library for the Vimeo API.",
4
+ "homepage": "https://github.com/vimeo/vimeo.php",
5
+ "keywords": ["vimeo", "video"],
6
+ "license": "Apache-2.0",
7
+ "authors": [
8
+ {
9
+ "name": "Vimeo",
10
+ "homepage": "http://vimeo.com"
11
+ }
12
+ ],
13
+ "minimum-stability": "stable",
14
+ "require": {
15
+ "php": ">=5.3.0",
16
+ "ext-curl": "*",
17
+ "ext-json":"*"
18
+ },
19
+ "autoload": {
20
+ "psr-4": {
21
+ "Vimeo\\": "src/Vimeo"
22
+ }
23
+ },
24
+ "require-dev": {
25
+ "phpunit/phpunit": "^4.8"
26
+ },
27
+ "scripts": {
28
+ "coverage": "phpunit --coverage-html reports/",
29
+ "tests": "phpunit"
30
+ }
31
+ }
vendor/vimeo/vimeo-api/phpunit.xml ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <phpunit backupGlobals="false"
3
+ backupStaticAttributes="false"
4
+ colors="true"
5
+ convertErrorsToExceptions="true"
6
+ convertNoticesToExceptions="true"
7
+ convertWarningsToExceptions="true"
8
+ processIsolation="false"
9
+ stopOnFailure="false"
10
+ syntaxCheck="false">
11
+ <testsuites>
12
+ <testsuite name="Vimeo PHP SDK">
13
+ <directory>./tests/</directory>
14
+ </testsuite>
15
+ </testsuites>
16
+
17
+ <filter>
18
+ <whitelist>
19
+ <directory>src/</directory>
20
+ </whitelist>
21
+ </filter>
22
+ </phpunit>
vendor/vimeo/vimeo-api/src/Vimeo/Exceptions/ExceptionInterface.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Vimeo\Exceptions;
3
+
4
+ /**
5
+ * ExceptionInterface
6
+ */
7
+ interface ExceptionInterface
8
+ {
9
+ }
vendor/vimeo/vimeo-api/src/Vimeo/Exceptions/VimeoRequestException.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Vimeo\Exceptions;
3
+
4
+ /**
5
+ * VimeoRequestException class for failure to make request.
6
+ */
7
+ class VimeoRequestException extends \Exception implements ExceptionInterface
8
+ {
9
+ }
vendor/vimeo/vimeo-api/src/Vimeo/Exceptions/VimeoUploadException.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Vimeo\Exceptions;
3
+
4
+ /**
5
+ * VimeoUploadException class for failure to upload to the server.
6
+ */
7
+ class VimeoUploadException extends \Exception implements ExceptionInterface
8
+ {
9
+ }
vendor/vimeo/vimeo-api/src/Vimeo/Vimeo.php ADDED
@@ -0,0 +1,598 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Vimeo;
3
+
4
+ use Vimeo\Exceptions\VimeoRequestException;
5
+ use Vimeo\Exceptions\VimeoUploadException;
6
+
7
+ /**
8
+ * Copyright 2013 Vimeo
9
+ *
10
+ * Licensed under the Apache License, Version 2.0 (the "License");
11
+ * you may not use this file except in compliance with the License.
12
+ * You may obtain a copy of the License at
13
+ *
14
+ * http://www.apache.org/licenses/LICENSE-2.0
15
+ *
16
+ * Unless required by applicable law or agreed to in writing, software
17
+ * distributed under the License is distributed on an "AS IS" BASIS,
18
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ * See the License for the specific language governing permissions and
20
+ * limitations under the License.
21
+ */
22
+
23
+ if (!function_exists('json_decode')) {
24
+ throw new \Exception('We could not find json_decode. json_decode is found in php 5.2 and up, but may be missing on some Linux systems due to licensing conflicts. If you are running ubuntu try "sudo apt-get install php5-json".');
25
+ }
26
+
27
+ class Vimeo
28
+ {
29
+ const ROOT_ENDPOINT = 'https://api.vimeo.com';
30
+ const AUTH_ENDPOINT = 'https://api.vimeo.com/oauth/authorize';
31
+ const ACCESS_TOKEN_ENDPOINT = '/oauth/access_token';
32
+ const CLIENT_CREDENTIALS_TOKEN_ENDPOINT = '/oauth/authorize/client';
33
+ const VERSIONS_ENDPOINT = '/versions';
34
+ const VERSION_STRING = 'application/vnd.vimeo.*+json; version=3.4';
35
+ const USER_AGENT = 'vimeo.php 2.0.0; (http://developer.vimeo.com/api/docs)';
36
+ const CERTIFICATE_PATH = '/certificates/vimeo-api.pem';
37
+
38
+ protected $_curl_opts = array();
39
+ protected $CURL_DEFAULTS = array();
40
+
41
+ private $_client_id = null;
42
+ private $_client_secret = null;
43
+ private $_access_token = null;
44
+
45
+ /**
46
+ * Creates the Vimeo library, and tracks the client and token information.
47
+ *
48
+ * @param string $client_id Your applications client id. Can be found on developer.vimeo.com/apps
49
+ * @param string $client_secret Your applications client secret. Can be found on developer.vimeo.com/apps
50
+ * @param string $access_token Your applications client id. Can be found on developer.vimeo.com/apps or generated using OAuth 2.
51
+ */
52
+ public function __construct($client_id, $client_secret, $access_token = null)
53
+ {
54
+ $this->_client_id = $client_id;
55
+ $this->_client_secret = $client_secret;
56
+ $this->_access_token = $access_token;
57
+ $this->CURL_DEFAULTS = array(
58
+ CURLOPT_HEADER => 1,
59
+ CURLOPT_RETURNTRANSFER => true,
60
+ CURLOPT_TIMEOUT => 30,
61
+ CURLOPT_SSL_VERIFYPEER => true,
62
+ //Certificate must indicate that the server is the server to which you meant to connect.
63
+ CURLOPT_SSL_VERIFYHOST => 2,
64
+ CURLOPT_CAINFO => realpath(__DIR__ .'/../..') . self::CERTIFICATE_PATH
65
+ );
66
+ }
67
+
68
+ /**
69
+ * Make an API request to Vimeo.
70
+ *
71
+ * @param string $url A Vimeo API Endpoint. Should not include the host
72
+ * @param array $params An array of parameters to send to the endpoint. If the HTTP method is GET, they will be added to the url, otherwise they will be written to the body
73
+ * @param string $method The HTTP Method of the request
74
+ * @param bool $json_body
75
+ * @param array $headers An array of HTTP headers to pass along with the request.
76
+ * @return array This array contains three keys, 'status' is the status code, 'body' is an object representation of the json response body, and headers are an associated array of response headers
77
+ */
78
+ public function request($url, $params = array(), $method = 'GET', $json_body = true, array $headers = array())
79
+ {
80
+ $headers = array_merge(array(
81
+ 'Accept' => self::VERSION_STRING,
82
+ 'User-Agent' => self::USER_AGENT,
83
+ ), $headers);
84
+
85
+ $method = strtoupper($method);
86
+
87
+ // add bearer token, or client information
88
+ if (!empty($this->_access_token)) {
89
+ $headers['Authorization'] = 'Bearer ' . $this->_access_token;
90
+ } else {
91
+ // this may be a call to get the tokens, so we add the client info.
92
+ $headers['Authorization'] = 'Basic ' . $this->_authHeader();
93
+ }
94
+
95
+ // Set the methods, determine the URL that we should actually request and prep the body.
96
+ $curl_opts = array();
97
+ switch ($method) {
98
+ case 'GET':
99
+ if (!empty($params)) {
100
+ $query_component = '?' . http_build_query($params, '', '&');
101
+ } else {
102
+ $query_component = '';
103
+ }
104
+
105
+ $curl_url = self::ROOT_ENDPOINT . $url . $query_component;
106
+ break;
107
+
108
+ case 'POST':
109
+ case 'PATCH':
110
+ case 'PUT':
111
+ case 'DELETE':
112
+ if ($json_body && !empty($params)) {
113
+ $headers['Content-Type'] = 'application/json';
114
+ $body = json_encode($params);
115
+ } else {
116
+ $body = http_build_query($params, '', '&');
117
+ }
118
+
119
+ $curl_url = self::ROOT_ENDPOINT . $url;
120
+ $curl_opts = array(
121
+ CURLOPT_POST => true,
122
+ CURLOPT_CUSTOMREQUEST => $method,
123
+ CURLOPT_POSTFIELDS => $body
124
+ );
125
+ break;
126
+ }
127
+
128
+ // Set the headers
129
+ foreach ($headers as $key => $value) {
130
+ $curl_opts[CURLOPT_HTTPHEADER][] = sprintf('%s: %s', $key, $value);
131
+ }
132
+
133
+ $response = $this->_request($curl_url, $curl_opts);
134
+
135
+ $response['body'] = json_decode($response['body'], true);
136
+
137
+ return $response;
138
+ }
139
+
140
+ /**
141
+ * Request the access token associated with this library.
142
+ *
143
+ * @return string
144
+ */
145
+ public function getToken()
146
+ {
147
+ return $this->_access_token;
148
+ }
149
+
150
+ /**
151
+ * Assign a new access token to this library.
152
+ *
153
+ * @param string $access_token the new access token
154
+ */
155
+ public function setToken($access_token)
156
+ {
157
+ $this->_access_token = $access_token;
158
+ }
159
+
160
+ /**
161
+ * Sets custom cURL options.
162
+ *
163
+ * @param array $curl_opts An associative array of cURL options.
164
+ */
165
+ public function setCURLOptions($curl_opts = array())
166
+ {
167
+ $this->_curl_opts = $curl_opts;
168
+ }
169
+
170
+ /**
171
+ * Convert the raw headers string into an associated array
172
+ *
173
+ * @param string $headers
174
+ * @return array
175
+ */
176
+ public static function parse_headers($headers)
177
+ {
178
+ $final_headers = array();
179
+ $list = explode("\n", trim($headers));
180
+
181
+ $http = array_shift($list);
182
+
183
+ foreach ($list as $header) {
184
+ $parts = explode(':', $header, 2);
185
+ $final_headers[trim($parts[0])] = isset($parts[1]) ? trim($parts[1]) : '';
186
+ }
187
+
188
+ return $final_headers;
189
+ }
190
+
191
+ /**
192
+ * Request an access token. This is the final step of the
193
+ * OAuth 2 workflow, and should be called from your redirect url.
194
+ *
195
+ * @param string $code The authorization code that was provided to your redirect url
196
+ * @param string $redirect_uri The redirect_uri that is configured on your app page, and was used in buildAuthorizationEndpoint
197
+ * @return array This array contains three keys, 'status' is the status code, 'body' is an object representation of the json response body, and headers are an associated array of response headers
198
+ */
199
+ public function accessToken($code, $redirect_uri)
200
+ {
201
+ return $this->request(self::ACCESS_TOKEN_ENDPOINT, array(
202
+ 'grant_type' => 'authorization_code',
203
+ 'code' => $code,
204
+ 'redirect_uri' => $redirect_uri
205
+ ), "POST", false);
206
+ }
207
+
208
+ /**
209
+ * Get client credentials for requests.
210
+ *
211
+ * @param mixed $scope Scopes to request for this token from the server.
212
+ * @return array Response from the server with the tokens, we also set it into this object.
213
+ */
214
+ public function clientCredentials($scope = 'public')
215
+ {
216
+ if (is_array($scope)) {
217
+ $scope = implode(' ', $scope);
218
+ }
219
+
220
+ $token_response = $this->request(self::CLIENT_CREDENTIALS_TOKEN_ENDPOINT, array(
221
+ 'grant_type' => 'client_credentials',
222
+ 'scope' => $scope
223
+ ), "POST", false);
224
+
225
+ return $token_response;
226
+ }
227
+
228
+ /**
229
+ * Build the url that your user.
230
+ *
231
+ * @param string $redirect_uri The redirect url that you have configured on your app page
232
+ * @param string $scope An array of scopes that your final access token needs to access
233
+ * @param string $state A random variable that will be returned on your redirect url. You should validate that this matches
234
+ * @return string
235
+ */
236
+ public function buildAuthorizationEndpoint($redirect_uri, $scope = 'public', $state = null)
237
+ {
238
+ $query = array(
239
+ "response_type" => 'code',
240
+ "client_id" => $this->_client_id,
241
+ "redirect_uri" => $redirect_uri
242
+ );
243
+
244
+ $query['scope'] = $scope;
245
+ if (empty($scope)) {
246
+ $query['scope'] = 'public';
247
+ } elseif (is_array($scope)) {
248
+ $query['scope'] = implode(' ', $scope);
249
+ }
250
+
251
+ if (!empty($state)) {
252
+ $query['state'] = $state;
253
+ }
254
+
255
+ return self::AUTH_ENDPOINT . '?' . http_build_query($query);
256
+ }
257
+
258
+ /**
259
+ * Upload a file.
260
+ *
261
+ * This should be used to upload a local file. If you want a form for your site to upload direct to Vimeo, you
262
+ * should look at the `POST /me/videos` endpoint.
263
+ *
264
+ * @link https://developer.vimeo.com/api/endpoints/videos#POST/users/{user_id}/videos
265
+ * @param string $file_path Path to the video file to upload.
266
+ * @param array $params Parameters to send when creating a new video (name, privacy restrictions, etc.).
267
+ * @throws VimeoUploadException
268
+ * @return string Video URI
269
+ */
270
+ public function upload($file_path, array $params = array())
271
+ {
272
+ // Validate that our file is real.
273
+ if (!is_file($file_path)) {
274
+ throw new VimeoUploadException('Unable to locate file to upload.');
275
+ }
276
+
277
+ $file_size = filesize($file_path);
278
+
279
+ // If the user does not have enough free space in their quota to upload this, then don't.
280
+ $response = $this->request('/me', array('fields' => 'upload_quota.space.free'), 'GET');
281
+ if ($response['status'] !== 200) {
282
+ $error = !empty($response['body']['error']) ? ' [' . $response['body']['error'] . ']' : '';
283
+ throw new VimeoUploadException('Unable to pull the users upload quota.' . $error);
284
+ } elseif ($file_size > $response['body']['upload_quota']['space']['free']) {
285
+ throw new VimeoUploadException('User does not have any more free space to upload this video.');
286
+ }
287
+
288
+ // Ignore any specified upload approach and size.
289
+ $params['upload']['approach'] = 'tus';
290
+ $params['upload']['size'] = $file_size;
291
+
292
+ // Use JSON filtering so we only receive the data that we need to make an upload happen.
293
+ $uri = '/me/videos?fields=uri,upload';
294
+
295
+ $attempt = $this->request($uri, $params, 'POST');
296
+ if ($attempt['status'] !== 200) {
297
+ $attempt_error = !empty($attempt['body']['error']) ? ' [' . $attempt['body']['error'] . ']' : '';
298
+ throw new VimeoUploadException('Unable to initiate an upload.' . $attempt_error);
299
+ }
300
+
301
+ return $this->perform_upload_tus($file_path, $file_size, $attempt);
302
+ }
303
+
304
+ /**
305
+ * Replace the source of a single Vimeo video.
306
+ *
307
+ * @link https://developer.vimeo.com/api/endpoints/videos#POST/videos/{video_id}/versions
308
+ * @param string $video_uri Video uri of the video file to replace.
309
+ * @param string $file_path Path to the video file to upload.
310
+ * @throws VimeoUploadException
311
+ * @return string Video URI
312
+ */
313
+ public function replace($video_uri, $file_path, array $params = array())
314
+ {
315
+ // Validate that our file is real.
316
+ if (!is_file($file_path)) {
317
+ throw new VimeoUploadException('Unable to locate file to upload.');
318
+ }
319
+
320
+ $file_size = filesize($file_path);
321
+
322
+ // Use JSON filtering so we only receive the data that we need to make an upload happen.
323
+ $uri = $video_uri . self::VERSIONS_ENDPOINT . '?fields=upload';
324
+
325
+ // Ignore any specified upload approach and size.
326
+ $params['file_name'] = basename($file_path);
327
+ $params['upload']['approach'] = 'tus';
328
+ $params['upload']['size'] = $file_size;
329
+
330
+ $attempt = $this->request($uri, $params, 'POST');
331
+ if ($attempt['status'] !== 201) {
332
+ $attempt_error = !empty($attempt['body']['error']) ? ' [' . $attempt['body']['error'] . ']' : '';
333
+ throw new VimeoUploadException('Unable to initiate an upload.' . $attempt_error);
334
+ }
335
+
336
+ // `uri` doesn't come back from `/videos/:id/versions` so we need to manually set it here for uploading.
337
+ $attempt['body']['uri'] = $video_uri;
338
+
339
+ return $this->perform_upload_tus($file_path, $file_size, $attempt);
340
+ }
341
+
342
+ /**
343
+ * Uploads an image to an individual picture response.
344
+ *
345
+ * @link https://developer.vimeo.com/api/upload/pictures
346
+ * @param string $pictures_uri The pictures endpoint for a resource that allows picture uploads (eg videos and users)
347
+ * @param string $file_path The path to your image file
348
+ * @param boolean $activate Activate image after upload
349
+ * @throws VimeoUploadException
350
+ * @return string The URI of the uploaded image.
351
+ */
352
+ public function uploadImage($pictures_uri, $file_path, $activate = false)
353
+ {
354
+ // Validate that our file is real.
355
+ if (!is_file($file_path)) {
356
+ throw new VimeoUploadException('Unable to locate file to upload.');
357
+ }
358
+
359
+ $pictures_response = $this->request($pictures_uri, array(), 'POST');
360
+ if ($pictures_response['status'] !== 201) {
361
+ throw new VimeoUploadException('Unable to request an upload url from vimeo');
362
+ }
363
+
364
+ $upload_url = $pictures_response['body']['link'];
365
+
366
+ $image_resource = fopen($file_path, 'r');
367
+
368
+ $curl_opts = array(
369
+ CURLOPT_TIMEOUT => 240,
370
+ CURLOPT_UPLOAD => true,
371
+ CURLOPT_CUSTOMREQUEST => 'PUT',
372
+ CURLOPT_READDATA => $image_resource
373
+ );
374
+
375
+ $curl = curl_init($upload_url);
376
+
377
+ // Merge the options
378
+ curl_setopt_array($curl, $curl_opts + $this->CURL_DEFAULTS);
379
+ $response = curl_exec($curl);
380
+ $curl_info = curl_getinfo($curl);
381
+
382
+ if (!$response) {
383
+ $error = curl_error($curl);
384
+ throw new VimeoUploadException($error);
385
+ }
386
+ curl_close($curl);
387
+
388
+ if ($curl_info['http_code'] !== 200) {
389
+ throw new VimeoUploadException($response);
390
+ }
391
+
392
+ // Activate the uploaded image
393
+ if ($activate) {
394
+ $completion = $this->request($pictures_response['body']['uri'], array('active' => true), 'PATCH');
395
+ }
396
+
397
+ return $pictures_response['body']['uri'];
398
+ }
399
+
400
+ /**
401
+ * Uploads a text track.
402
+ *
403
+ * @link https://developer.vimeo.com/api/upload/texttracks
404
+ * @param string $texttracks_uri The text tracks uri that we are adding our text track to
405
+ * @param string $file_path The path to your text track file
406
+ * @param string $track_type The type of your text track
407
+ * @param string $language The language of your text track
408
+ * @throws VimeoUploadException
409
+ * @return string The URI of the uploaded text track.
410
+ */
411
+ public function uploadTexttrack($texttracks_uri, $file_path, $track_type, $language)
412
+ {
413
+ // Validate that our file is real.
414
+ if (!is_file($file_path)) {
415
+ throw new VimeoUploadException('Unable to locate file to upload.');
416
+ }
417
+
418
+ // To simplify the script we provide the filename as the text track name, but you can provide any value you want.
419
+ $name = array_slice(explode("/", $file_path), -1);
420
+ $name = $name[0];
421
+
422
+ $texttrack_response = $this->request($texttracks_uri, array('type' => $track_type, 'language' => $language, 'name' => $name), 'POST');
423
+
424
+ if ($texttrack_response['status'] !== 201) {
425
+ throw new VimeoUploadException('Unable to request an upload url from vimeo');
426
+ }
427
+
428
+ $upload_url = $texttrack_response['body']['link'];
429
+
430
+ $texttrack_resource = fopen($file_path, 'r');
431
+
432
+ $curl_opts = array(
433
+ CURLOPT_TIMEOUT => 240,
434
+ CURLOPT_UPLOAD => true,
435
+ CURLOPT_CUSTOMREQUEST => 'PUT',
436
+ CURLOPT_READDATA => $texttrack_resource
437
+ );
438
+
439
+ $curl = curl_init($upload_url);
440
+
441
+ // Merge the options
442
+ curl_setopt_array($curl, $curl_opts + $this->CURL_DEFAULTS);
443
+ $response = curl_exec($curl);
444
+ $curl_info = curl_getinfo($curl);
445
+
446
+ if (!$response) {
447
+ $error = curl_error($curl);
448
+ throw new VimeoUploadException($error);
449
+ }
450
+ curl_close($curl);
451
+
452
+ if ($curl_info['http_code'] !== 200) {
453
+ throw new VimeoUploadException($response);
454
+ }
455
+
456
+ return $texttrack_response['body']['uri'];
457
+ }
458
+
459
+ /**
460
+ * Internal function to handle requests, both authenticated and by the upload function.
461
+ *
462
+ * @param string $url
463
+ * @param array $curl_opts
464
+ * @return array
465
+ */
466
+ private function _request($url, $curl_opts = array())
467
+ {
468
+ // Merge the options (custom options take precedence).
469
+ $curl_opts = $this->_curl_opts + $curl_opts + $this->CURL_DEFAULTS;
470
+
471
+ // Call the API.
472
+ $curl = curl_init($url);
473
+ curl_setopt_array($curl, $curl_opts);
474
+ $response = curl_exec($curl);
475
+ $curl_info = curl_getinfo($curl);
476
+
477
+ if (isset($curl_info['http_code']) && $curl_info['http_code'] === 0) {
478
+ $curl_error = curl_error($curl);
479
+ $curl_error = !empty($curl_error) ? ' [' . $curl_error .']' : '';
480
+ throw new VimeoRequestException('Unable to complete request.' . $curl_error);
481
+ }
482
+
483
+ curl_close($curl);
484
+
485
+ // Retrieve the info
486
+ $header_size = $curl_info['header_size'];
487
+ $headers = substr($response, 0, $header_size);
488
+ $body = substr($response, $header_size);
489
+
490
+ // Return it raw.
491
+ return array(
492
+ 'body' => $body,
493
+ 'status' => $curl_info['http_code'],
494
+ 'headers' => self::parse_headers($headers)
495
+ );
496
+ }
497
+
498
+ /**
499
+ * Get authorization header for retrieving tokens/credentials.
500
+ *
501
+ * @return string
502
+ */
503
+ private function _authHeader()
504
+ {
505
+ return base64_encode($this->_client_id . ':' . $this->_client_secret);
506
+ }
507
+
508
+ /**
509
+ * Take an upload attempt and perform the actual upload via tus.
510
+ *
511
+ * @link https://tus.io/
512
+ * @param string $file_path Path to the video file to upload
513
+ * @param int $file_size Size of the video file.
514
+ * @param array $attempt Upload attempt data.
515
+ * @return mixed
516
+ * @throws VimeoRequestException
517
+ * @throws VimeoUploadException
518
+ */
519
+ private function perform_upload_tus($file_path, $file_size, $attempt)
520
+ {
521
+ $url = $attempt['body']['upload']['upload_link'];
522
+
523
+ // We need a handle on the input file since we may have to send segments multiple times.
524
+ $file = fopen($file_path, 'r');
525
+
526
+ $curl_opts = array(
527
+ CURLOPT_POST => true,
528
+ CURLOPT_CUSTOMREQUEST => 'PATCH',
529
+ CURLOPT_INFILE => $file,
530
+ CURLOPT_INFILESIZE => filesize($file_path),
531
+ CURLOPT_UPLOAD => true,
532
+ CURLOPT_HTTPHEADER => array(
533
+ 'Expect: ',
534
+ 'Content-Type: application/offset+octet-stream',
535
+ 'Tus-Resumable: 1.0.0',
536
+ 'Upload-Offset: {placeholder}',
537
+ )
538
+ );
539
+
540
+ // Perform the upload by sending as much to the server as possible and ending when we reach the file size on
541
+ // the server.
542
+ $failures = 0;
543
+ $server_at = 0;
544
+ do {
545
+ // The last HTTP header we set has to be `Upload-Offset`, since for resumable uploading to work properly,
546
+ // we'll need to alter the content of the header for each upload segment request.
547
+ array_pop($curl_opts[CURLOPT_HTTPHEADER]);
548
+ $curl_opts[CURLOPT_HTTPHEADER][] = 'Upload-Offset: ' . $server_at;
549
+
550
+ fseek($file, $server_at);
551
+
552
+ try {
553
+ $response = $this->_request($url, $curl_opts);
554
+
555
+ // Successful upload, so reset the failure counter.
556
+ $failures = 0;
557
+
558
+ if ($response['status'] === 204) {
559
+ // If the `Upload-Offset` returned is equal to the size of the video we want to upload, then we've
560
+ // fully uploaded the video. If not, continue uploading.
561
+ if ($response['headers']['Upload-Offset'] === $file_size) {
562
+ break;
563
+ }
564
+
565
+ $server_at = $response['headers']['Upload-Offset'];
566
+ continue;
567
+ }
568
+
569
+ // If we didn't receive a 204 response from the tus server, then we should verify what's going on before
570
+ // proceeding to upload more pieces.
571
+ $verify_response = $this->request($url, array(), 'HEAD');
572
+ if ($verify_response['status'] !== 200) {
573
+ $verify_error = !empty($ticket['body']) ? ' [' . $ticket['body'] . ']' : '';
574
+ throw new VimeoUploadException('Unable to verify upload' . $verify_error);
575
+ }
576
+
577
+ if ($verify_response['headers']['Upload-Offset'] === $file_size) {
578
+ break;
579
+ }
580
+
581
+ $server_at = $verify_response['headers']['Upload-Offset'];
582
+ } catch (VimeoRequestException $exception) {
583
+ // We likely experienced a timeout, but if we experience three in a row, then we should back off and
584
+ // fail so as to not overwhelm servers that are, probably, down.
585
+ if ($failures >= 3) {
586
+ throw $exception;
587
+ }
588
+
589
+ $failures++;
590
+ sleep(pow(4, $failures)); // sleep 4, 16, 64 seconds (based on failure count)
591
+ } catch (VimeoUploadException $exception) {
592
+ throw $exception;
593
+ }
594
+ } while ($server_at < $file_size);
595
+
596
+ return $attempt['body']['uri'];
597
+ }
598
+ }