
Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
History is littered with hundreds of conflicts over the future of a community, group, location or business that were "resolved" when one of the parties stepped ahead and destroyed what was there. With the original point of contention destroyed, the debates would fall to the wayside. Archive Team believes that by duplicated condemned data, the conversation and debate can continue, as well as the richness and insight gained by keeping the materials. Our projects have ranged in size from a single volunteer downloading the data to a small-but-critical site, to over 100 volunteers stepping forward to acquire terabytes of user-created data to save for future generations.
The main site for Archive Team is at archiveteam.org and contains up to the date information on various projects, manifestos, plans and walkthroughs.
This collection contains the output of many Archive Team projects, both ongoing and completed. Thanks to the generous providing of disk space by the Internet Archive, multi-terabyte datasets can be made available, as well as in use by the Wayback Machine, providing a path back to lost websites and work.
Our collection has grown to the point of having sub-collections for the type of data we acquire. If you are seeking to browse the contents of these collections, the Wayback Machine is the best first stop. Otherwise, you are free to dig into the stacks to see what you may find.
The Archive Team Panic Downloads are full pulldowns of currently extant websites, meant to serve as emergency backups for needed sites that are in danger of closing, or which will be missed dearly if suddenly lost due to hard drive crashes or server failures.
We've had a few users mention they were interested in using Cog with Microsoft Teams. To do so we'd have to write another chat adapter, just like we have for Slack and Hipchat. This includes raw communication with their API, but also a template processor, for converting greenbar directives into a format supported by Slack.
So we can better gauge interest,👍 this issue if you would use this adapter.
Implementation notes
Cog adapters are written in Elixir and are compiled along with the rest of Cog. However, they have been properly isolated from the rest of the codebase, so writing a new adapter is fairly straightforward. You'll need to implement both a chat provider and a template processor.
Chat provider
Chat providers implement callbacks defined in lib/cog/chat/provider.ex; things like looking up a user or a room and sending messages. Take a look at the Slack provider as an example: /lib/cog/chat/slack/provider.ex. I haven't seen an Elixir library for talking to the Microsoft Teams API yet, so you may need to implement your own similar to the slack lib we use.
Template processor
Cog uses greenbar templates to provide a unified templating language for all chat providers regardless of what formats they expect your messages to be in (for instance Slack accepts Markdown, while Hipchat accepts HTML). To correctly render templates into a format Microsoft Teams understands you'll have to implement a template processor, which will convert maps like
%{"name" => "bold", "text" => text}to a string of Markdown like"*#{text}*". Because Microsoft Teams supports markdown messages, you should be able to reuse most of the Slack template processor.