2020-12-15 02:00:27 -06:00
|
|
|
$siteurl = "https://demo.teedy.io"
|
|
|
|
$headers = get-sitelogin
|
2020-12-16 16:30:56 -06:00
|
|
|
$global:taghash=@{}
|
2020-12-15 02:00:27 -06:00
|
|
|
function get-sitelogin(){
|
2020-12-17 02:25:33 -06:00
|
|
|
|
2020-12-15 02:00:27 -06:00
|
|
|
$tologin=@{username="demo";password="password";}
|
|
|
|
try{
|
|
|
|
$loginresponse = Invoke-webrequest -Uri "$siteurl/api/user/login" -Method POST -Body $tologin
|
|
|
|
} catch {
|
|
|
|
if(($error[0].ErrorDetails.Message|convertfrom-json|select-object -ExpandProperty Type) -eq 'ValidationCodeRequired'){
|
|
|
|
$mfacode = read-host "MFA Code Required for user. Please enter MFA Code:"
|
|
|
|
if($mfacode -match '\d{6}'){
|
|
|
|
$tologin.add('code',$mfacode)
|
|
|
|
$loginresponse = Invoke-webrequest -Uri "$siteurl/api/user/login" -Method POST -Body $tologin
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if($loginresponse.baseresponse.StatusCode -eq 200){
|
|
|
|
write-host "Logged in successfully"
|
|
|
|
}
|
|
|
|
$headercookie = ($loginresponse|select-object -ExpandProperty Headers)["Set-Cookie"]
|
|
|
|
$token,$null = $headercookie -split ";"
|
|
|
|
$headers=@{
|
|
|
|
Cookie = "$token"
|
|
|
|
}
|
|
|
|
return $headers
|
|
|
|
}
|
2020-12-16 16:30:56 -06:00
|
|
|
function New-Tag(){
|
|
|
|
param(
|
|
|
|
$TagName,
|
|
|
|
$ParentTagName="",
|
|
|
|
$color="3a87ad"
|
|
|
|
)
|
2020-12-17 02:25:33 -06:00
|
|
|
if($tagname.length -gt 36){
|
|
|
|
$tagname = $tagname.substring(0,36)
|
|
|
|
}
|
2020-12-16 16:30:56 -06:00
|
|
|
try{
|
2020-12-17 02:25:33 -06:00
|
|
|
if($color -eq "3a87ad"){
|
|
|
|
$colorcode="$color"
|
|
|
|
} else {
|
|
|
|
$colorcode = ("{0:X}" -f [drawing.Color]::FromName($color).toargb()).Substring(2)
|
|
|
|
}
|
2020-12-16 16:30:56 -06:00
|
|
|
}catch{
|
|
|
|
$error[0]
|
|
|
|
write-host "Unable to determine color code. Using default blue."
|
|
|
|
$colorcode = '3a87ad'
|
|
|
|
}
|
|
|
|
Update-TagHash
|
2020-12-17 02:25:33 -06:00
|
|
|
try{
|
2020-12-16 16:30:56 -06:00
|
|
|
if($global:taghash[$TagName]){
|
2020-12-17 02:25:33 -06:00
|
|
|
return "TAG $tagname already exists."
|
2020-12-16 16:30:56 -06:00
|
|
|
}
|
|
|
|
if((-not($global:taghash[$ParentTagName])) -and ($ParentTagName -ne '') ){
|
|
|
|
$parentTagID = (New-Tag -TagName $ParentTagName -ParentTagName '').id
|
|
|
|
} else{
|
|
|
|
if($ParentTagName -eq ''){
|
|
|
|
$parentTagID=''
|
|
|
|
} else {
|
|
|
|
$parentTagID=$global:taghash[$ParentTagName].id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$mytagtocreate = @{
|
2020-12-17 02:25:33 -06:00
|
|
|
name=$TagName -replace ' ','_' -replace ':','_';
|
2020-12-16 16:30:56 -06:00
|
|
|
parent=$parentTagID;
|
|
|
|
color="#$colorcode";
|
|
|
|
}
|
2020-12-17 02:25:33 -06:00
|
|
|
#$mytagtocreate
|
2020-12-16 16:30:56 -06:00
|
|
|
$newtagid = Invoke-RestMethod -uri "$siteurl/api/tag" -Headers $headers -Method PUT -body $mytagtocreate -ContentType 'application/x-www-form-urlencoded'
|
|
|
|
Update-TagHash
|
2020-12-17 02:25:33 -06:00
|
|
|
} catch {
|
|
|
|
$error[0]
|
|
|
|
}
|
|
|
|
$newtagid.id
|
2020-12-16 16:30:56 -06:00
|
|
|
}
|
|
|
|
function Remove-Tag(){
|
|
|
|
param(
|
|
|
|
[parameter(mandatory)][string]$TagName
|
|
|
|
)
|
|
|
|
$tagid = $taghash[$tagname].id
|
|
|
|
if($tagid){
|
|
|
|
$result = Invoke-RestMethod -uri "$siteurl/api/tag/$tagid" -Headers $headers -Method DELETE
|
|
|
|
Update-TagHash
|
|
|
|
} else {
|
|
|
|
$result = "$tagname not found"
|
|
|
|
#continue
|
|
|
|
}
|
|
|
|
$result
|
|
|
|
}
|
|
|
|
function update-tag(){
|
|
|
|
param(
|
|
|
|
[parameter(Mandatory)][string]$TagName,
|
|
|
|
[parameter()][string]$ParentTagName,
|
|
|
|
[parameter()][string]$Color
|
|
|
|
)
|
|
|
|
update-taghash
|
|
|
|
if($taghash[$TagName]){
|
|
|
|
$mytag = $taghash[$tagname]
|
|
|
|
if($color){
|
|
|
|
try{
|
|
|
|
$colorcode = ("{0:X}" -f [drawing.Color]::FromName($color).toargb() ).Substring(2)
|
|
|
|
$mytag.color = "#$colorcode"
|
|
|
|
} catch{
|
|
|
|
$error[0]
|
|
|
|
write-host "Color $color not found, not changing"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if($taghash[$ParentTagName]){
|
|
|
|
$mytag.parent = $taghash[$ParentTagName].id
|
|
|
|
}
|
|
|
|
$tagid=$mytag.id
|
|
|
|
$mytag
|
|
|
|
$topost=@{
|
|
|
|
name=$mytag.name;
|
|
|
|
id=$mytag.id;
|
|
|
|
parent=$mytag.parent;
|
|
|
|
color=$mytag.Color
|
|
|
|
}
|
|
|
|
Invoke-RestMethod -uri "$siteurl/api/tag/$tagid" -Headers $headers -Method POST -Body $topost -ContentType 'application/x-www-form-urlencoded'
|
|
|
|
} else {
|
|
|
|
write-host "$tagname not found"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function Update-TagHash(){
|
|
|
|
$taglist = Invoke-RestMethod -uri "$siteurl/api/tag/list" -Headers $headers -Method GET | select-object -ExpandProperty tags
|
|
|
|
#if($taglist){write-host "Got tags"}
|
|
|
|
$global:taghash=@{}
|
|
|
|
foreach($tag in $taglist){
|
|
|
|
$global:taghash.add($tag.name, @{ID=$tag.id;Name=$tag.name;Parent=$tag.parent;Color=$tag.color})
|
|
|
|
$global:taghash.add($tag.id, @{ID=$tag.id;Name=$tag.name;Parent=$tag.parent;Color=$tag.color})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function Attach-File(){
|
|
|
|
param(
|
|
|
|
$documentID,
|
|
|
|
$fileID
|
|
|
|
)
|
|
|
|
foreach($file in @($fileID)){
|
|
|
|
foreach($document in @($documentID)){
|
|
|
|
$toattach=@{
|
|
|
|
fileID=$file;
|
|
|
|
id=$document
|
|
|
|
}
|
|
|
|
Invoke-RestMethod -uri "$siteurl/api/file/$file/attach" -Headers $headers -Method POST -Body $toattach -ContentType 'application/x-www-form-urlencoded'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function New-Document(){
|
|
|
|
param(
|
|
|
|
$title,
|
|
|
|
$language='eng',
|
|
|
|
#$tags='',
|
|
|
|
$tag='',
|
|
|
|
$file
|
|
|
|
)
|
|
|
|
if($file){
|
|
|
|
$fileids= Add-File -Files $file
|
|
|
|
}
|
|
|
|
$tagid=$taghash[$tag].id
|
2020-12-17 02:25:33 -06:00
|
|
|
if(-not $tagid){
|
|
|
|
$tagid=new-tag -TagName $tag
|
|
|
|
}
|
2020-12-16 16:30:56 -06:00
|
|
|
$doctocreate=@{
|
|
|
|
title=$title;
|
|
|
|
language="eng";
|
|
|
|
tags= $tagid;
|
|
|
|
}
|
|
|
|
$doctocreate
|
|
|
|
$newdocid = (Invoke-RestMethod -uri "$siteurl/api/document" -Headers $headers -Method PUT -body $doctocreate -ContentType 'application/x-www-form-urlencoded').id
|
|
|
|
attach-file -documentid $newdocid -fileid $fileids
|
|
|
|
}
|
2020-12-17 02:25:33 -06:00
|
|
|
function New-multitagDocument(){
|
|
|
|
param(
|
|
|
|
$title,
|
|
|
|
$language='eng',
|
|
|
|
#$tags='',
|
|
|
|
$tag,
|
|
|
|
$file
|
|
|
|
)
|
|
|
|
if($file){
|
|
|
|
$fileids= Add-File -Files $file
|
|
|
|
}
|
|
|
|
update-taghash
|
|
|
|
$tagid=$taghash[$tag].id
|
|
|
|
if(-not $tagid){
|
|
|
|
$tagid=new-tag -TagName $tag
|
|
|
|
}
|
|
|
|
$doctocreate=@{
|
|
|
|
title=$title;
|
|
|
|
language=$language;
|
|
|
|
tags= @{'0f142bff-7922-4c70-8ad2-f492cfd2e5ec';'07002700-01d8-4547-80b9-c59a7c80f2d6'};
|
|
|
|
}
|
|
|
|
$doctocreate
|
|
|
|
$newdocid = (Invoke-RestMethod -uri "$siteurl/api/document" -Headers $headers -Method PUT -body $doctocreate -ContentType 'application/x-www-form-urlencoded').id
|
|
|
|
attach-file -documentid $newdocid -fileid $fileids
|
|
|
|
}
|
2020-12-16 16:30:56 -06:00
|
|
|
Function Add-File(){
|
|
|
|
param(
|
|
|
|
$Files
|
|
|
|
)
|
|
|
|
$fileids = @()
|
|
|
|
foreach($file in $files){
|
|
|
|
if(test-path $file){
|
|
|
|
$toupload = get-item $file
|
|
|
|
$fileids += (Invoke-RestMethod -uri "$siteurl/api/file" -Headers $headers -Method PUT -form @{file=$toupload} -ContentType "multipart/form-data").id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$fileids
|
|
|
|
}
|
2020-12-17 02:25:33 -06:00
|
|
|
function Add-Directory(){
|
|
|
|
param(
|
|
|
|
$AnchorTag='DirUploadTest',
|
|
|
|
$Directory='C:\Users\dan\teedytest',
|
|
|
|
[switch]$DontUseExistingTags,
|
|
|
|
[switch]$OnlyCreateTags
|
|
|
|
)
|
|
|
|
Update-TagHash
|
|
|
|
if(-not($taghash[$AnchorTag])){
|
|
|
|
new-tag -TagName $AnchorTag
|
|
|
|
}
|
|
|
|
$directories = get-childitem -Path $directory -Directory -Recurse
|
|
|
|
foreach($mydirectory in $directories){
|
|
|
|
$myparts = @(($mydirectory.fullname -replace [regex]::escape($directory),'').substring(1) -split '\\')
|
|
|
|
#$mydirectory.FullName
|
|
|
|
#$myparts.count
|
|
|
|
for($i=0;$i -lt $myparts.count;$i++){
|
|
|
|
$myparts[$i]=$myparts[$i] -replace ' ','_' -replace ':',''
|
|
|
|
if(-not($taghash[$myparts[$i]])){
|
|
|
|
if($i -eq 0){
|
|
|
|
write-host "Creating Tag $($myparts[$i])"
|
|
|
|
new-tag -TagName $myparts[$i] -ParentTagName $AnchorTag
|
|
|
|
} else{
|
|
|
|
write-host "Creating Tag $($myparts[$i])"
|
|
|
|
new-tag -TagName $myparts[$i] -ParentTagName $myparts[$i-1]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$newtagname = $myparts[-1]
|
|
|
|
if(-not $OnlyCreateTags){
|
|
|
|
$files = get-childitem -Path $mydirectory.FullName -File | select-object -ExpandProperty FullName
|
|
|
|
if($files.count -gt 0){
|
|
|
|
if((split-path $files[0] -parent) -eq $Directory){
|
|
|
|
New-Document -title $mydirectory.FullName -tag $AnchorTag -file $files
|
|
|
|
} else {
|
|
|
|
New-Document -title $mydirectory.FullName -tag $newtagname -file $files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-15 02:00:27 -06:00
|
|
|
$documentlist = Invoke-RestMethod -uri "$siteurl/api/document/list" -Headers $headers -Method GET | select-object -ExpandProperty documents
|
|
|
|
if($documentlist){write-host "Got docs"}
|
|
|
|
$filelist = Invoke-RestMethod -uri "$siteurl/api/file/list" -Headers $headers -Method GET |Select-Object -ExpandProperty Files
|
|
|
|
if($filelist){write-host "Got files"}
|
2020-12-15 02:01:54 -06:00
|
|
|
$logoutresponse = Invoke-webrequest -Uri "$siteurl/api/user/logout" -Headers $headers -Method POST
|
2020-12-15 02:00:27 -06:00
|
|
|
if($logoutresponse.BaseResponse.StatusCode -eq 200){
|
|
|
|
write-host "logged out successfully"
|
|
|
|
}
|