craigtrim / slackbot-helper

Helper Functions for Slackbots
0 stars 0 forks source link

Defect in Text Retrieval from Events #10

Open craigtrim opened 1 year ago

craigtrim commented 1 year ago

Given this event

{
   "blocks":[
      {
         "block_id":"HR0",
         "text":{
            "emoji":true,
            "text":"Keep an eye on my moves.",
            "type":"plain_text"
         },
         "type":"section"
      },
      {
         "block_id":"cWmZy",
         "type":"divider"
      },
      {
         "block_id":"PSs",
         "elements":[
            {
               "text":"<@U04HLMTUDSR> Show me everything with sun in it.",
               "type":"mrkdwn",
               "verbatim":false
            }
         ],
         "type":"context"
      }
   ],
   "channel":"C04LPA56H8C",
   "team":"T045AR44M70",
   "text":"This content can't be displayed.",
   "ts":1675053514.430099,
   "type":"app_mention",
   "user":"U04LRAW3G0K"
}

Only the first text element is extracted.

{
   "analysis":{
      "commands":[

      ],
      "meta_mode":"human2bot",
      "meta_type":"H2B_SINGLE",
      "text_1":"Keep an eye on my moves.",
      "text_2":"Keep an eye on my moves.",
      "user_all":[
         "U04HLMTUDSR"
      ],
      "user_source":"U04LRAW3G0K",
      "user_target":"U04HLMTUDSR"
   },
   "event":{
      "blocks":[
         {
            "block_id":"HR0",
            "text":{
               "emoji":true,
               "text":"Keep an eye on my moves.",
               "type":"plain_text"
            },
            "type":"section"
         },
         {
            "block_id":"cWmZy",
            "type":"divider"
         },
         {
            "block_id":"PSs",
            "elements":[
               {
                  "text":"<@U04HLMTUDSR> Show me everything with sun in it.",
                  "type":"mrkdwn",
                  "verbatim":false
               }
            ],
            "type":"context"
         }
      ],
      "channel":"C04LPA56H8C",
      "team":"T045AR44M70",
      "text":"This content can't be displayed.",
      "ts":1675053514.430099,
      "type":"app_mention",
      "user":"U04LRAW3G0K"
   },
   "membership":"f3ca711a_a057_11ed_8a4a_4c1d96716627"
}