extcallback.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?php
  2. function ioncube_event_handler($err_code, $params)
  3. {
  4. global $app;
  5. $extensionLink = helper::createLink('extension', 'browse');
  6. $homePageLink = helper::createLink('my', 'index');
  7. $pluginNotice = '';
  8. $deleteBtnZh = '';
  9. $deleteBtnEn = '';
  10. /* Display plugin information and permission check */
  11. if(!empty($params['license_file']) && preg_match('/([a-zA-Z]+)(\d+\.\d+)/', basename($params['license_file']), $matches))
  12. {
  13. $extensionInfo = !empty($matches[1]) ? $app->dao->select('*')->from(TABLE_EXTENSION)->where('code')->like( "%$matches[1]%")->fetch() : [];
  14. $pluginName = !empty($extensionInfo->name) ? $extensionInfo->name : '';
  15. $pluginNotice = !empty($pluginName) ? "<h3 style='margin: 30px 30px 0px;'><span class='icon icon-exclamation-sign warning-pale rounded-full icon-2x' style='margin-right:10px;'></span>“{$pluginName}”插件暂无授权</h3>" : '';
  16. $isPlugin = commonModel::hasPriv('extension', 'uninstall');
  17. if($isPlugin)
  18. {
  19. $deleteBtnZh = "<a href='{$extensionLink}' target='_top' class='btn btn-wide btn-default'>卸载插件</a>";
  20. $deleteBtnEn = "<a href='{$extensionLink}' target='_top' class='btn item btn-wide btn-default'>Delete Plugin</a>";
  21. }
  22. }
  23. $email = 'co@zentao.net';
  24. $mobile = '4006-8899-23';
  25. $expired = "
  26. <html>
  27. <head>
  28. <meta http-equiv='content-type' content='text/html; charset=utf-8' />
  29. <style>
  30. </style>
  31. <link rel='stylesheet' href='/js/zui3/zui.zentao.css'>
  32. <title>插件 - 禅道</title>
  33. </head>
  34. <body style='font-size: 14px;'>
  35. {$pluginNotice}
  36. <h2 style='color:red;text-align:center'>没有授权此版本</h2>
  37. <div style='text-align:left; margin: 0px 20%;'>
  38. <p>您当前授权版本不支持此插件,请联系我们购买插件的授权。</p>
  39. <p>Email:{$email}</p>
  40. <p>电话:{$mobile}</p>
  41. <p>网站:<a href='https://www.zentao.net' target='_blank'>www.zentao.net</a></p>
  42. </div>
  43. <div style='text-align:center; margin: 13px 0px;'>
  44. <a href='https://www.zentao.net/extension-browse.html' target='_blank' class='btn btn-wide primary' style='margin-right: 20px;'>下载更新</a>
  45. {$deleteBtnZh}
  46. <a href='{$homePageLink}' target='_blank' class='btn btn-wide primary' style='margin-left: 20px;'>我的地盘</a>
  47. </div>
  48. <br /> <br /> <br />
  49. <h2 style='color:red;text-align:center'>This version is not licensed</h2>
  50. <p style='text-align:left; margin: 0px 20%;'>This license version is not enable this extension. Please contact us to buy thie right licenses.</p>
  51. <div style='text-align:left; margin: 0px 20%;'>
  52. <p>Email:{$email}</p>
  53. <p>Web:<a href='https://www.zentao.pm' target='_blank'>www.zentao.pm</a></p>
  54. </div>
  55. <div style='text-align:center; margin: 13px 0px;'>
  56. <a href='https://www.zentao.net/extension-browse.html' target='_blank' class='btn btn-wide primary' style='margin-right: 20px;'>Download Update</a>
  57. {$deleteBtnEn}
  58. <a href='{$homePageLink}' target='_blank' class='btn btn-wide primary' style='margin-left: 20px;'>Dashboard</a>
  59. </div>
  60. </body>
  61. </html>
  62. ";
  63. $server = "
  64. <html>
  65. <head>
  66. <meta http-equiv='content-type' content='text/html; charset=utf-8' />
  67. <link rel='stylesheet' href='/js/zui3/zui.zentao.css'>
  68. <title>插件 - 禅道</title>
  69. </head>
  70. <body style='font-size: 13px;'>
  71. <h2 style='color:red;text-align:center'>错误的IP地址或MAC地址,或错误的域名访问</h2>
  72. <p style='text-align:left; margin: 0px 20%;'>软件授权的IP地址或MAC地址和当前系统的IP地址或MAC地址不一致,请使用最初授权的服务器。或你访问的域名与绑定的域名不一致。</p>
  73. <p style='text-align:center; margin: 13px 0px;'>
  74. <a href='https://www.zentao.net/extension-browse.html' target='_blank' class='btn btn-wide btn-primary' style='margin-right: 20px;'>下载更新</a>
  75. {$deleteBtnZh}
  76. </p>
  77. <br /> <br /> <br />
  78. <h2 style='color:red;text-align:center'>Wrong IP, MAC address, or domains!</h2>
  79. <p style='text-align:left; margin: 0px 20%;'>The IP, MAC address, or the domains of your server is not the same one in your license.</p>
  80. <p style='text-align:center; margin: 13px 0px;'>
  81. <a href='https://www.zentao.net/extension-browse.html' target='_blank' class='btn btn-wide primary' style='margin-right: 20px;'>Download Update</a>
  82. {$deleteBtnEn}
  83. <a href='{$homePageLink}' target='_blank' class='btn btn-wide primary' style='margin-left: 20px;'>Home Page</a>
  84. </p>
  85. </body>
  86. </html>
  87. ";
  88. if($err_code == ION_LICENSE_EXPIRED)
  89. {
  90. echo $expired;
  91. }
  92. elseif($err_code == ION_LICENSE_SERVER_INVALID)
  93. {
  94. echo $server;
  95. }
  96. exit;
  97. }