You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

344 lines
13 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. <?php
  2. /**
  3. * Class provides connection to a-real redmine api.
  4. * Use class_bitrix_to_redmine
  5. *
  6. * @package redmine_api
  7. * @author Mikhail Grebenkin <mix@m14xa.ru>
  8. */
  9. class class_redmine {
  10. protected $redmine_key = '';
  11. protected $redmine_url = '';
  12. /**
  13. * Uploads $filecontent and returns token.
  14. *
  15. * @param mixed $filecontent - content of file
  16. * @return array 0 => http response, 1 => $token is object, string can be obtained in $token->upload->token
  17. */
  18. function get_upload_token($filecontent) {
  19. $upload_url = $this->redmine_url.'uploads.json?key='.$this->redmine_key;
  20. $request['type'] = 'post';
  21. $request['content_type'] = 'application/octet-stream';
  22. return $this->curl_redmine($upload_url,$request,$filecontent);
  23. }
  24. /**
  25. * Uploads an attachment, attaches it to an issue and returns json-decoded updated issue
  26. *
  27. * @param string $issue_id numeric id of issue to attach file
  28. * @param string $filename name of file
  29. * @param string $filetype type of content i.e. "image/png"
  30. * @param mixed $filecontent content of file.
  31. * @return array 0 => http response, 1 => $issue updated issue
  32. */
  33. function upload_attachment(string $issue_id, string $filename, string $filetype, $filecontent){
  34. $token = $this->get_upload_token($filecontent)[1];
  35. if (!$token) {
  36. return null;
  37. }
  38. $upload_token = $token->upload->token;
  39. return $this->attach_to_issue($issue_id,$upload_token, $filename, $filetype);
  40. }
  41. /**
  42. * Download an attachment or thumbnail
  43. *
  44. * @param string $attachment_id numeric id of attachment
  45. * @param bool $thumbnail if true downloading thumbnail
  46. *
  47. * @return array 0 => http response, 1 => $filecontent - content of file
  48. */
  49. function download_attachment(string $attachment_id, bool $thumbnail=false) {
  50. if ($thumbnail) {
  51. $file_url = $this->redmine_url.'attachments/thumbnail/'.$attachment_id.'?key='.$this->redmine_key;
  52. return file_get_contents($file_url);
  53. } else {
  54. $at_url = $this->redmine_url.'attachments/'.$attachment_id.'.json?key='.$this->redmine_key;
  55. $api_resp = $this->curl_redmine($at_url);
  56. $at_descr = $api_resp[0];
  57. if (!$at_descr) {
  58. return null;
  59. }
  60. $file_url = $this->redmine_url.'attachments/download/'.
  61. $attachment_id.'/'.$at_descr->attachment->filename.'?key='.$this->redmine_key;
  62. return file_get_contents($file_url);
  63. }
  64. }
  65. /**
  66. * Create issue
  67. *
  68. * @param $post_data - string to post to redmine (needs to update)
  69. * @return array 0 => http response, 1 => $issue - new data
  70. */
  71. function create_issue($post_data) {
  72. $issue_url = $this->redmine_url.'issues.json?key='.$this->redmine_key;
  73. $request['type'] = 'post';
  74. $request['content_type'] = 'application/json';
  75. return $this->curl_redmine($issue_url,$request,$post_data);
  76. }
  77. /**
  78. * get issue
  79. *
  80. * @param string $issue_id numeric issue id
  81. * @param string $project_id numeric project id
  82. * @param array $inc array of string with options to include. Example: array( 0 => "journals", 1 => "attachments" );
  83. * possible options:
  84. * *children
  85. * *attachments
  86. * *relations
  87. * *changesets
  88. * *journals
  89. * *watchers
  90. *
  91. * @return array 0 => http response, 1 => $issue - json data of issue
  92. */
  93. function get_issue(string $issue_id='',string $project_id='', array $inc=array()) {
  94. if (count($inc) > 0) {
  95. $inc = implode(",", $inc);
  96. $inc = '&include='.$inc;
  97. var_dump($inc);
  98. } else {
  99. $inc = '';
  100. }
  101. if($project_id!='') {
  102. $issue_url = $this->redmine_url.'issues.json?key='.$this->redmine_key.'&project_id='.$project_id.$inc;
  103. }else{
  104. $issue_url = ($issue_id=='')
  105. ?$this->redmine_url.'issues.json?key='.$this->redmine_key.$inc
  106. : $this->redmine_url.'issues/'.$issue_id.'.json?key='.$this->redmine_key.$inc;
  107. }
  108. return $this->curl_redmine($issue_url);
  109. }
  110. /**
  111. * attach to issue
  112. *
  113. * @param string $issue_id digits only issue id
  114. * @param string $upload_token digits only project id
  115. * @param string $upload_token
  116. * @param array $inc array of string with options to include. Example: array( 0 => "journals", 1 => "attachments" );
  117. * @return array 0 => http responce; 1 => issue - new data
  118. */
  119. function attach_to_issue(string $issue_id,string $upload_token, string $filename, string $filetype) {
  120. $issue_url = $this->redmine_url.'issues/'.$issue_id.'.json?key='.$this->redmine_key;
  121. $update = array( "issue" => array( "uploads"=> array( 0 => array("token" => $upload_token,
  122. "filename" => $filename,
  123. "content_type"=> $filetype )
  124. )
  125. )
  126. );
  127. $request['type'] = 'put';
  128. $request['content_type'] = 'application/json';
  129. $post_data = json_encode($update);
  130. return $this->curl_redmine($issue_url, $request , $post_data);
  131. }
  132. /**
  133. * add comment to issue
  134. *
  135. * @param string $issue_id digits only issue id
  136. * @param string $comment comment to add to the issue
  137. * @return mixed array 0 => http response, 1 => $issue - new data
  138. */
  139. function post_issue_comment(string $issue_id,string $comment) {
  140. $issue_url = $this->redmine_url.'issues/'.$issue_id.'.json?key='.$this->redmine_key;
  141. $update = array( "issue" => array(
  142. "notes"=> $comment,
  143. )
  144. );
  145. $request['type'] = 'put';
  146. $request['content_type'] = 'application/json';
  147. $post_data = json_encode($update);
  148. return $this->curl_redmine($issue_url, $request , $post_data);
  149. }
  150. //Projects, nowadays we don't use it.
  151. function get_projects($project_id='') {
  152. $proj_url = ($project_id=='')?$this->redmine_url.'projects.json?key='.$this->redmine_key : $this->redmine_url.'projects/'.$project_id.'.json?key='.$this->redmine_key;
  153. return $this->curl_redmine($proj_url);
  154. }
  155. //Contacts
  156. /**
  157. * returns json structure with all contacts
  158. *
  159. * @return mixed array 0 => http response, 1 => $contacts - data
  160. */
  161. function get_contacts() {
  162. $cont_url = $this->redmine_url.'contacts.json?key='.$this->redmine_key;
  163. return $this->curl_redmine($cont_url);
  164. }
  165. /**
  166. * search contacts by string. Returns contacts.
  167. *
  168. * @param string $search_str string to search by
  169. * @return mixed array 0 => http response, 1 => $contacts - new data
  170. */
  171. function search_contacts_str(string $search_str) {
  172. $cont_url = $this->redmine_url.'contacts.json?key='.$this->redmine_key.'&search='.$search_str;
  173. return $this->curl_redmine($cont_url);
  174. }
  175. /**
  176. * search contacts by id. Returns one contact.
  177. *
  178. * @param string $id digits only contact id
  179. * @param bool $issues if true, includes issues, connected to contact
  180. * @return mixed array 0 => http response, 1 => $contact - data
  181. */
  182. function get_contact_id(string $id, bool $issues) {
  183. $cont_url = ($issues)
  184. ? $this->redmine_url."contacts/$id.json?key=".$this->redmine_key.'&include=issues'
  185. : $this->redmine_url."contacts/$id.json?key=".$this->redmine_key;
  186. echo($cont_url);
  187. return $this->curl_redmine($cont_url);
  188. }
  189. /**
  190. * Creates contact from array.
  191. *
  192. * @param array $contact array with all needed contact fields
  193. * @return mixed array 0 => http response, 1 => $contact - data
  194. */
  195. function create_contact(array $contact) {
  196. $cont_url = $this->redmine_url.'contacts.json?key='.$this->redmine_key;
  197. $request['type'] = 'post';
  198. $request['content_type'] = 'application/json';
  199. $post_data = json_encode($contact);
  200. return $this->curl_redmine($cont_url,$request,$post_data);
  201. }
  202. /**
  203. * attach contact to issue
  204. *
  205. * @param string $issue_id digits only issue id
  206. * @param string $contact_id digits only contact id
  207. * @return mixed array 0 => http response, 1 => $issue - new data
  208. */
  209. function attach_issue_to_contact(string $issue_id,string $contact_id) {
  210. $contact_url = $this->redmine_url."contacts/".$contact_id."?key=".$this->redmine_key;
  211. $update = array( "contact" => array(
  212. "issues"=> array( 0=> array("id" => $issue_id))
  213. )
  214. );
  215. $request['type'] = 'put';
  216. $request['content_type'] = 'application/json';
  217. $post_data = json_encode($update);
  218. return $this->curl_redmine($contact_url, $request , $post_data);
  219. }
  220. /**
  221. * create_ticket creates issue with connected contact. Needs contact email.
  222. *
  223. * @param string $issue_id digits only issue id
  224. * @param string $contact_email contact email
  225. * @return mixed array 0 => http response, 1 => $issue - new data
  226. */
  227. function create_ticket(string $contact_email, string $subject, string $description) {
  228. $issue_url = $this->redmine_url."helpdesk/create_ticket.xml?key=".$this->redmine_key;
  229. $issue_xml = "<?xml version=\"1.0\"?>
  230. <ticket>
  231. <issue>
  232. <project_id>14</project_id>
  233. <tracker_id>3</tracker_id>
  234. <subject>$subject</subject>
  235. <description>$description</description>
  236. </issue>
  237. <contact>
  238. <email>$contact_email</email>
  239. </contact>
  240. </ticket>";
  241. $request['type'] = 'post';
  242. $request['content_type'] = 'application/xml';
  243. return $this->curl_redmine($issue_url, $request, $issue_xml );
  244. }
  245. //Curl
  246. function curl_redmine(string $redmine_url,array $request=array(),string $post_data='') {
  247. if(!isset($request['type'])){ $request['type']=null; }
  248. if(!isset($request['content_type'])){ $request['content_type']=null; }
  249. //Create a curl object
  250. $ch = curl_init();
  251. //Set the useragent
  252. //$agent = $_SERVER["HTTP_USER_AGENT"];
  253. //curl_setopt($ch, CURLOPT_USERAGENT, $agent);
  254. //Set the URL
  255. curl_setopt($ch, CURLOPT_URL, $redmine_url );
  256. if($request['type'] == 'post'){
  257. //This is a POST query
  258. curl_setopt($ch, CURLOPT_POST,1);
  259. curl_setopt($ch, CURLOPT_POSTFIELDS,$post_data);
  260. curl_setopt($ch, CURLOPT_HTTPHEADER, array(
  261. 'Content-Type: '.$request['content_type'],
  262. 'Content-Length: ' . strlen($post_data))
  263. );
  264. } elseif ($request['type'] == 'put') {
  265. //This is a PUT query
  266. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT');
  267. curl_setopt($ch, CURLOPT_POSTFIELDS,$post_data);
  268. curl_setopt($ch, CURLOPT_HTTPHEADER, array(
  269. 'Content-Type: '.$request['content_type'],
  270. 'Content-Length: ' . strlen($post_data))
  271. );
  272. }
  273. //We want the content after the query
  274. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  275. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  276. //Follow Location redirects
  277. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  278. //curl_setopt($ch, CURLOPT_HEADER, true);
  279. /*
  280. Set the cookie storing files
  281. Cookie files are necessary since we are logging and session data needs to be saved
  282. */
  283. //curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookie.txt');
  284. //curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookie.txt');
  285. //Execute the action to login
  286. $postResult = curl_exec($ch);
  287. // echo(curl_getinfo($ch, CURLINFO_HTTP_CODE));
  288. // for debug purposes
  289. // if($postResult == false){ return $info = curl_getinfo($ch);}
  290. $response = array( 0 => curl_getinfo($ch, CURLINFO_HTTP_CODE),
  291. 1 => json_decode($postResult));
  292. return $response;
  293. }
  294. }//class_redmine
  295. class class_bitrix_to_redmine extends class_redmine {
  296. protected $redmine_key = '68692662158cb38c8fddb8e084b6dfd55d77b85c';
  297. protected $redmine_url = 'https://tracker.a-real.ru/';
  298. function send_contact($data){
  299. $contact = array("contact" => array("first_name" => $data['last_name'],
  300. "project_id" => "managers",
  301. "phone" => $data["phone_work"],
  302. "email" => $data['webtolead_email1']
  303. )
  304. );
  305. return $this->create_contact($contact);
  306. }
  307. }
  308. ?>

Powered by TurnKey Linux.