ncloud.ts 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. /*export interface Pointer {
  2. __type: string;
  3. className: string;
  4. objectId?: string; // 这里保持 objectId 作为可选字段
  5. //QuestionnaireId?: string; // 自定义主键
  6. //QuestionId?: string; // 自定义主键
  7. //OptionId?: string; // 自定义主键
  8. //_UserId?: string; // 自定义主键
  9. }
  10. export class CloudObject {
  11. id: string | null = null; // 数据库生成的 objectId
  12. className: string;
  13. createdAt: string | null = null;
  14. updatedAt: string | null = null;
  15. data: Record<string, any> = {};
  16. // 新增的自定义主键
  17. QuestionnaireId?: string;
  18. QuestionId?: string;
  19. OptionId?: string;
  20. _UserId?: string;
  21. constructor(className: string) {
  22. this.className = className;
  23. }
  24. toPointer(): Pointer {
  25. // 使用自定义主键生成指针
  26. let pointer: Pointer = { "__type": "Pointer", "className": this.className };
  27. // 根据类名设置相应的 ID
  28. switch (this.className) {
  29. case "Questionnaire":
  30. pointer.objectId = this.QuestionnaireId || "";
  31. break;
  32. case "Question":
  33. pointer.objectId = this.QuestionId || "";
  34. break;
  35. case "Option":
  36. pointer.objectId = this.OptionId || "";
  37. break;
  38. case "_User":
  39. pointer.objectId = this._UserId || "";
  40. break;
  41. default:
  42. pointer.objectId = this.id || ""; // 保持 objectId 作为后备
  43. }
  44. return pointer;
  45. }
  46. set(json: Record<string, any>) {
  47. Object.keys(json).forEach(key => {
  48. if (["objectId", "id", "createdAt", "updatedAt", "ACL"].includes(key)) {
  49. return;
  50. }
  51. this.data[key] = json[key];
  52. });
  53. }
  54. get(key: string) {
  55. return this.data[key] || null;
  56. }
  57. async save(): Promise<this> {
  58. let method = "POST";
  59. let url = `http://dev.fmode.cn:1337/parse/classes/${this.className}`;
  60. // 更新
  61. if (this.id) {
  62. url += `/${this.id}`;
  63. method = "PUT";
  64. }
  65. const body = JSON.stringify(this.data);
  66. const response = await fetch(url, {
  67. headers: {
  68. "content-type": "application/json;charset=UTF-8",
  69. "x-parse-application-id": "dev"
  70. },
  71. body: body,
  72. method: method,
  73. mode: "cors",
  74. credentials: "omit"
  75. });
  76. const result = await response.json();
  77. if (result?.error) {
  78. console.error(result.error);
  79. }
  80. if (result?.objectId) {
  81. this.id = result.objectId;
  82. }
  83. return this;
  84. }
  85. async destroy(): Promise<boolean> {
  86. if (!this.id) return false;
  87. const response = await fetch(`http://dev.fmode.cn:1337/parse/classes/${this.className}/${this.id}`, {
  88. headers: {
  89. "x-parse-application-id": "dev"
  90. },
  91. method: "DELETE",
  92. mode: "cors",
  93. credentials: "omit"
  94. });
  95. const result = await response.json();
  96. if (result) {
  97. this.id = null;
  98. }
  99. return true;
  100. }
  101. }
  102. export class CloudQuery {
  103. className: string;
  104. whereOptions: Record<string, any> = {};
  105. constructor(className: string) {
  106. this.className = className;
  107. }
  108. greaterThan(key: string, value: any) {
  109. if (!this.whereOptions[key]) this.whereOptions[key] = {};
  110. this.whereOptions[key]["$gt"] = value;
  111. return this;
  112. }
  113. greaterThanAndEqualTo(key: string, value: any) {
  114. if (!this.whereOptions[key]) this.whereOptions[key] = {};
  115. this.whereOptions[key]["$gte"] = value;
  116. return this;
  117. }
  118. lessThan(key: string, value: any) {
  119. if (!this.whereOptions[key]) this.whereOptions[key] = {};
  120. this.whereOptions[key]["$lt"] = value;
  121. return this;
  122. }
  123. lessThanAndEqualTo(key: string, value: any) {
  124. if (!this.whereOptions[key]) this.whereOptions[key] = {};
  125. this.whereOptions[key]["$lte"] = value;
  126. return this;
  127. }
  128. equalTo(key: string, value: any) {
  129. this.whereOptions[key] = value;
  130. return this;
  131. }
  132. async get(id: string): Promise<Record<string, any>> {
  133. const url = `http://dev.fmode.cn:1337/parse/classes/${this.className}/${id}`;
  134. const response = await fetch(url, {
  135. headers: {
  136. "x-parse-application-id": "dev"
  137. },
  138. method: "GET",
  139. mode: "cors",
  140. credentials: "omit"
  141. });
  142. const json = await response.json();
  143. return json || {};
  144. }
  145. async find(): Promise<CloudObject[]> {
  146. let url = `http://dev.fmode.cn:1337/parse/classes/${this.className}?`;
  147. if (Object.keys(this.whereOptions).length) {
  148. const whereStr = JSON.stringify(this.whereOptions);
  149. url += `where=${encodeURIComponent(whereStr)}`;
  150. }
  151. const response = await fetch(url, {
  152. headers: {
  153. "x-parse-application-id": "dev"
  154. },
  155. method: "GET",
  156. mode: "cors",
  157. credentials: "omit"
  158. });
  159. const json = await response.json();
  160. return json?.results.map((item: any) => {
  161. const cloudObject = new CloudObject(this.className);
  162. cloudObject.set(item);
  163. cloudObject.id = item.objectId;
  164. cloudObject.createdAt = item.createdAt;
  165. cloudObject.updatedAt = item.updatedAt;
  166. return cloudObject;
  167. }) || [];
  168. }
  169. async first(): Promise<CloudObject | null> {
  170. let url = `http://dev.fmode.cn:1337/parse/classes/${this.className}?`;
  171. if (Object.keys(this.whereOptions).length) {
  172. const whereStr = JSON.stringify(this.whereOptions);
  173. url += `where=${encodeURIComponent(whereStr)}&limit=1`;
  174. } else {
  175. url += `limit=1`;
  176. }
  177. const response = await fetch(url, {
  178. headers: {
  179. "x-parse-application-id": "dev"
  180. },
  181. method: "GET",
  182. mode: "cors",
  183. credentials: "omit"
  184. });
  185. const json = await response.json();
  186. const exists = json?.results?.[0] || null;
  187. if (exists) {
  188. const cloudObject = new CloudObject(this.className);
  189. cloudObject.set(exists);
  190. cloudObject.id = exists.objectId;
  191. cloudObject.createdAt = exists.createdAt;
  192. cloudObject.updatedAt = exists.updatedAt;
  193. return cloudObject;
  194. }
  195. return null;
  196. }
  197. }*/
  198. // CloudObject.ts
  199. export interface Pointer {
  200. __type: string;
  201. className: string;
  202. objectId?: string; // 这里保持 objectId 作为可选字段
  203. }
  204. export class CloudObject {
  205. id: string | null = null;
  206. className: string;
  207. data: Record<string, any> = {};
  208. createdAt: string | null = null;
  209. updatedAt: string | null = null;
  210. constructor(className: string) {
  211. this.className = className;
  212. }
  213. toPointer() {
  214. return { "__type": "Pointer", "className": this.className, "objectId": this.id };
  215. }
  216. set(json: Record<string, any>) {
  217. Object.keys(json).forEach(key => {
  218. if (["objectId", "id", "createdAt", "updatedAt", "ACL"].includes(key)) {
  219. return;
  220. }
  221. this.data[key] = json[key];
  222. });
  223. }
  224. get(key: string) {
  225. return this.data[key] || null;
  226. }
  227. async save(): Promise<CloudObject> {
  228. let method = "POST";
  229. let url = `http://dev.fmode.cn:1337/parse/classes/${this.className}`;
  230. // 更新
  231. if (this.id) {
  232. url += `/${this.id}`;
  233. method = "PUT";
  234. }
  235. const body = JSON.stringify(this.data);
  236. const response = await fetch(url, {
  237. headers: {
  238. "Content-Type": "application/json;charset=UTF-8",
  239. "x-parse-application-id": "dev"
  240. },
  241. body,
  242. method,
  243. mode: "cors",
  244. credentials: "omit"
  245. });
  246. const result = await response.json();
  247. if (result?.error) {
  248. console.error(result.error);
  249. }
  250. if (result?.objectId) {
  251. this.id = result.objectId;
  252. }
  253. return this;
  254. }
  255. async destroy(): Promise<boolean> {
  256. if (!this.id) return false;
  257. const response = await fetch(`http://dev.fmode.cn:1337/parse/classes/${this.className}/${this.id}`, {
  258. headers: {
  259. "x-parse-application-id": "dev"
  260. },
  261. method: "DELETE",
  262. mode: "cors",
  263. credentials: "omit"
  264. });
  265. const result = await response?.json();
  266. if (result) {
  267. this.id = null;
  268. }
  269. return true;
  270. }
  271. }
  272. // CloudQuery.ts
  273. export class CloudQuery {
  274. className: string;
  275. whereOptions: Record<string, any> = {};
  276. constructor(className: string) {
  277. this.className = className;
  278. }
  279. greaterThan(key: string, value: any) {
  280. this.whereOptions[key] = { "$gt": value };
  281. }
  282. greaterThanAndEqualTo(key: string, value: any) {
  283. this.whereOptions[key] = { "$gte": value };
  284. }
  285. lessThan(key: string, value: any) {
  286. this.whereOptions[key] = { "$lt": value };
  287. }
  288. lessThanAndEqualTo(key: string, value: any) {
  289. this.whereOptions[key] = { "$lte": value };
  290. }
  291. equalTo(key: string, value: any) {
  292. this.whereOptions[key] = value;
  293. }
  294. containedIn(key: string, valueArray: any[]) {
  295. this.whereOptions[key] = { "$in": valueArray };
  296. }
  297. async get(id: string): Promise<Record<string, any>> {
  298. const url = `http://dev.fmode.cn:1337/parse/classes/${this.className}/${id}?`;
  299. const response = await fetch(url, {
  300. headers: {
  301. "if-none-match": "W/\"1f0-ghxH2EwTk6Blz0g89ivf2adBDKY\"",
  302. "x-parse-application-id": "dev"
  303. },
  304. method: "GET",
  305. mode: "cors",
  306. credentials: "omit"
  307. });
  308. const json = await response.json();
  309. return json || {};
  310. }
  311. async find(): Promise<CloudObject[]> {
  312. let url = `http://dev.fmode.cn:1337/parse/classes/${this.className}?`;
  313. if (Object.keys(this.whereOptions).length) {
  314. const whereStr = JSON.stringify(this.whereOptions);
  315. url += `where=${encodeURIComponent(whereStr)}`;
  316. }
  317. const response = await fetch(url, {
  318. headers: {
  319. "if-none-match": "W/\"1f0-ghxH2EwTk6Blz0g89ivf2BDKY\"",
  320. "x-parse-application-id": "dev"
  321. },
  322. method: "GET",
  323. mode: "cors",
  324. credentials: "omit"
  325. });
  326. const json = await response.json();
  327. return json?.results.map((item: any) => {
  328. const cloudObject = new CloudObject(this.className);
  329. cloudObject.set(item);
  330. cloudObject.id = item.objectId;
  331. return cloudObject;
  332. }) || [];
  333. }
  334. async first(): Promise<CloudObject | null> {
  335. let url = `http://dev.fmode.cn:1337/parse/classes/${this.className}?`;
  336. if (Object.keys(this.whereOptions).length) {
  337. const whereStr = JSON.stringify(this.whereOptions);
  338. url += `where=${encodeURIComponent(whereStr)}`;
  339. }
  340. const response = await fetch(url, {
  341. headers: {
  342. "if-none-match": "W/\"1f0-ghxH2EwTk6Blz0g89ivf2adBDKY\"",
  343. "x-parse-application-id": "dev"
  344. },
  345. method: "GET",
  346. mode: "cors",
  347. credentials: "omit"
  348. });
  349. const json = await response.json();
  350. const exists = json?.results?.[0] || null;
  351. if (exists) {
  352. const existsObject = new CloudObject(this.className);
  353. existsObject.set(exists);
  354. existsObject.id = exists.objectId;
  355. existsObject.createdAt = exists.createdAt;
  356. existsObject.updatedAt = exists.updatedAt;
  357. return existsObject;
  358. }
  359. return null;
  360. }
  361. }