I am working on a Ionic App which is based on Firabase Realtime DB. When trying to start the app im getting this error message.
[ng] ERROR in src/app/data-service.service.ts(14,36): error TS2339: Property 'authToken' does not exist on type '{ apiKey: string; authDomain: string; databaseURL: string; projectId: string; storageBucket: string; messagingSenderId: string; }'.
It seems like there is something wrong with the Firebase authentification. But I could not figure out how to fix it.
data-service.service.ts
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { environment } from '../environments/environment';
import * as firebase from 'firebase/app';
@Injectable({
providedIn: 'root'
})
export class DataServiceService {
userId: any;
userName: any;
databaseUrl = environment.firebase.databaseURL;
authToken = environment.firebase.authToken;
constructor(private http: HttpClient) {
console.log('Hello DataServiceService Provider');
console.log(this.databaseUrl);
console.log(this.authToken);
this.userId = localStorage.getItem('userId');
if (!localStorage.getItem('currentUserShift')) {
localStorage.setItem('currentUserShift', JSON.stringify({ periods: {} }));
}
if (!localStorage.getItem('pendingShifts')) {
localStorage.setItem('pendingShifts', JSON.stringify([]));
}
}
setUserId(userId) {
console.log('setUserId ');
this.userId = userId;
localStorage.setItem('userId', userId);
}
getUserId() {
return this.userId;
}
getUserName() {
return this.userName;
}
setUserName(userName) {
this.userName = userName;
}
updateLocalCurrentUserShift(currentUserShift) {
localStorage.setItem('currentUserShift', JSON.stringify(currentUserShift));
}
getLocalCurrentUserShift() {
return JSON.parse(localStorage.getItem('currentUserShift'));
}
async insertUserCurrentShiftToPendingShifts(currentShift) {
const pendingShifts = JSON.parse(localStorage.getItem('pendingShifts'));
pendingShifts.push(currentShift)
localStorage.setItem('pendingShifts', JSON.stringify(pendingShifts));
this.updateLocalCurrentUserShift({ periods: {} });
await this.insertPendingShiftsToFirebase();
// localStorage.setItem('currentUserShift', JSON.stringify({}));
}
async insertPendingShiftsToFirebase() {
const pendingShifts = JSON.parse(localStorage.getItem('pendingShifts'));
console.log('pendingShifts:', pendingShifts);
const failedToBeSentPendingShifts = [];
for (let i = 0 ; i < pendingShifts.length ; i++) {
try {
const key = await this.insertUserCurrentShifttoHistory(pendingShifts[i]);
console.log('key' , key);
} catch (err) {
console.log('Error while inserting into firebase', JSON.stringify(err));
failedToBeSentPendingShifts.push(pendingShifts[i]);
}
}
localStorage.setItem('pendingShifts', JSON.stringify(failedToBeSentPendingShifts));
return true;
}
createFirebaseId() {
return firebase.database().ref('/dummy').push().key;
}
getProducts() {
return this.http.get(`${this.databaseUrl}/products/.json${this.authToken?('?auth='+this.authToken):''}`);
}
getOrganizations() {
return this.http.get(`${this.databaseUrl}/organizations/.json${this.authToken?('?auth='+this.authToken):''}`);
}
insertUser(data) {
return this.http.put(`${this.databaseUrl}/users/${data.uId}.json${this.authToken?('?auth='+this.authToken):''}`, data);
}
// an API to insert product views with firebase generated key
insertProductViewAnalaytics(data) {
return this.http.post(`${this.databaseUrl}/users/${this.userId}/product_views.json${this.authToken?('?auth='+this.authToken):''}`, data);
}
getProductViewsForUser() {
return this.http.get(`${this.databaseUrl}/users/${this.userId}/product_views/.json${this.authToken?('?auth='+this.authToken):''}`);
}
getUserOrganization() {
return this.http.get(`${this.databaseUrl}/users/${this.userId}/organization/.json${this.authToken?('?auth='+this.authToken):''}`);
}
fetchUserName() {
return this.http.get(`${this.databaseUrl}/users/${this.userId}/userName/.json${this.authToken?('?auth='+this.authToken):''}`);
}
// updateUserName(data) {
// return this.http.patch(`${this.databaseUrl}/users/${this.userId}/.json${this.authToken?('?auth='+this.authToken):''}`, data);
// }
// an API to insert product views with custom timestamp based key
insertProductViewAnalayticsTimestamp(data) {
return this.http.put(`${this.databaseUrl}/product_views_timestamp/${data.scannedAt}.json${this.authToken?('?auth='+this.authToken):''}`, data);
}
// insertUserCurrentShift(data) {
// return this.http.patch(`${this.databaseUrl}/users/${this.userId}/currentShift.json${this.authToken?('?auth='+this.authToken):''}`, data);
// }
// updateUserCurrentShift(data) {
// return this.http.patch(`${this.databaseUrl}/users/${this.userId}/currentShift.json${this.authToken?('?auth='+this.authToken):''}`, data);
// }
// getUserCurrentShiftStartTime() {
// return this.http.get(`${this.databaseUrl}/users/${this.userId}/currentShift/currentPeriodStartedAt.json${this.authToken?('?auth='+this.authToken):''}`);
// }
// getUserCurrentShiftStatus() {
// return this.http.get(`${this.databaseUrl}/users/${this.userId}/currentShift/status.json${this.authToken?('?auth='+this.authToken):''}`);
// }
// insertUserPeriods(data) {
// return this.http.post(`${this.databaseUrl}/users/${this.userId}/currentShift/periods.json${this.authToken?('?auth='+this.authToken):''}`, data);
// }
// getUserCurrentShift() {
// return this.http.get(`${this.databaseUrl}/users/${this.userId}/currentShift.json${this.authToken?('?auth='+this.authToken):''}`);
// }
getPendingShifts() {
return JSON.parse(localStorage.getItem('pendingShifts'));
}
async insertUserCurrentShifttoHistory(data) {
data.userId = this.userId;
// return firebase.database().ref('/shiftHistory').push(data).key;
if (data.startedAt && data.endedAt) {
return this.http.post(`${this.databaseUrl}/shiftHistory/.json${this.authToken ? ('?auth=' + this.authToken) : ''}`, data).toPromise();
} else {
console.log('invalid data found, not inserting into firebase', JSON.stringify(data));
return null;
}
}
// removeUserCurrentShift(){
// return this.http.delete(`${this.databaseUrl}/users/${this.userId}/currentShift.json${this.authToken?('?auth='+this.authToken):''}`);
// }
getUserWorkTimeHistory() {
return this.http.get(`${this.databaseUrl}/shiftHistory.json${this.authToken?('?auth='+this.authToken):''}&orderBy="userId"&equalTo="${this.userId}"`);
}
insertUserCurrentLocation(data) {
return this.http.post(`${this.databaseUrl}/users/${this.userId}/locationHistory.json${this.authToken?('?auth='+this.authToken):''}`, data);
}
}
environment.prod.ts
export const environment = {
production: true
};
environment.ts
export const environment = {
production: false,
firebase: {
apiKey: "...",
authDomain: "...",
databaseURL: "...",
projectId: "...",
storageBucket: "...",
messagingSenderId: "..."
}
};
Thanks in advance!