Skip to content

Escaping issue #230

Open
Open
@fa-grosch

Description

@fa-grosch

The JqlQuery::quote method does not quote the given text correctly. In some scenarios, jira does not understand the jql query.

Jira-Version is: v7.13.0#713000-sha1:fbf4068

I build the query this way:

$jql = '(status != closed OR status changed to Closed after -10d ) AND'
    .' (summary ~ ' . \JiraRestApi\Issue\JqlQuery::quote($firstLine)
    .' OR description ~ ' . \JiraRestApi\Issue\JqlQuery::quote($firstLine) . ')';

$result = $issueService->search($jql);

For some values of $firstLine (maybe for special chars, single/double quotes, slashes or backslashes), jira responds to this with an error:

Fatal error: Uncaught JiraRestApi\JiraException: CURL HTTP Request Failed: Status Code : 400, URL:https://jira.xyz.com/rest/api/2/search
--
Error Message : {"errorMessages":["Unable to parse the text 'session_start(): Failed to read session data: files (path: /var/lib/php/session) in /var/www/service-a/public/index.php on line 14' for field 'summary'.","Unable to parse the text 'session_start(): Failed to read session data: files (path: /var/lib/php/session) in /var/www/reportd/public/index.php on line 14' for field 'description'."],"errors":{}} in /app/vendor/lesstif/php-jira-rest-client/src/JiraClient.php:257
Stack trace:
#0 /app/vendor/lesstif/php-jira-rest-client/src/Issue/IssueService.php(464): JiraRestApi\JiraClient->exec('search', '{"jql":"(status...', 'POST')
#1 /app/bin/run.php(85): JiraRestApi\Issue\IssueService->search('(status != clos...')
#2 {main}
thrown in /app/vendor/lesstif/php-jira-rest-client/src/JiraClient.php on line 257

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions