How do I search for content properties from the Confluence Server search screen?

Elie Daou June 20, 2017

Hello,

I'm trying to reproduce what is being done in this blog post on Confluence Server (this article describes the process required for Confluence Connect):
https://developer.atlassian.com/blog/2016/01/confluence-connect-integrations-with-CQL/

I've been able to:

 

What I can't figure out is how to connect these two things together:
how can I search for the content properties from the Confluence Search screen?

 failed-search.png

Ultimately, I'd like to have an alias for the CQL content property field like in the blog post above (instead of using the "content.property[key].value" syntax).

 

Here's my atlassian-plugin.xml:

<atlassian-plugin key="${atlassian.plugin.key}" name="${project.name}" plugins-version="2">
    <plugin-info>
        <description>${project.description}</description>
        <version>${project.version}</version>
        <vendor name="${project.organization.name}" url="${project.organization.url}" />
        <param name="plugin-icon">images/pluginIcon.png</param>
        <param name="plugin-logo">images/pluginLogo.png</param>
    </plugin-info>

    <!-- add our i18n resource -->
    <resource type="i18n" name="i18n" location="search"/>
    
    <!-- add our web resources -->
    <web-resource key="search-resources" name="search Web Resources">
        <dependency>com.atlassian.auiplugin:ajs</dependency>
        
        <resource type="download" name="search.css" location="/css/search.css"/>
        <resource type="download" name="search.js" location="/js/search.js"/>
        <resource type="download" name="images/" location="/images"/>

        <context>search</context>
    </web-resource>

    <content-property-index-schema key="mxdoc-schema-module-key">
        <key property-key="mxdoc">
            <extract path="fileid" type="number"/>
        </key>
    </content-property-index-schema>

    <cql-query-field fieldName="fileid" key="mxdoc-fileid-field"
                     name="FileID" class="doc.confluence.search.FileIdHandler">
        <ui-support value-type="number" i18n-key="cql.field.fileid"/>
    </cql-query-field>

</atlassian-plugin>

 

 

Here's the Java code I've written so far (I'm not sure how to reference content properties from within the plugin code):

public class FileIdHandler extends BaseFieldHandler implements NumericFieldHandler<V2SearchQueryWrapper> {

    private static final String FILEID_FIELD = "fileid";

    public FileIdHandler() {
        super(FILEID_FIELD, true);
    }

    public V2SearchQueryWrapper build(RangeExpressionData rangeExpressionData, String value) {
        validateSupportedOp(rangeExpressionData.getOperator(),
                newHashSet(LESS, LESS_OR_EQUALS, NOT_EQUALS, EQUALS, GREATER_OR_EQUALS, GREATER));

        return wrapV2Search(new TermQuery(FILEID_FIELD, value), rangeExpressionData);
    }
}

 

 

Thanks!

1 answer

0 votes
Hakeem Olasupo
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
November 19, 2021

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events