Closed heythisischris closed 3 months ago
We'll look at this Monday when we review https://github.com/orgs/EqualifyEverything/projects/2
In the meantime, it would also be good to get @azdak's eyes on it. Very curious what he thinks. Before anything is in prod we definitely need to have two folks who understand the tech, and I'm not sure I'll be the second this time.
Finally had a bit of time to review. A few notes/questions:
get/updates
. We didn't discuss get/updates
on our call. Returning a list of updates between set dates would be vital to creating our chart of issues over time. Still curious if @azdak has anything to offer, but I'm happy to go over these questions on Monday's call or feel free to respond here. Thanks! Great work!
@heythisischris answers:
@bbertucc response: Good to go!
Processed buildout payment 2 of 2 ($2,250) on @heythisischris request with the note that we still need to get /help
done and the API fully integrated with the frontend.
Closing this in favor of #395, since we're now in maintenance land.
Overview of tasks
At the beginning of April, I was assigned a bounty to refactor & migrate the Equalify API from PHP/MySQL over to Node.js/PostgreSQL.
Although most of the heavy lifting has been completed, there are a few crucial endpoints that still need to be built. These include some of the most important and foundational endpoints for Equalify. I talked with @bbertucc for an hour on May 13th, 2024 to better understand the remaining work (here's a Zoom recording of the talk, password is
a6HZ^mSu
: https://us06web.zoom.us/rec/share/7GJqcZDsj3w4_o_-_WRIheKpgF_4F_jDmw5ctLMeH7YEBMDIVPmXJoSyjKiZd0s.0M28uVYFATi_khH-?startTime=1715625788000). After digesting the conversation and sleeping on it a bit, I wrote out this set of requirements to complete a minimum-viable API for our v1 launch.Add/get scans
We'd like to be able to kick-off a scan for a given website or sitemap. This requires initiating a scan with the
equalify-scan
, synchronously returning aqueued_scan
ID, and asynchronously waiting for a response fromequalify-scan
.Once the scan completes, we can delete the
queued_scan
and create a result!We'd also like to be able to return all queued scans (simple enough).
Add/get results
We'd like to be able to add results by digesting the output from a fulfilled
queued_scan
in our database. We'll have to digest the Equalify Schema output, replace integer IDs w/ UUIDs, and map existing resources to their corresponding ID. This will take a small amount of brain damage.We'd also like to be able to return results in the Equalify Schema! This might be difficult for extremely large datasets without some form of pagination or compression (i.e. WordPress's 0.5 GB dataset). It's crucial that we follow the schema, however, because we'd be able to integrate the API across many services and improve developer experience ten-fold.
Furthermore, we want to allow developers to pass "filters" into the
/get/results
API request which narrow down results based onpropertyIds
,urlIds
,nodeIds
,nodeUpdateIds
,messageIds
, andtagIds
. We will leverage Postgraphile to handle filtering SQL logic for us.Tracking scans over time
We'd like for users to be able to re-scan a website and see what issues have been "equalified" or "unequalified" over time. We'll make sure to only reference results that have their source set to
scan
, because other sources could cause conflicts (i.e. the Chrome extension or a manual audit).If an issue that was previously "unequalified" no longer appears in the scan results, we will equalify it! However, if an issue that was previous "equalified" suddenly appears in the scan results again, we will unequalify it.
This will be a manual process at first- eventually, we might automate this to run daily via some user-defined CRON job.
Full-featured LLM integration
The current LLM integration is a very barebones proof-of-concept. It'll be much easier to refine/expand once the rest of the API is built out. I intend of developing a full featured "assistant" which suggests code fixes to developers for a given website and set of flagged issues according to accessibility standards defined by Deque University. We'll likely want to support streamed responses. I'm even toying with the idea of fine-tuning our own OpenAI GPT-3.5-Turbo model... this could be enough of a distinct value add to encourage developers to flock over to our framework rather than copy/pasting questions into ChatGPT themselves. We'll see.
Integrate API w/ frontend!
I already began the process of assisting @wilsuriel03 with connecting endpoints to the new frontend. There will be quite a few new endpoints to integrate, so I'll be available and potentially contribute some code myself to assist in the process.
Checklist
Remaining tasks:
/add/results
/get/results
/add/scans
/get/scans
/help
Cost & maintenance
The requested bounty is $4,500 for the second (and final) phase of the minimum-viable API build-out.
The requested maintenance cost is $750 per month. I'll be immediately available for any issues that might arise or technical support that becomes necessary. I'll also regularly engage with the open source community and help onboard all newcomers!
Timeline
I intend to have this completed and ready for v1 usage by June 1st, 2024. I'm also earmarking a few weeks into June for inevitable debugging/technical support during our v1 production rollout.