licenses.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. define('BY1', 1);
  3. define('BY2', 2);
  4. define('BY21', 3);
  5. define('BY25', 4);
  6. define('BY3', 5);
  7. define('BYSA1', 6);
  8. define('BYSA2', 7);
  9. define('BYSA21', 8);
  10. define('BYSA25', 9);
  11. define('BYSA3', 10);
  12. define('LAL', 11);
  13. define('PD', 12);
  14. define('CC0', 13);
  15. // Arrays containing regular expressions for each license type
  16. // (so we can support multiple URL formats in the future if needed)
  17. $by1 = array('http://creativecommons.org/licenses/by/1.0/?.*');
  18. $by2 = array('http://creativecommons.org/licenses/by/2.0/?.*');
  19. $by21 = array('http://creativecommons.org/licenses/by/2.1/?.*');
  20. $by25 = array('http://creativecommons.org/licenses/by/2.5/?.*');
  21. $by3 = array('http://creativecommons.org/licenses/by/3.0/?.*');
  22. $bysa1 = array('http://creativecommons.org/licenses/by-sa/1.0/?.*');
  23. $bysa2 = array('http://creativecommons.org/licenses/by-sa/2.0/?.*');
  24. $bysa21 = array('http://creativecommons.org/licenses/by-sa/2.1/?.*');
  25. $bysa25 = array('http://creativecommons.org/licenses/by-sa/2.5/?.*');
  26. $bysa3 = array('http://creativecommons.org/licenses/by-sa/3.0/?.*');
  27. $lal = array('http://artlibre.org/licence.php/lal.html');
  28. $pd = array('http://creativecommons.org/licenses/publicdomain/?.*');
  29. $cc0 = array('http://creativecommons.org/publicdomain/zero/?.*');
  30. // map licenses to ids by array position
  31. $licenses = array(array(), $by1, $by2, $by21, $by25, $by3, $bysa1, $bysa2, $bysa21, $bysa25, $bysa3, $lal, $pd, $cc0);
  32. function simplify_license($license) {
  33. global $licenses;
  34. foreach ($licenses as $key => $l) {
  35. foreach ($l as $urlschema) {
  36. if (preg_match("|$urlschema|", $license)) {
  37. return $key;
  38. }
  39. }
  40. }
  41. return 0;
  42. }
  43. /**
  44. * Returns true if the supplied license is one that we accept as being free
  45. *
  46. * @param $license string containing a license URL
  47. * @return bool whether this license is free or not
  48. */
  49. function is_free_license($license) {
  50. global $licenses;
  51. foreach ($licenses as $key => $l) {
  52. foreach ($l as $urlschema) {
  53. if (preg_match("|$urlschema|", $license)) {
  54. return true;
  55. }
  56. }
  57. }
  58. return false;
  59. }