mirror of
https://github.com/sasjs/core.git
synced 2025-12-10 14:04:36 +00:00
156 lines
4.5 KiB
SAS
156 lines
4.5 KiB
SAS
/**
|
|
@file mv_deletefoldermember.sas
|
|
@brief Deletes an item in a Viya folder
|
|
@details If not executed in Studio 5+ will expect oauth token in a global
|
|
macro variable (default ACCESS_TOKEN).
|
|
|
|
filename mc url "https://raw.githubusercontent.com/sasjs/core/main/all.sas";
|
|
%inc mc;
|
|
|
|
%mv_createwebservice(path=/Public/test, name=blah)
|
|
%mv_deletejes(path=/Public/test, name=blah)
|
|
|
|
|
|
@param [in] path= ()
|
|
The full path of the folder containing the item to be deleted
|
|
@param [in] name= The name of the item to be deleted
|
|
@param [in] contenttype= The contenttype of the item, eg: file, jobDefinition
|
|
@param [in] access_token_var= (ACCESS_TOKEN)
|
|
The global macro variable to contain the access token
|
|
@param [in] grant_type= (sas_services)
|
|
valid values are "password" or "authorization_code" (unquoted).
|
|
|
|
|
|
@version VIYA V.03.04
|
|
@author Allan Bowe, source: https://github.com/sasjs/core
|
|
|
|
<h4> SAS Macros </h4>
|
|
@li mp_abort.sas
|
|
@li mf_getplatform.sas
|
|
@li mf_getuniquefileref.sas
|
|
@li mf_getuniquelibref.sas
|
|
@li mf_isblank.sas
|
|
|
|
**/
|
|
|
|
%macro mv_deletefoldermember(path=
|
|
,name=
|
|
,contenttype=
|
|
,access_token_var=ACCESS_TOKEN
|
|
,grant_type=sas_services
|
|
);
|
|
%local oauth_bearer;
|
|
%if &grant_type=detect %then %do;
|
|
%if %symexist(&access_token_var) %then %let grant_type=authorization_code;
|
|
%else %let grant_type=sas_services;
|
|
%end;
|
|
%if &grant_type=sas_services %then %do;
|
|
%let oauth_bearer=oauth_bearer=sas_services;
|
|
%let &access_token_var=;
|
|
%end;
|
|
|
|
%mp_abort(iftrue=(&grant_type ne authorization_code and &grant_type ne password
|
|
and &grant_type ne sas_services
|
|
)
|
|
,mac=&sysmacroname
|
|
,msg=%str(Invalid value for grant_type: &grant_type)
|
|
)
|
|
%mp_abort(iftrue=(%mf_isblank(&path)=1)
|
|
,mac=&sysmacroname
|
|
,msg=%str(path value must be provided)
|
|
)
|
|
%mp_abort(iftrue=(%mf_isblank(&name)=1)
|
|
,mac=&sysmacroname
|
|
,msg=%str(name value must be provided)
|
|
)
|
|
%mp_abort(iftrue=(%length(&path)=1)
|
|
,mac=&sysmacroname
|
|
,msg=%str(path value must be provided)
|
|
)
|
|
|
|
options noquotelenmax;
|
|
|
|
%local base_uri; /* location of rest apis */
|
|
%let base_uri=%mf_getplatform(VIYARESTAPI);
|
|
|
|
%put &sysmacroname: fetching details for &path ;
|
|
%local fname1;
|
|
%let fname1=%mf_getuniquefileref();
|
|
proc http method='GET' out=&fname1 &oauth_bearer
|
|
url="&base_uri/folders/folders/@item?path=&path";
|
|
%if &grant_type=authorization_code %then %do;
|
|
headers "Authorization"="Bearer &&&access_token_var";
|
|
%end;
|
|
run;
|
|
%if &SYS_PROCHTTP_STATUS_CODE=404 %then %do;
|
|
%put &sysmacroname: Folder &path NOT FOUND - nothing to delete!;
|
|
%return;
|
|
%end;
|
|
%else %if &SYS_PROCHTTP_STATUS_CODE ne 200 %then %do;
|
|
/*data _null_;infile &fname1;input;putlog _infile_;run;*/
|
|
%mp_abort(mac=&sysmacroname
|
|
,msg=%str(&SYS_PROCHTTP_STATUS_CODE &SYS_PROCHTTP_STATUS_PHRASE)
|
|
)
|
|
%end;
|
|
|
|
%put &sysmacroname: grab the follow on link ;
|
|
%local libref1;
|
|
%let libref1=%mf_getuniquelibref();
|
|
libname &libref1 JSON fileref=&fname1;
|
|
data _null_;
|
|
set &libref1..links;
|
|
if rel='members' then call symputx('mref',quote("&base_uri"!!trim(href)),'l');
|
|
run;
|
|
|
|
/* get the children */
|
|
%local fname1a;
|
|
%let fname1a=%mf_getuniquefileref();
|
|
proc http method='GET' out=&fname1a &oauth_bearer
|
|
url=%unquote(%superq(mref));
|
|
%if &grant_type=authorization_code %then %do;
|
|
headers "Authorization"="Bearer &&&access_token_var";
|
|
%end;
|
|
run;
|
|
%if &SYS_PROCHTTP_STATUS_CODE ne 200 %then %do;
|
|
%put &=sysmacroname &=SYS_PROCHTTP_STATUS_CODE &=SYS_PROCHTTP_STATUS_PHRASE;
|
|
%end;
|
|
%local libref1a;
|
|
%let libref1a=%mf_getuniquelibref();
|
|
libname &libref1a JSON fileref=&fname1a;
|
|
%local uri found;
|
|
%let found=0;
|
|
/* %put Getting object uri from &libref1a..items; */
|
|
data _null_;
|
|
length contenttype name $1000;
|
|
set &libref1a..items;
|
|
if contenttype="&contenttype" and upcase(name)="%upcase(&name)" then do;
|
|
call symputx('uri',uri,'l');
|
|
call symputx('found',1,'l');
|
|
end;
|
|
run;
|
|
%if &found=0 %then %do;
|
|
%put NOTE:;%put NOTE- &sysmacroname: &path/&name NOT FOUND;%put NOTE- ;
|
|
%return;
|
|
%end;
|
|
proc http method="DELETE" url="&base_uri&uri" &oauth_bearer;
|
|
headers
|
|
%if &grant_type=authorization_code %then %do;
|
|
"Authorization"="Bearer &&&access_token_var"
|
|
%end;
|
|
"Accept"="*/*";/**/
|
|
run;
|
|
%if &SYS_PROCHTTP_STATUS_CODE ne 204 %then %do;
|
|
data _null_; infile &fname2; input; putlog _infile_;run;
|
|
%mp_abort(mac=&sysmacroname
|
|
,msg=%str(&SYS_PROCHTTP_STATUS_CODE &SYS_PROCHTTP_STATUS_PHRASE)
|
|
)
|
|
%end;
|
|
%else %put &sysmacroname: &path/&name(&contenttype) successfully deleted;
|
|
|
|
/* clear refs */
|
|
filename &fname1 clear;
|
|
libname &libref1 clear;
|
|
filename &fname1a clear;
|
|
libname &libref1a clear;
|
|
|
|
%mend mv_deletefoldermember; |