We Api
we.sdk is an open source package for JavaScript that acts as an Api or an SDK for We Telecom Egypt (We TE) website
can only run in Egypt and with Node.js
i am aiming to make this package as robust as possible and to cover all the features that the website provides
please feel free to contribute to this project and make it better
DECLAIMER
⚠️⚠️⚠️⚠️⚠️⚠️⚠️
THIS PACKAGE IS NOT ASSOCIATED WITH WE TELECOM EGYPT IN ANY WAY, SHAPE OR FORM WHATSO EVER
IT JUST BASED ON THE PUBLIC API THAT "WE TE" PROVIDES ON THERE WEBSITE
هذا المشروع ليس له اي علاقة نهائيا بشركة we
المشروع ببساطة مبني علي الapi المتاح من خلال موقع we فقط وليس لwe اي علاقة بهاذا المشروع
⚠️⚠️⚠️⚠️⚠️⚠️⚠️
Installation
npm install we.sdk
yarn add we.sdk
Usage
there are two ways to use this package
- only using the plain api
- using the cached api (recommended and optimized)
Normal API usage
const { WeApi, WeApiError } = require('we.sdk')
const main = async (number, password) => {
try {
const session = await WeApi.userAuthenticate(number, password)
const balance = await WeApi.getBalance(session)
const quota = await WeApi.getFreeUnits(session)
console.log(JSON.stringify(session, null, 2))
console.log(JSON.stringify(balance, null, 2))
console.log(JSON.stringify(quota, null, 2))
} catch (error) {
if (error instanceof WeApiError) {
return console.log('We Api Error:', error.message)
}
}
}
main(process.argv[2], process.argv[3])
Cached API usage
const { WeCachedApi, WeApiError, CacheProviderInMemory, CacheProviderInFile } = require('we.sdk')
const main = async (number, password) => {
try {
const weCachedApi = new WeCachedApi({
customer: {
number: number,
password: password,
},
CacheProvider: CacheProviderInFile,
cachePath: './cache.json',
ttlInMs: {
session: 3.5 * 60 * 60 * 1000,
balance: 10 * 60 * 1000,
freeUnit: 10 * 60 * 1000,
},
hooks: {
beforeRequest: (key) => {
console.log('beforeRequest', key)
},
afterRequest: (key) => {
console.log('afterRequest', key)
},
},
})
const session = await weCachedApi.userAuthenticate()
const balance = await weCachedApi.getBalance()
const quota = await weCachedApi.getFreeUnits()
console.log(JSON.stringify(session, null, 2))
console.log(JSON.stringify(balance, null, 2))
console.log(JSON.stringify(quota, null, 2))
} catch (error) {
if (error instanceof WeApiError) {
return console.log('We Api Error:', error.message)
}
}
}
Todo List
Api
WeApi (class)
const { WeApi } = require('we.sdk')
WeApi.userAuthenticate
WeApi.userAuthenticate(number: string, password: string): Promise<Session>
const session = await WeApi.userAuthenticate(number, password)
parameter | type | required | example | note |
---|
number | string | yes | 0223123456 | It can be in any valid Egyptian landline number ex: +20223123456, 0020223123456,+20-2-2312-3456, 68-312-3456, 02-2312-3456 any Egyptian number that can be parsed with libphonenumber-js is valid you can check the logic behind it in phoneParser.js |
password | string | yes | myPassword | Your WE TE account password (this is not being stored, sent, or modified in any sort) |
Return: Promise<Session>
Errors: Possible Errors
WeApi.getBalance
WeApi.getBalance(session: Session): Promise<UserBalanceInfo>
const balance = await WeApi.getBalance(session)
parameter | type | required | example | note |
---|
session | Session | yes | | only parts needed from the Session Object not all for more details check the input from more info check the method input here |
Return: Promise<UserBalanceInfo>
Errors: Possible Errors
WeApi.getFreeUnits
WeApi.getFreeUnits(session: Session): Promise<FreeUnit[]>
const quota = await WeApi.getFreeUnits(session)
parameter | type | required | example | note |
---|
session | Session | yes | | only parts needed from the Session Object not all for more details check the input from more info check the method input here |
Return: Promise<FreeUnit[]>
Errors: Possible Errors
WeCachedApi (class)
const { WeCachedApi } = require('we.sdk')
WeCachedApi.constructor
new WeCachedApi(options: object)
const WeCachedApi = new WeCachedApi({
customer: {
number: number,
password: password,
},
CacheProvider: CacheProviderInFile,
cachePath: './cache.json',
ttlInMs: {
session: 3.5 * 60 * 60 * 1000,
balance: 10 * 60 * 1000,
freeUnit: 10 * 60 * 1000,
},
hooks: {
beforeRequest: (key) => {
console.log('beforeRequest', key)
},
afterRequest: (key) => {
console.log('afterRequest', key)
},
},
})
parameter | type | required | example | note |
---|
options | object | yes | | |
customer | object | yes | | |
customer.number | string | yes | 0223123456 | It can be in any valid Egyptian landline number ex: +20223123456, 0020223123456,+20-2-2312-3456, 68-312-3456, 02-2312-3456 any Egyptian number that can be parsed with libphonenumber-js is valid you can check the logic behind it in phoneParser.js |
customer.password | string | yes | myPassword | Your WE TE account password (this is not being stored, sent, or modified in any sort) |
CacheProvider | class | no, default: CacheProviderInMemory | CacheProviderInFile or CacheProviderInMemory | the class that will be used to cache the data you can create your own cache provider by extending the CacheProviderInterface and implementing the methods |
cachePath | string | no, default: './cache.json' | './cache.json' | only needed if you are using CacheProviderInFile |
ttlInMs | object | no, default: { session: 3.5 * 60 * 60 * 1000, balance: 10 * 60 * 1000, freeUnit: 10 * 60 * 1000 } | { session: 3.5 * 60 * 60 * 1000, balance: 10 * 60 * 1000, freeUnit: 10 * 60 * 1000 } | the time to live for each cached item in milliseconds |
hooks | object | no | | hooks that will be called before and after the request if not cached |
WeCachedApi.*
the same as WeApi but with caching
CacheProviderInMemory (class)
used as a cache provider for the WeCachedApi class
const { CacheProviderInMemory } = require('we.sdk')
CacheProviderInFile (class)
used as a cache provider for the WeCachedApi class
requires the cachePath
parameter in the WeCachedApi.constructor
const { CacheProviderInFile } = require('we.sdk')
CacheProviderInterface (interface)
used to create your own cache provider for the WeCachedApi class
const { CacheProviderInterface } = require('we.sdk')
WeApiError (class) inherits from Error
const { WeApiError } = require('we.sdk')
- has the same properties as the Error class
- has an additional property
code
which is the error code - has
name
property set to WeApiError
Error Codes
Accessed by WeApiError instances error.code
const { WeApiError } = require('we.sdk')
try {
} catch (error) {
if (error instanceof WeApiError) {
console.log('We Api Error:', error.message)
console.log('We Api Error Code:', error.code)
}
if (error.name === 'WeApiError') {
console.log('We Api Error:', error.message)
console.log('We Api Error Code:', error.code)
}
}
- WE_INVALID_CREDENTIALS
- WE_INVALID_SESSION
- WE_INVALID_PHONE_NUMBER
- WE_INVALID_RESPONSE
- WE_RATE_LIMITED
- WE_SERVER_ERROR
- WE_INVALID_CACHE_PROVIDER
types
IndividualInfo
/**
* @typedef {Object} IndividualInfo
* @property {string} firstName - The individual's first name.
* @property {string} lastName - The individual's last name.
* @property {string} gender - The individual's gender.
* @property {string} nationality - The individual's nationality.
* @property {number} birthday - The individual's birthday timestamp.
*/
Customer
/**
* @typedef {Object} Customer
* @property {string} custId - The customer ID.
* @property {string} custName - The customer name.
* @property {string} custGender - The customer gender.
* @property {string} custCode - The customer code.
* @property {string} custType - The customer type.
* @property {string} custClass - The customer class.
* @property {IndividualInfo} individualInfo - The individual's information.
* @property {Array} contactPersonList - The list of contact persons.
* @property {Array} addressInfoList - The list of addresses.
* @property {Array} serviceManagerInfo - The service manager information.
* @property {Array} bankCards - The list of bank cards.
*/
Account
/**
* @typedef {Object} Account
* @property {string} acctId - The account ID.
* @property {string} acctCode - The account code.
* @property {Array} billCycle - The billing cycle information.
*/
Subscriber
/**
* @typedef {Object} Subscriber
* @property {string} subscriberId - The subscriber ID.
* @property {string} custId - The customer ID.
* @property {string} accountId - The account ID.
* @property {string} primaryOfferingId - The primary offering ID.
* @property {string} servNumber - The service number.
* @property {string} paymentType - The payment type.
* @property {string} state - The state.
* @property {string} statusDetail - The status detail.
* @property {string} status - The status.
* @property {string} networkType - The network type.
* @property {string} firstContactChannel - The first contact channel.
* @property {string} firstContactNumber - The first contact number.
* @property {string} writtenLang - The written language.
* @property {string} voiceRoaming - The voice roaming status.
* @property {string} smsRoaming - The SMS roaming status.
* @property {string} dataRoaming - The data roaming status.
* @property {string} isDelegatorSubs - The delegator subscription status.
*/
UserResponse (session)
/**
* @typedef {Object} UserResponse
* @property {string} utoken - The user token.
* @property {string} loginId - The login ID.
* @property {string} loginType - The login type.
* @property {string} token - The token.
* @property {string} uToken - The user token (duplicate).
* @property {string} needChangePwd - The need to change password status.
* @property {Customer} customer - The customer information.
* @property {Account} account - The account information.
* @property {Subscriber} subscriber - The subscriber information.
* @property {Array} ownerList - The list of owners.
*/
BalanceDetail
/**
* @typedef {Object} BalanceDetail
* @property {string} balanceInstanceId - The balance instance ID.
* @property {string} amount - The amount.
* @property {string} initialAmount - The initial amount.
* @property {number} effectiveTime - The effective time in milliseconds.
* @property {number} expireTime - The expire time in milliseconds.
*/
BalanceInfo
/**
* @typedef {Object} BalanceInfo
* @property {string} balanceType - The balance type.
* @property {string} balanceTypeName - The balance type name.
* @property {string} totalAmount - The total amount.
* @property {string} depositFlag - The deposit flag.
* @property {string} refundFlag - The refund flag.
* @property {string} currencyId - The currency ID.
* @property {BalanceDetail[]} balanceDetail - The balance detail list.
*/
CreditInfo
/**
* @typedef {Object} CreditInfo
* @property {string} totalCreditAmount - The total credit amount.
* @property {string} totalUsageAmount - The total usage amount.
* @property {string} totalRemainAmount - The total remain amount.
* @property {string} currencyId - The currency ID.
*/
UserBalanceInfo
/**
* @typedef {Object} UserBalanceInfo
* @property {string} acctId - The account ID.
* @property {BalanceInfo[]} balanceInfo - The balance information.
* @property {CreditInfo[]} creditInfo - The credit information.
* @property {Array} outstandingInfo - The outstanding information.
*/
FreeUnitBeanDetail
/**
* @typedef {Object} FreeUnitBeanDetail
* @property {number} initialAmount - The initial amount.
* @property {number} currentAmount - The current amount.
* @property {string} measureUnit - The measurement unit.
* @property {number} effectiveTime - The effective time in milliseconds.
* @property {number} expireTime - The expiration time in milliseconds.
* @property {number} expireTimeCz - The expiration time in another timezone in milliseconds.
* @property {string} originType - The origin type.
* @property {string} offeringName - The offering name.
* @property {boolean} isGroup - Is group flag.
* @property {string} serviceNumber - The service number.
* @property {string} itemCode - The item code.
* @property {number} remainingDaysForRenewal - The remaining days for renewal.
*/
FreeUnit
/**
* @typedef {Object} FreeUnit
* @property {string} tabId - The tab ID.
* @property {string} freeUnitType - The free unit type.
* @property {string} freeUnitTypeName - The free unit type name.
* @property {string} tabName - The tab name.
* @property {string} measureUnit - The measurement unit.
* @property {string} offerName - The offer name.
* @property {number} total - The total amount.
* @property {number} used - The used amount.
* @property {number} remain - The remaining amount.
* @property {number} actualRemain - The actual remaining amount.
* @property {number} effectiveTime - The effective time in milliseconds.
* @property {number} expireTime - The expiration time in milliseconds.
* @property {string} groupOrder - The group order.
* @property {string} iconImage - The icon image.
* @property {string} freeUnitTypeId - The free unit type ID.
* @property {string} originUnit - The origin unit.
* @property {FreeUnitBeanDetail[]} freeUnitBeanDetailList - The list of free unit bean details.
*/
Contributing
this project is open for contributions, feel free to open an issue or a pull request
you can complete the todo list or add new features, optimize the code, or fix bugs
make sure you write the code as clean as possible and add comments
License
MIT