All files / plugins AskPlantnet.js

64.74% Statements 101/156
44.44% Branches 8/18
50% Functions 5/10
64.74% Lines 101/156

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 1571x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x     1x 1x 1x 3x 3x 1x 1x 3x 3x 1x 1x     1x 1x     1x 1x 3x 3x 3x 3x 3x 3x 3x 3x     3x 3x     3x 3x 3x     3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 2x 2x 2x 2x 2x 3x 1x 1x 1x 1x               3x     3x 1x 1x           1x 1x           1x 1x 1x 1x 1x 1x 1x 1x 1x 3x 3x 3x 3x 3x 3x                             3x 1x 1x                     1x  
import {arrayIsNotEmpty, clone, isSet, loadJsonResource} from "../lib/Common.js";
import {firstImageOf, postHtmlOf, postImageOf, postInfoOf, postLinkOf, postTextOf} from "../domain/post.js";
import {dataSimulationDirectory, pluginReject, pluginResolve} from "../services/BotService.js";
import {IDENTIFY_RESULT} from "../servicesExternal/PlantnetApiService.js";
 
export default class AskPlantnet {
    constructor(config, loggerService, blueskyService, plantnetCommonService, plantnetApiService) {
        this.isAvailable = false;
        this.logger = loggerService.getLogger().child({label: 'AskPl@ntNet'});
        this.blueskyService = blueskyService;
        this.plantnetSimulate = (config.bot.plantnetSimulate === true);
        this.plantnetCommonService = plantnetCommonService;
        this.plantnetApiService = plantnetApiService;
        try {
            this.asks = loadJsonResource('src/data/askPlantnet.json');
            this.isAvailable = plantnetApiService.isReady();
            this.logger.info((this.isAvailable ? "available" : "not available") +
                " with " + this.asks.length + " asks");
        } catch (exception) {
            plantnetCommonService.logError("init", exception);
        }
    }
 
    getName() {
        return "AskPlantnet";
    }
 
    getPluginTags() {
        return ["#BeSAskPlantnet", "#IndentificationDePlantes"].join(' ');
    }
 
    getQuestions() {
        return clone(this.asks);
    }
 
    isReady() {
        return this.isAvailable;
    }
 
    async process(config) {
        const pluginName = this.getName();
        let {doSimulate, simulateIdentifyCase, context} = config;
        const {plantnetSimulate, plantnetCommonService, plantnetApiService, blueskyService, logger} = this;
        const doSimulateIdentify = plantnetSimulate || isSet(simulateIdentifyCase);// if at least one want to simulate then simulate
        let candidate = null;
        try {
            const candidate = await this.searchNextAsk(config);
            if (candidate === null) {
                return plantnetCommonService.resultNoCandidate(pluginName, context);
            }
            const parentPost = await blueskyService.getParentPostOf(candidate.uri);
            if (parentPost === null) {
                return plantnetCommonService.resultNoCandidateParent(candidate, context);
            }
            logger.debug(`CANDIDATE's PARENT:${parentPost ? postTextOf(parentPost) : "NONE"}`);
            const parentPhoto = firstImageOf(parentPost);
            if (!parentPhoto) {
                return this.rejectNoCandidateParentImage(parentPost, context);
            }
            logger.debug(`post Candidate Parent : ${postLinkOf(parentPost)}\n` +
                `\t${postInfoOf(parentPost)}\n` +
                `\t${postImageOf(parentPhoto)}`, context);
 
            const tags = this.getPluginTags();
            const identifyOptions = {
                "imageUrl": parentPhoto?.fullsize,
                doSimulate,
                doSimulateIdentify,
                simulateIdentifyCase,
                candidate,
                tags,
                context
            };
            const {
                result,
                plantnetResult = null
            } = await plantnetApiService.plantnetIdentify(identifyOptions);
            if (result === IDENTIFY_RESULT.OK) {
                const {scoredResult, firstImageOriginalUrl, firstImageText} = plantnetResult;
                return await plantnetCommonService.replyToWithIdentificationResult(candidate,
                    {tags, doSimulate, context},
                    {scoredResult, firstImageOriginalUrl, firstImageText}
                );
            } else if (result === IDENTIFY_RESULT.BAD_SCORE) {
                return await plantnetCommonService.handleWithoutScoredResult(
                    {doSimulate, "candidate": parentPost, "replyTo": candidate, "muteAuthor": false, context}
                );
            } else {
                if (result !== IDENTIFY_RESULT.NONE) {
                    logger.warn(`unable to handle plantnetService.plantnetIdentify result:${result} so consider it as NONE`);
                }
                return await plantnetCommonService.handleWithNoIdentificationResult(
                    {doSimulate, "candidate": parentPost, "replyTo": candidate, "muteAuthor": false, context}
                );
            }
        } catch (err) {
            return this.rejectWithIdentifyError(candidate, err, context);
        }
    }
 
    rejectNoCandidateParentImage(parentPost, context) {
        const reasonText = `aucune image pour Pl@ntNet dans ${postTextOf(parentPost)}`;
        const reasonHtml = `<b>Post</b>: <div class="bg-warning">${postHtmlOf(parentPost)}</div><b>Info</b>: aucune image`;
        this.logger.info(reasonText, context);
        return Promise.reject(pluginReject(reasonText, reasonHtml, 202, "no candidate parent image"));
    }
 
    resultNoCandidateParent(candidate, context) {
        const resultTxt = `aucun parent pour ${postTextOf(candidate)}`;
        const resultHtml = `aucun parent pour ${postHtmlOf(candidate)}`;
        this.logger.info(resultTxt, context);
        return Promise.resolve(pluginResolve(resultTxt, resultHtml, 202))
    }
 
    /**
     * iterate through plugin.ask to search next candidate
     *
     * @param config
     * @param bookmark
     * @returns {Promise<unknown>}
     */
    async searchNextAsk(config, bookmark = 0) {
        const {context, doSimulateSearch} = config;
        const {asks, blueskyService, logger} = this;
        if (doSimulateSearch) {
            await blueskyService.login();
            return Promise.resolve(loadJsonResource(`${dataSimulationDirectory}/blueskyPostFakeAskBot.json`));
        }
        let searchQuery = asks[bookmark];
        const hasNoReply = true;
        const isNotMuted = true;
        const maxHoursOld = 72;// now-24h ... now
        const askResults = await blueskyService.searchPosts({searchQuery, hasNoReply, isNotMuted, maxHoursOld});
        logger.info(`${askResults.length} candidate(s)`, context);
        if (arrayIsNotEmpty(askResults)) {
            return Promise.resolve(askResults[0]);
        }
        if (bookmark + 1 < this.asks.length) {
            const response = await this.searchNextAsk(config, bookmark + 1);
            return Promise.resolve(response);
        }
        return Promise.resolve(null);
    }
 
    rejectWithIdentifyError(candidate, err, context) {
        let plantnetTxtError = "Impossible d'identifier l'image avec Ask-Pl@ntNet";
        let plantnetHtmlError = plantnetTxtError;
        if (isSet(candidate)) {
            plantnetTxtError = `Impossible d'identifier l'image du parent de ${postLinkOf(candidate)} avec Ask-Pl@ntNet`;
            plantnetHtmlError = `<b>Post</b>: <div class="bg-warning">parent de ${postHtmlOf(candidate)}</div>` +
                `<b>Erreur</b>: impossible d'identifier l'image avec Ask-Pl@ntNet`;
        }
        this.logger.error(`${plantnetTxtError} : ${err.message}`, context);
        return Promise.reject(pluginReject(plantnetTxtError, plantnetHtmlError, 500, "unable to identify"));
    }
}