-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hide community doc links #1302
base: master
Are you sure you want to change the base?
hide community doc links #1302
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, @dragazo! It works but I am a little wary about including servicePath
in the metadata and then using this elsewhere...
@@ -45,6 +45,9 @@ BlockMorph.prototype.showHelp = async function() { | |||
metadata = isServiceURL ? | |||
await Services.getServiceMetadataFromURL(serviceName) : | |||
await Services.getServiceMetadata(serviceName); | |||
|
|||
const isFSService = !!metadata.servicePath; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm... It isn't obvious to me that this should be exposed in the metadata (which makes me a bit reluctant to have other features depend on it). Perhaps there is a better way to capture this information (ie, if it has official documentation) in the metadata and then use that here instead.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@brollb So PyBlox currently uses this when generating static wrappers, but that's only when building the wrappers for a new release, so we can change it without breaking anything. But just like here, that's only to filter to official services, so maybe just an isOfficial
boolean would be better then - I'll just have to double check that we weren't using it for anything important in doc gen.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
agreed. I suspect there might be something better than isOfficial
but I am not exactly sure what just yet.
My issue with isOfficial
is that the server-side has been decoupling these further and further and there may be a more general term rather than isOfficial
for 3rd party service hosts to designate that they have documentation. (Even in the current server, you can specify additional URLs to use for services and nest them under a dedicated category.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@brollb 3rd party as in similar to Community services? Or as in extra services only available on their deployment? (If it's like Community services, we probably don't want to be putting unmoderated external links even if they do have docs)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For example, you could make services.c2stem.org
which could be nested under an arbitrary c2stem
category. Here is an example services server written in Python: https://github.com/NetsBlox/Custom-Python-Services.
In the new cloud, they can be edited using the CLI here. Basically, they can be defined for individual users or class/groups. When they are registered, they require a URL and categories to be nested under. This allows them to show up in the NetsBlox browser for the affected users and they can implement basic request-reply (no message passing). If they need access to user information and message passing capabilities, they must be authorized by an admin of the NetsBlox cloud. This authorizes them to use some protected endpoints which should only be used by trusted servers as they can look up user states, send messages, etc.
Hides doc links for community services in the NetsBlox
help...
menu (these are currently not hosted in the service docs). Solves issue 3314 from the NetsBlox server repo.